
        /* ================ */
        /* Color Variables */
        /* ================ */
        :root {
            --primary: #099972;       /* Deep sea green */
            --secondary: #014840;     /* Dark teal */
            --accent: #0bd4a2;       /* Vibrant teal */
            --highlight: #ff7e5f;    /* Coral accent */
            --light: #f5f9f8;        /* Light sea foam */
            --dark: #23312e;         /* Darkened teal */
            --text: #23312e;         /* Main text color */
            --bg: #ffffff;           /* Background */
            --card-bg: #ffffff;      /* Card backgrounds */
            --header-bg: rgba(1, 72, 64, 0.9); /* Header background */
        }

        /* Dark Mode Colors */
        .dark-mode {
            --primary: #0bd4a2;
            --secondary: #099972;
            --accent: #ff7e5f;
            --highlight: #ff9a76;
            --light: #1a2e28;
            --dark: #e0f2ef;
            --text: #e0f2ef;
            --bg: #0d1f1a;
            --card-bg: #1a2e28;
            --header-bg: rgba(9, 153, 114, 0.9);
        }

        /* ================ */
        /* Base Styles */
        /* ================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            line-height: 1.6;
            transition: background-color 0.5s ease, color 0.5s ease;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 30px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--primary);
            font-size: 2.5rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent);
            margin: 15px auto;
        }

        .btn {
            display: inline-block;
            background: var(--highlight);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            text-decoration: none;
            font-size: 1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        /* ================ */
        /* Header & Navigation */
        /* ================ */
        header {
            background-color: var(--header-bg);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-scrolled {
            background-color: var(--header-bg);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        /* Add to your existing header styles */
        #header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transform: translateY(0);
            will-change: transform; /* Improves animation performance */
        }

        /* Optional: Different header style when scrolled */
        .header-scrolled {
            background-color: rgba(1, 72, 64, 0.95) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        /* Mobile menu styles */
        .nav-links {
            transition: transform 0.3s ease;
        }

        @media (max-width: 768px) {
            .nav-links:not(.active) {
                transform: translateX(-100%);
            }
        }

        /* Logo Styles */
        .logo {
            position: relative;
            display: inline-block;
            overflow: hidden;
        }

        .logo-image {
            height: 35px;
            width: auto;
            transition: transform 0.5s ease;
            position: relative;
            z-index: 2;
        }

        .logo-water-effect {
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s ease;
            z-index: 1;
        }

        .logo:hover .logo-image {
            transform: translateY(-3px);
        }

        .logo:hover .logo-water-effect {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* Navigation Links */
        .nav-links > li > a {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            padding: 15px 5px;
            font-weight: 600;   
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        body.menu-open {
            overflow: hidden;
        }

        /* Prevent fixed header from covering menu */
        @media (max-width: 768px) {
            #header {
                position: absolute;
            }
        }


        /* Current Page Indicator */
        .nav-links li {
            position: relative; /* Required for absolute positioning of pseudo-elements */
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: -5px; /* Adjust based on your design */
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent); /* Uses your existing teal color */
            transition: width 0.3s ease, background 0.3s ease;
        }

        /* Active state - current page */
        .nav-links li a.active::after {
            width: 100%;
            background: var(--highlight); /* Uses your coral accent color */
        }

        /* Hover state - other pages */
        .nav-links li a:not(.active):hover::after {
            width: 100%;
            background: rgba(11, 212, 162, 0.5); /* Semi-transparent teal */
        }

        /* Mobile adaptation */
        @media (max-width: 768px) {
            .nav-links li a::after {
                bottom: 0; /* Better touch target */
            }
            
            .nav-links li a.active {
                color: var(--highlight); /* Color change for mobile clarity */
            }
        }

        /* Mobile Menu Toggle */
        /* Mobile Menu Fixes */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
                position: relative;
                z-index: 1001;
            }
            
            .nav-links {
                position: absolute;
                top: 100%; /* Position directly below the toggle button */
                right: 0; /* Align with right edge of toggle */
                width: auto; /* Let content determine width */
                min-width: 200px; /* Minimum width */
                max-height: 0;
                overflow: hidden;
                background: var(--header-bg);
                flex-direction: column;
                align-items: flex-start;
                padding: 0;
                transition: max-height 0.3s ease, opacity 0.3s ease;
                opacity: 0;
                z-index: 1000;
                border-radius: 0 0 10px 10px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            }
            
            .nav-links.active {
                max-height: 500px; /* Adjust based on your content */
                opacity: 1;
                padding: 10px 0;
            }

            /* Remove all left/right positioning transitions */
            .nav-links,
            .nav-links.active {
                left: auto !important;
                right: 10px !important;
            }
            
            .nav-links li {
                width: 100%;
                text-align: left;
                padding: 10px 20px;
                margin: 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .dropdown-menu {
                position: static;
                width: 100%;
                background: rgba(0,0,0,0.1);
                box-shadow: none;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                padding: 0 0 0 15px;
            }
            
            .dropdown.active .dropdown-menu {
                max-height: 300px;
                padding: 5px 0 5px 15px;
            }
        }

        /*Mobile Menu Showing on Desktop*/
        @media (min-width: 769px) {
            .nav-links {
                display: flex !important; /* Force show on desktop */
            }
            .menu-toggle {
                display: none !important; /* Hide toggle on desktop */
            }
        }

        /* Dark Mode Toggle */
        .theme-toggle {
            background: var(--highlight);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            margin-left: 20px;
        }

        .theme-toggle i {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }

        .theme-toggle .fa-sun {
            opacity: 0;
        }

        .dark-mode .theme-toggle .fa-moon {
            opacity: 0;
        }

        .dark-mode .theme-toggle .fa-sun {
            opacity: 1;
        }

        .theme-toggle:hover {
            transform: scale(1.1);
        }

        /* Page Transition Animations */
        .page-transition {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary);
            z-index: 9999;
            transform: scaleY(0);
            transform-origin: bottom;
            pointer-events: none;
        }

        .page-transition.active {
            transform: scaleY(1);
            transform-origin: top;
            transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
        }

        /* Gallery Page Specific Animation */
        .gallery-page .hero-content {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 0.3s;
        }

        .gallery-nav {
            opacity: 0;
            animation: fadeIn 0.8s ease forwards 0.5s;
        }

        .gallery-grid {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards 0.7s;
        }

        .gallery-testimonials {
            opacity: 0;
            animation: fadeIn 0.8s ease forwards 0.9s;
        }

        /* Keyframes */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInUp {
            from { 
                opacity: 0;
                transform: translateY(20px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Dropdown Services Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 220px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 15px 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(10px);
        }

        .dropdown-menu li {
            padding: 0;
            margin: 0;
        }

        .dropdown-menu a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 20px;
            color: var(--text);
            transition: all 0.3s ease;
        }

        .dropdown-menu a:hover {
            background: rgba(11, 212, 162, 0.1);
            color: var(--primary);
            padding-left: 25px;
        }

        .dropdown-menu i {
            width: 20px;
            text-align: center;
        }

        /* Mobile Dropdown */
        @media (max-width: 768px) {
            .dropdown-menu {
                position: static;
                width: 100%;
                box-shadow: none;
                opacity: 1;
                max-height: 0;
                overflow: hidden;
                visibility: visible;
                padding: 0;
                transition: max-height 0.3s ease;
            }
            
            .dropdown.active .dropdown-menu {
                max-height: 300px;
                padding: 10px 0;
            }
            
            .dropdown-toggle::after {
                transition: transform 0.3s ease;
            }
            
            .dropdown.active .dropdown-toggle::after {
                transform: rotate(180deg);
            }
        }

        /* Services Preview on Homepage */
        .services-preview {
            padding: 80px 0;
            background: var(--light);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .service-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-card h3 {
            padding: 20px 20px 10px;
            color: var(--primary);
        }

        .service-card p {
            padding: 0 20px;
            margin-bottom: 20px;
        }

        .service-card .btn {
            margin: 0 20px 20px;
            display: inline-block;
        }


        /* Promo Carousel */
        .promo-carousel {
            padding: 60px 0;
            background: linear-gradient(to bottom, var(--light) 0%, #e6f4f1 100%);
            position: relative;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .carousel-nav {
            display: flex;
            gap: 10px;
        }

        .nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: white;
            border: 1px solid var(--primary);
            color: var(--primary);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-btn:hover {
            background: var(--primary);
            color: white;
        }

        .carousel-container {
            overflow: hidden;
            position: relative;
        }

        .carousel-track {
            display: flex;
            gap: 25px;
            transition: transform 0.5s ease;
            padding-bottom: 10px; /* Space for scrollbar */
        }

        /* Promo Cards - Updated Version */
        .promo-card {
            width: 280px; /* Fixed width */
            height: 420px; /* Fixed height */
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            flex-shrink: 0;
            display: flex;
            flex-direction: column; /* Vertical layout */
        }

        .promo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }

        /*.promo-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--highlight);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }*/

        .promo-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            object-position: center; /* Ensure proper image centering */
        }

        .promo-content {
            padding: 20px;
            flex: 1; /* Takes remaining space */
            display: flex;
            flex-direction: column;
        }

        .promo-content h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.2rem;
            min-height: 40px; /* Fixed title height */
        }

        .promo-dates {
            color: var(--accent);
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .promo-content p {
            margin-bottom: 15px;
            flex: 1; /* Takes available space */
        }

        .promo-footer {
            margin-top: auto; /* Pushes to bottom */
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        .promo-footer .btn {
            width: 100%;
            text-align: center;
            padding: 10px;
        }

        /* For larger images (960px width) */
        @media (min-width: 992px) {
            .promo-card {
                width: 300px;
            }
            
            .promo-card img {
                height: 200px;
            }
        }

        /* Footer with Button */
        .promo-footer {
            margin-top: auto; /* Pushes to bottom */
            padding-top: 15px;
            border-top: 1px solid #eee;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .promo-card {
                min-width: 260px;
        }
        
        .section-header {
            padding: 0 15px;
        }
        
        .carousel-container {
            padding: 0 15px;
        }
        
        .carousel-track {
            gap: 15px;
        }
        }

        /* Carousel transitions */
        .carousel-track {
            transition: transform 0.5s ease;
        }

        /* Pause indicator */
        .carousel-container:hover::after {
            content: '❚❚';
            position: absolute;
            right: 20px;
            top: -40px;
            color: var(--primary);
            font-size: 1.2rem;
        }

        /* Disable buttons during transition */
        .carousel-track.is-moving {
            pointer-events: none;
        }

        /* ===== SERVICES LANDING PAGE ===== */
        .services-hero {
            background: linear-gradient(rgba(9, 153, 114, 0.7), rgba(1, 72, 64, 0.8)), 
                        url('../img/services/service-bg.jpg') no-repeat center center/cover;
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .services-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: linear-gradient(to top, var(--bg), transparent);
            z-index: 1;
        }

        .services-hero-content {
            max-width: 800px;
            padding: 0 20px;
            position: relative;
            z-index: 2;
            animation: fadeInUp 1s ease;
        }

        .services-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .services-hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* Service Categories Section */
        .service-categories {
            padding: 80px 0;
            background-color: var(--bg);
        }

        .service-category {
            display: flex;
            align-items: center;
            margin-bottom: 100px;
            gap: 50px;
        }

        .service-category:last-child {
            margin-bottom: 0;
        }

        .service-category:nth-child(even) {
            flex-direction: row-reverse;
        }

        .service-content {
            flex: 1;
            min-width: 300px;
        }

        .service-image {
            flex: 1;
            min-width: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 30px rgba(0,0,0,0.15);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .service-image:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 40px rgba(0,0,0,0.2);
        }

        .service-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .service-image:hover img {
            transform: scale(1.05);
        }

        .service-content h2 {
            color: var(--primary);
            font-size: 2.2rem;
            margin-bottom: 20px;
            position: relative;
        }

        .service-content h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent);
            margin: 15px 0;
        }

        .service-content p {
            color: var(--text);
            margin-bottom: 25px;
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .service-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .service-features li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            color: var(--text);
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        .service-cta {
            margin-top: 30px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .service-category,
            .service-category:nth-child(even) {
                flex-direction: column;
            }
            
            .service-image {
                width: 100%;
                margin-bottom: 30px;
            }
            
            .services-hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .services-hero {
                height: 60vh;
            }
            
            .services-hero h1 {
                font-size: 2.2rem;
            }
            
            .service-content h2 {
                font-size: 1.8rem;
            }
        }

        /* Signature Dining Section */
        .signature-dining {
            padding: 80px 0;
            text-align: center;
            background: linear-gradient(to bottom, 
                rgba(245, 249, 248, 0.9) 0%, 
                rgba(255, 255, 255, 1) 100%);
        }

        .section-title {
            color: var(--primary);
            font-size: 2.5rem;
            margin-bottom: 50px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--accent);
            margin: 15px auto 0;
        }

        .dining-showcase {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: 300px 150px;
            gap: 15px;
            max-width: 1200px;
            margin: 0 auto 30px;
        }

        .showcase-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .showcase-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .showcase-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .showcase-item:hover img {
            transform: scale(1.05);
        }

        .main-item {
            grid-column: span 2;
            grid-row: span 2;
        }

        .overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, rgba(1, 72, 64, 0.8), transparent);
            color: white;
            text-align: left;
        }

        .overlay h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
        }

        .overlay p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .view-more {
            margin-top: 30px;
        }

        .btn {
            background: var(--highlight);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .dining-showcase {
                grid-template-rows: 250px 120px;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }
        
            .dining-showcase {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: 200px 200px 150px;
            }
        
            .main-item {
                grid-column: span 2;
                grid-row: span 1;
            }
        }

        @media (max-width: 480px) {
            .dining-showcase {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(4, 200px);
                gap: 10px;
            }
        
            .main-item {
                grid-column: span 1;
            }
        
            .overlay h3 {
                font-size: 1.2rem;
            }
        }

        /* Back Arrow Button Styles */
        .back-to-services {
            position: fixed;
            left: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 99;
        }

        .back-arrow {
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .back-arrow:hover {
            background-color: var(--highlight);
            transform: translateX(-5px);
        }

        /* Responsive positioning */
        @media (max-width: 1200px) {
            .back-to-services {
                left: 15px;
            }
        }

        @media (max-width: 768px) {
            .back-to-services {
                position: absolute;
                top: 20px;
                left: 20px;
                transform: none;
            }
            
            .back-arrow {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
        }

        /* Moments Section */
            .moments-section {
                padding: 80px 0;
                background: var(--light);
                text-align: center;
            }

            .section-title {
                color: var(--primary);
                font-size: 2.5rem;
                margin-bottom: 15px;
            }

            .section-subtitle {
                color: var(--text);
                font-size: 1.1rem;
                max-width: 600px;
                margin: 0 auto 50px;
                opacity: 0.8;
            }

            .moments-grid {
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                grid-auto-rows: 200px;
                gap: 15px;
                max-width: 1200px;
                margin: 0 auto 30px;
            }

            .moment-card {
                position: relative;
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                transition: all 0.3s ease;
            }

            .moment-card:hover {
                transform: translateY(-5px);
                box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            }

            .moment-card img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.5s ease;
            }

            .moment-card:hover img {
                transform: scale(1.05);
            }

            .moment-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                padding: 20px;
                background: linear-gradient(to top, rgba(1, 72, 64, 0.9), transparent);
                color: white;
                text-align: left;
                opacity: 0;
                transition: opacity 0.3s ease;
            }

            .moment-card:hover .moment-overlay {
                opacity: 1;
            }

            .moment-content h3 {
                font-size: 1.3rem;
                margin-bottom: 5px;
            }

            .moment-content p {
                font-size: 0.9rem;
                opacity: 0.9;
                margin-bottom: 5px;
            }

            .moment-date {
                font-size: 0.8rem;
                color: var(--accent);
                font-weight: 600;
            }

            /* Featured Moment */
            .featured {
                grid-column: span 2;
                grid-row: span 2;
            }

            /* CTA Button */
            .moments-cta {
                margin-top: 30px;
            }

            .btn {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                background: var(--highlight);
                color: white;
                padding: 12px 30px;
                border-radius: 30px;
                text-decoration: none;
                font-weight: 600;
                transition: all 0.3s ease;
            }

            .btn:hover {
                background: var(--primary);
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            }

            /* Responsive Grid */
            @media (max-width: 992px) {
            .moments-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            }

            @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .moments-grid {
                grid-template-columns: 1fr 1fr;
                grid-auto-rows: 180px;
            }
            
            .featured {
                grid-column: span 2;
            }
            }

            @media (max-width: 480px) {
            .moments-grid {
                grid-template-columns: 1fr;
                grid-auto-rows: 200px;
            }
            
            .featured {
                grid-column: span 1;
                grid-row: span 1;
            }
            
            .moment-overlay {
                padding: 15px;
                opacity: 1;
            }
        }

        /* Menu Page Styles */
        .menu-page {
            background-color: var(--bg);
        }

        /* Menu Hero */
        .menu-hero {
            background: linear-gradient(rgba(34, 160, 95, 0.5), rgba(0,0,0,0.5)), 
                        url('/img/lavidafloating.jpg') no-repeat center center/cover;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .menu-hero-content {
            z-index: 2;
            animation: fadeInUp 1s ease;
        }

        .menu-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
        }

        .menu-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        /* Recommended Dishes */
        .recommended-dishes {
            padding: 80px 0;
            background: var(--light);
        }

        .recommendations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .dish-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .dish-card:hover {
            transform: translateY(-10px);
        }

        .dish-image {
            position: relative;
            height: 200px;
        }

        .dish-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .dish-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent);
            color: var(--dark);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.8rem;
        }

        .dish-info {
            padding: 20px;
        }

        .dish-info h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        .dish-desc {
            color: var(--text);
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .dish-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .price {
            font-weight: bold;
            color: var(--highlight);
            font-size: 1.1rem;
        }

        .spice-level {
            font-size: 0.8rem;
            color: #666;
        }

        /* Full Menu */
        .full-menu {
            padding: 80px 0;
        }

        .menu-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .menu-filter {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 30px;
        }

        .filter-btn {
            padding: 8px 20px;
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--primary);
            color: white;
        }

        .menu-category {
            margin-bottom: 50px;
        }

        .menu-category h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }

        .menu-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .menu-item {
            background: rgba(255,255,255,0.05);
            padding: 20px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .menu-item:hover {
            background: rgba(11, 212, 162, 0.05);
            transform: translateY(-3px);
        }

        .item-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
        }

        .item-name {
            color: var(--primary);
            font-weight: 600;
        }

        .item-price {
            color: var(--highlight);
            font-weight: bold;
        }

        .item-desc {
            color: var(--text);
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-hero h1 {
                font-size: 2.5rem;
            }
            
            .recommendations-grid {
                grid-template-columns: 1fr;
            }
            
            .menu-items {
                grid-template-columns: 1fr;
            }
        }

        /* Gallery Page Styles */
        .gallery-page {
            background-color: var(--bg);
        }

        /* Gallery Hero */
        .gallery-hero {
            background: linear-gradient(rgba(1, 72, 64, 0.8), rgba(1, 72, 64, 0.7)), 
                        url('/img/gallery/BNI\ Event\ \(2\)_80317848.jpg') no-repeat center center/cover;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .gallery-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
            animation: fadeInDown 1s ease;
        }

        .gallery-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease;
        }

        /* Gallery Filter Scrollable Styles */
        .gallery-filter {
            display: flex;
            justify-content: center;
            gap: 10px;
            padding-bottom: 5px;
            overflow-x: auto;
            scrollbar-width: thin; /* For Firefox */
            scrollbar-color: var(--primary) var(--light); /* For Firefox */
            white-space: nowrap;
            -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
        }

        /* Custom scrollbar for Webkit browsers */
        .gallery-filter::-webkit-scrollbar {
            height: 5px;
        }

        .gallery-filter::-webkit-scrollbar-track {
            background: var(--light);
            border-radius: 10px;
        }

        .gallery-filter::-webkit-scrollbar-thumb {
            background-color: var(--primary);
            border-radius: 10px;
        }

        .filter-btn {
            flex: 0 0 auto; /* Prevent buttons from shrinking */
            padding: 10px 25px;
            border: 2px solid var(--primary);
            background: transparent;
            color: var(--primary);
            border-radius: 30px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-bottom: 5px; /* Space for scrollbar */
        }

        .filter-btn:hover, 
        .filter-btn.active {
            background: var(--primary);
            color: white;
        }

        /* For touch devices - larger tap targets */
        @media (max-width: 768px) {
            .filter-btn {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
        }

        /* Main Gallery */
        .main-gallery {
            padding: 80px 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            height: 250px;
            transition: all 0.3s ease;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(1, 72, 64, 0.7);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-overlay i {
            color: white;
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .gallery-overlay span {
            color: white;
            font-weight: 600;
            background: var(--accent);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .load-more {
            text-align: center;
            margin-top: 40px;
        }

        /* Testimonials */
        .gallery-testimonials {
            background: var(--light);
            padding: 80px 0;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .testimonial-content {
            position: relative;
            margin-bottom: 20px;
        }

        .testimonial-content i {
            color: var(--accent);
            font-size: 1.5rem;
            opacity: 0.3;
            position: absolute;
            top: -10px;
            left: -10px;
        }

        .testimonial-content p {
            color: var(--text);
            font-style: italic;
            line-height: 1.7;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-author h4 {
            color: var(--primary);
            margin-bottom: 5px;
        }

        .testimonial-author span {
            color: var(--text);
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .gallery-hero h1 {
                font-size: 2.5rem;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
            
            .gallery-nav {
                top: 70px;
            }
        }

        @media (max-width: 480px) {
            .gallery-hero {
                height: 50vh;
            }
            
            .gallery-hero h1 {
                font-size: 2rem;
            }
            
            .gallery-filter {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 10px;
            }
            
            .gallery-filter::-webkit-scrollbar {
                height: 5px;
            }
            
            .gallery-filter::-webkit-scrollbar-thumb {
                background: var(--primary);
            }
        }

        /* Reservation Page Styles */
        .reservation-page {
            background-color: var(--bg);
        }

        /* Reservation Hero */
        .reservation-hero {
            background: linear-gradient(rgba(1, 72, 64, 0.8), rgba(1, 72, 64, 0.7)), 
                        url('../img/reservation-hero.jpg') no-repeat center center/cover;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }

        .reservation-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
            animation: fadeInUp 1s ease;
        }

        .reservation-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease;
        }

        /* Reservation Process */
        .reservation-process {
            padding: 60px 0;
            background: var(--light);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .step {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .step-number {
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: var(--dark);
            font-weight: bold;
            font-size: 1.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .step h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        /* Reservation Form Section */
        .reservation-form-section {
            padding: 80px 0;
        }

        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .form-container h2 {
            color: var(--primary);
            text-align: center;
            margin-bottom: 10px;
        }

        .form-subtitle {
            text-align: center;
            color: var(--text);
            margin-bottom: 30px;
            opacity: 0.8;
        }

        .reservation-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-weight: 600;
            color: var(--text);
        }

        .form-control {
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(11, 212, 162, 0.2);
        }

        .form-submit {
            margin-top: 20px;
            text-align: center;
        }

        /*Real btn for button */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--highlight);
            color: white;
            padding: 10px 25px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .btn i {
            font-size: 1.2rem;
        }

        /* Reservation Info */
        .reservation-info {
            max-width: 800px;
            margin: 40px auto 0;
            background: var(--light);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
        }

        .reservation-info h3 {
            color: var(--primary);
            margin-bottom: 25px;
        }

        .contact-method {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .contact-method i {
            font-size: 1.5rem;
            color: var(--accent);
        }

        .contact-method h4 {
            color: var(--text);
            margin-bottom: 5px;
        }

        .contact-method a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-method a:hover {
            color: var(--highlight);
        }

        .hours-info {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }

        .hours-info h4 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        /* Why Reserve Section */
        .why-reserve {
            padding: 80px 0;
            background: var(--light);
            text-align: center;
        }

        .why-reserve h2 {
            color: var(--primary);
            margin-bottom: 50px;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .benefit-card {
            background: white;
            padding: 30px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
        }

        .benefit-card i {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 15px;
        }

        .benefit-card h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .reservation-hero h1 {
                font-size: 2.5rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .form-container {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .reservation-hero {
                height: 50vh;
            }
            
            .reservation-hero h1 {
                font-size: 2rem;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
        }

        /* Alternative Outline Style */
        .help-item.outline-style {
            background: transparent;
            border: 1px solid var(--accent);
            box-shadow: none;
        }

        .help-item.outline-style i {
            background: transparent;
        }

        .help-item.water-theme {
            background: linear-gradient(to right, rgba(245, 249, 248, 0.9), white);
            border-left: 3px solid var(--accent);
            border-radius: 8px 50px 50px 8px;
        }

        /* Compact Help Section */
        .compact-help {
        padding: 30px 0;
        background: rgba(245, 249, 248, 0.8);
        border-top: 1px solid rgba(9, 153, 114, 0.1);
        border-bottom: 1px solid rgba(9, 153, 114, 0.1);
        }

        .help-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        max-width: 800px;
        margin: 0 auto;
        }

        .help-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 25px;
        background: white;
        border-radius: 50px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
        flex: 1;
        min-width: 220px;
        max-width: 280px;
        }

        .help-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(9, 153, 114, 0.1);
        }

        .help-item i {
        font-size: 1.5rem;
        color: var(--accent);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(11, 212, 162, 0.1);
        }

        .help-item h4 {
        color: var(--primary);
        margin-bottom: 5px;
        font-size: 1rem;
        }

        .help-item a, 
        .help-item p {
        color: var(--text);
        font-size: 0.9rem;
        text-decoration: none;
        transition: color 0.3s ease;
        }

        .help-item a:hover {
        color: var(--accent);
        }

        /* Responsive */
        @media (max-width: 768px) {
        .help-row {
            flex-direction: column;
            align-items: center;
        }
        
        .help-item {
            width: 100%;
            max-width: 350px;
        }
        }

        /* Water Animation Effect */
        /*.water-effect {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('../img/services/water-wave.jpg');
            background-size: 1000px 100px;
            animation: waterWave 15s linear infinite;
            opacity: 0.8;
            z-index: 2;
        }*/

        @keyframes waterWave {
            0% { background-position-x: 0; }
            100% { background-position-x: 1000px; }
        }

        /* ================ */
        /* Hero Section */
        /* ================ */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/lavidafloating.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            background-attachment: fixed; /* Creates parallax effect */
            will-change: transform;       /* Improves performance */
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease;
        }

        .hero .btn {
            animation: fadeIn 1.5s ease;
        }

        /* ================ */
        /* Gallery Section */
        /* ================ */
        .gallery {
            background-color: var(--bg);
        }

        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-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;
        }

        .gallery-item:hover .gallery-item-overlay {
            opacity: 1;
        }

        .gallery-item-overlay i {
            color: white;
            font-size: 2rem;
        }

        /* Contact Page Styles */
        .contact-page {
            background-color: var(--bg);
        }

        /* Contact Hero */
        .contact-hero {
            background: linear-gradient(rgba(1, 72, 64, 0.8), rgba(1, 72, 64, 0.7)), 
                        url('../img/contact-hero.jpg') no-repeat center center/cover;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .contact-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 15px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
            animation: fadeInDown 1s ease;
            
        }

        .contact-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease;
        }

        /* Contact Cards */
        .contact-cards {
            padding: 80px 0;
            background: var(--light);
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-card {
            background: white;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-10px);
        }

        .card-icon {
            width: 80px;
            height: 80px;
            background: rgba(11, 212, 162, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .card-icon i {
            font-size: 2rem;
            color: var(--accent);
        }

        .contact-card h3 {
            color: var(--primary);
            margin-bottom: 15px;
        }

        .contact-card p {
            color: var(--text);
            margin-bottom: 25px;
        }

        .btn-map {
            background: var(--primary);
            color: white;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-map:hover {
            background: var(--secondary);
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .contact-link {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .contact-link:hover {
            color: var(--accent);
        }

        /* Social Icons - Always Visible */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 25px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            background: var(--primary); /* Base color */
            transition: all 0.3s ease;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
        }

        /* Platform-specific colors (visible by default) */
        .social-icon:nth-child(1) { background: #1877F2; } /* Facebook */
        .social-icon:nth-child(2) { background: #E1306C; } /* Instagram */
        .social-icon:nth-child(3) { background: #0088CC; } /* Telegram */
        .social-icon:nth-child(4) { background: #25D366; } /* WhatsApp */

        /* Hover effects */
        .social-icon:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Make icons larger on bigger screens */
        @media (min-width: 768px) {
            .social-icon {
                width: 50px;
                height: 50px;
                font-size: 1.4rem;
            }
        }

        /* Map Section */
        .map-section {
            padding: 80px 0 0;
        }

        .section-title {
            text-align: center;
            color: var(--primary);
            margin-bottom: 40px;
            font-size: 2.2rem;
        }

        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .hours-info {
            background: rgba(11, 212, 162, 0.05);
            padding: 30px;
            border-radius: 10px;
            align-self: center;
        }

        .hours-info h3 {
            color: var(--primary);
            margin-bottom: 20px;
            text-align: center;
        }

        .hours-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dashed rgba(9, 153, 114, 0.3);
        }

        .hours-list li:last-child {
            border-bottom: none;
        }

        .hours-list span:first-child {
            font-weight: 600;
            color: var(--primary);
        }

        .emergency-contact {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(9, 153, 114, 0.3);
        }

        .emergency-contact h4 {
            color: var(--text);
            margin-bottom: 10px;
            font-size: 1rem;
        }

        .emergency-link {
            color: var(--highlight);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .form-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hours-info {
                order: -1;
            }
        }

        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2.5rem;
            }
            
            .card-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
            }
        }

        @media (max-width: 480px) {
            .contact-hero {
                height: 40vh;
            }
            
            .floating-form {
                padding: 30px 20px;
            }
        }

        /* ================ */
        /* Footer */
        /* ================ */
        footer {
            background: var(--secondary);
            color: white;
            padding: 30px 0 20px;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 15px;
            margin-bottom: 15px;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: var(--accent);
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* ================ */
        /* Animations */
        /* ================ */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        /* ================ */
        /* Responsive Styles */
        /* ================ */
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .btn {
                padding: 10px 25px;
            }
            
            .reservation-form {
                padding: 30px 20px;
            }
        }

        @media (max-width: 480px) {
            .hero {
                height: 80vh;
                background-position: 75% center;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }

        /* Notification Popup Styles */
        .notification-popup {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
            max-width: 350px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            transform: translateX(150%);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            overflow: hidden;
            display: none;
        }

        .notification-popup.show {
            transform: translateX(0);
            display: block;
        }

        .popup-content {
            display: flex;
            align-items: center;
            padding: 20px;
            position: relative;
        }

        .popup-icon {
            margin-right: 15px;
            font-size: 2rem;
        }

        .popup-icon .success-icon {
            color: #4CAF50;
            display: none;
        }

        .popup-icon .error-icon {
            color: #F44336;
            display: none;
        }

        .popup-message {
            flex: 1;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .popup-close-btn {
            background: transparent;
            border: none;
            color: #888;
            font-size: 1.2rem;
            cursor: pointer;
            margin-left: 15px;
            transition: color 0.3s ease;
        }

        .popup-close-btn:hover {
            color: #333;
        }

        /* Success Styling */
        .notification-popup.success {
            border-left: 5px solid #4CAF50;
        }

        .notification-popup.success .success-icon {
            display: block;
        }

        /* Error Styling */
        .notification-popup.error {
            border-left: 5px solid #F44336;
        }

        .notification-popup.error .error-icon {
            display: block;
        }

        /* Animation */
        @keyframes slideIn {
            from { transform: translateX(150%); }
            to { transform: translateX(0); }
        }

        @keyframes slideOut {
            from { transform: translateX(0); }
            to { transform: translateX(150%); }
        }
