/* Professional Index Page Responsive Fixes - 2025 Standards */

/* ===== GLOBAL RESPONSIVE FOUNDATION ===== */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== PRELOADER RESPONSIVE ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ff6b35;
}

@media (max-width: 768px) {
    .preloader-logo {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
}

/* ===== HEADER & NAVIGATION RESPONSIVE ===== */
.header-top {
    background: #333;
    color: white;
    padding: 8px 0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.header-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.header-info span {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-social {
    display: flex;
    gap: 10px;
}

.header-social a {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.header-social a:hover {
    background: #ff6b35;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.navbar-brand .logo i {
    color: #ff6b35;
}

.navbar-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-btn,
.cart-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #333;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.search-btn:hover,
.cart-btn:hover {
    background: #f8f9fa;
    color: #ff6b35;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff6b35;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 3px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 8px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background: #f8f9fa;
    color: #ff6b35;
}

/* ===== HERO SECTION RESPONSIVE ===== */
.hero-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-banner-text {
    max-width: 500px;
}

.hero-banner-subtitle {
    color: #ff6b35;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
}

.hero-banner-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}

.text-primary {
    color: #ff6b35;
}

.hero-banner-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.hero-banner-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-outline {
    background: transparent;
    color: #333;
    border-color: #333;
}

.btn-outline:hover {
    background: #333;
    color: white;
}

.btn-lg {
    padding: 18px 35px;
    font-size: 1.1rem;
}

.hero-banner-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 0.95rem;
}

.feature-item i {
    color: #28a745;
    font-size: 1.2rem;
}

/* Hero Image & Slider */
.hero-banner-right {
    position: relative;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.slide {
    display: none;
    width: 100%;
    height: 400px;
}

.slide.active {
    display: block;
}

.main-food-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff6b35;
    transform: scale(1.2);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 60%;
    right: -10%;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 10%;
    left: -5%;
    animation-delay: 2s;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.card-content i {
    color: #ff6b35;
    font-size: 1.1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ===== SEARCH OVERLAY RESPONSIVE ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.search-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #ff6b35;
}

.search-submit {
    padding: 15px 25px;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: #e55a2b;
}

/* ===== MENU SECTION RESPONSIVE ===== */
.menu {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: #ff6b35;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.menu-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.menu-categories {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.category-btn.active,
.category-btn:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    color: white;
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    color: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.menu-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-item:hover .menu-item-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #333;
    transition: all 0.3s ease;
}

.quick-view-btn:hover {
    background: #ff6b35;
    color: white;
    transform: scale(1.1);
}

.menu-item-content {
    padding: 25px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.menu-item-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.menu-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6b35;
}

.menu-item-description {
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
    margin-left: 5px;
}

.add-to-cart-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #e55a2b;
    transform: translateY(-1px);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Desktop */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-banner-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Desktop */
@media (max-width: 1024px) {
    .header-top {
        display: none;
    }
    
    .hero-banner {
        padding: 80px 0;
    }
    
    .hero-banner-content {
        gap: 40px;
    }
    
    .hero-banner-title {
        font-size: 2.5rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .floating-card.card-1,
    .floating-card.card-2,
    .floating-card.card-3 {
        display: none;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .navbar-nav {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 0;
    }
    
    .navbar-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar-actions .btn {
        display: none;
    }
    
    /* Hero Section */
    .hero-banner {
        padding: 60px 0;
        min-height: auto;
    }
    
    .hero-banner-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-banner-text {
        order: 2;
        max-width: none;
    }
    
    .hero-banner-right {
        order: 1;
    }
    
    .hero-banner-title {
        font-size: 2.2rem;
    }
    
    .hero-banner-actions {
        justify-content: center;
    }
    
    .hero-banner-features {
        justify-content: center;
        gap: 20px;
    }
    
    .slider-container {
        max-width: 400px;
    }
    
    .slide {
        height: 300px;
    }
    
    /* Menu Section */
    .menu {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .menu-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .menu-categories {
        justify-content: center;
        gap: 10px;
    }
    
    .category-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .view-toggle {
        justify-content: center;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Search Overlay */
    .search-overlay-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .search-form {
        flex-direction: column;
        gap: 15px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Navigation */
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand .logo {
        font-size: 1.3rem;
    }
    
    .navbar-actions {
        gap: 10px;
    }
    
    .search-btn,
    .cart-btn {
        font-size: 1.1rem;
        padding: 6px;
    }
    
    /* Hero Section */
    .hero-banner {
        padding: 40px 0;
    }
    
    .hero-banner-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-banner-subtitle {
        font-size: 1rem;
    }
    
    .hero-banner-description {
        font-size: 1rem;
    }
    
    .hero-banner-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 15px 25px;
    }
    
    .hero-banner-features {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .slider-container {
        max-width: 300px;
    }
    
    .slide {
        height: 250px;
    }
    
    /* Menu Section */
    .menu {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .menu-categories {
        flex-direction: column;
        gap: 8px;
    }
    
    .category-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    .menu-item-content {
        padding: 20px;
    }
    
    .menu-item-title {
        font-size: 1.2rem;
    }
    
    .menu-item-price {
        font-size: 1.1rem;
    }
    
    .menu-item-footer {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .add-to-cart-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-banner-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .slider-container {
        max-width: 280px;
    }
    
    .slide {
        height: 220px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-0 {
    margin-top: 0;
}

.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

/* ===== ACCESSIBILITY & PERFORMANCE ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border-color: #000;
        color: #fff;
    }
    
    .btn-outline {
        border-color: #000;
        color: #000;
    }
}

/* Print styles */
@media print {
    .header-top,
    .mobile-menu-toggle,
    .search-overlay,
    .floating-card {
        display: none !important;
    }
    
    .hero-banner {
        padding: 20px 0;
    }
    
    .hero-banner-content {
        grid-template-columns: 1fr;
    }
}

/* ===== FACEBOOK VIDEO SECTION RESPONSIVE ===== */
.facebook-video-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.facebook-video-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.facebook-video-section .section-subtitle {
    color: #ff6b35;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.facebook-video-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.facebook-video-section .section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Modern Responsive Video Container */
.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* Responsive Video Wrapper - Modern Aspect Ratio Technique */
.responsive-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px 20px 0 0;
    background: #000;
}

/* Video Overlay */
.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 30px 30px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.video-container:hover .video-overlay {
    opacity: 1;
    transform: translateY(0);
}

.video-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.video-info p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.watch-full-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1877f2;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.watch-full-btn:hover {
    background: #166fe5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.watch-full-btn i {
    font-size: 1.1rem;
}

/* Loading State */
.responsive-video::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

.responsive-video iframe:not([src=""]) + ::before {
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== RESPONSIVE BREAKPOINTS FOR VIDEO ===== */

/* Large Desktop */
@media (max-width: 1200px) {
    .video-container {
        max-width: 800px;
    }
    
    .facebook-video-section .section-title {
        font-size: 2.2rem;
    }
}

/* Desktop */
@media (max-width: 1024px) {
    .facebook-video-section {
        padding: 60px 0;
    }
    
    .video-container {
        max-width: 700px;
        margin: 0 20px;
    }
    
    .video-overlay {
        padding: 30px 25px 25px;
    }
    
    .video-info h3 {
        font-size: 1.3rem;
    }
    
    .video-info p {
        font-size: 0.95rem;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .facebook-video-section {
        padding: 50px 0;
    }
    
    .facebook-video-section .section-header {
        margin-bottom: 40px;
    }
    
    .facebook-video-section .section-title {
        font-size: 2rem;
    }
    
    .facebook-video-section .section-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .video-container {
        margin: 0 15px;
        border-radius: 15px;
    }
    
    .responsive-video {
        border-radius: 15px 15px 0 0;
    }
    
    .responsive-video iframe {
        border-radius: 15px 15px 0 0;
    }
    
    .video-overlay {
        padding: 25px 20px 20px;
        position: static;
        opacity: 1;
        transform: none;
        background: linear-gradient(135deg, #333, #555);
        border-radius: 0 0 15px 15px;
    }
    
    .video-info h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .video-info p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .watch-full-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .facebook-video-section {
        padding: 40px 0;
    }
    
    .facebook-video-section .section-header {
        margin-bottom: 30px;
    }
    
    .facebook-video-section .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .facebook-video-section .section-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .video-container {
        margin: 0 10px;
        border-radius: 12px;
    }
    
    .responsive-video {
        border-radius: 12px 12px 0 0;
        padding-bottom: 60%; /* Slightly taller for mobile */
    }
    
    .responsive-video iframe {
        border-radius: 12px 12px 0 0;
    }
    
    .video-overlay {
        padding: 20px 15px 15px;
        border-radius: 0 0 12px 12px;
    }
    
    .video-info h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .video-info p {
        font-size: 0.85rem;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .watch-full-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .facebook-video-section {
        padding: 30px 0;
    }
    
    .facebook-video-section .section-title {
        font-size: 1.6rem;
    }
    
    .video-container {
        margin: 0 5px;
    }
    
    .responsive-video {
        padding-bottom: 65%; /* Even taller for very small screens */
    }
    
    .video-overlay {
        padding: 15px 12px 12px;
    }
    
    .video-info h3 {
        font-size: 1rem;
    }
    
    .video-info p {
        font-size: 0.8rem;
    }
    
    .watch-full-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

/* ===== ACCESSIBILITY & PERFORMANCE FOR VIDEO ===== */

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .video-container,
    .video-overlay,
    .watch-full-btn {
        transition: none;
    }
    
    .responsive-video::before {
        animation: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .video-overlay {
        background: rgba(0, 0, 0, 0.9);
    }
    
    .watch-full-btn {
        background: #000;
        border: 2px solid #fff;
    }
}

/* Focus states for accessibility */
.watch-full-btn:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .facebook-video-section {
        display: none;
    }
}