:root {
            --primary: #902b1a;
            --secondary: #c19a6b;
            --accent: #8b5a2b;
            --light: #f8f5f2;
            --dark: #121212;
            --text: #333333;
            --text-light: #666666;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--light);
            position: relative;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--primary);
        }

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

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 25px 0;
            transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
            background-color: rgba(10, 30, 28, 0.9);
            backdrop-filter: blur(10px);
        }

        header.scrolled {
            padding: 15px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 50px;
            margin-right: 15px;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-text h1 {
            font-size: 28px;
            margin: 0;
            line-height: 1;
            color: var(--light);
            letter-spacing: 1px;
        }

        .logo-text span {
            font-size: 10px;
            color: var(--secondary);
            letter-spacing: 2px;
            margin-top: 5px;
            font-weight: 500;
            text-transform: uppercase;
        }

        nav {
            display: flex;
            align-items: center;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin: 0 20px;
            position: relative;
        }

        nav ul li a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            padding: 10px 0;
        }

        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            bottom: 5px;
            left: 0;
            transition: width 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        nav ul li a:hover:after {
            width: 100%;
        }

        .cta-button {
            background-color: var(--secondary);
            color: var(--primary);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 1px;
            transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
            border: 2px solid var(--secondary);
            margin-left: 30px;
            position: relative;
            overflow: hidden;
        }

        .cta-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .cta-button:hover {
            background-color: transparent;
            color: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(193, 154, 107, 0.3);
        }

        .cta-button:hover:before {
            left: 100%;
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 800px;
            background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('assets/talasi1.png') no-repeat center center / cover;
            display: flex;
            align-items: center;
            position: relative;
            color: white;
            padding-top: 100px;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 72px;
            margin-bottom: 30px;
            color: var(--light);
            line-height: 1.1;
            font-weight: 700;
            letter-spacing: 1px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 40px;
            opacity: 0.9;
            max-width: 600px;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .btn-primary {
            background-color: var(--secondary);
            color: var(--primary);
            padding: 16px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            display: inline-block;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(193, 154, 107, 0.4);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--light);
            padding: 16px 35px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            display: inline-block;
            border: 2px solid var(--light);
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        .scroll-down {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--light);
            font-size: 14px;
            letter-spacing: 2px;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            z-index: 2;
        }

        .scroll-down span {
            margin-top: 15px;
            display: block;
            width: 24px;
            height: 40px;
            border: 2px solid var(--light);
            border-radius: 12px;
            position: relative;
        }

        .scroll-down span:after {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: var(--light);
            border-radius: 2px;
            animation: scrollDown 2s infinite;
        }

        @keyframes scrollDown {
            0% {
                opacity: 1;
                top: 8px;
            }

            100% {
                opacity: 0;
                top: 24px;
            }
        }

        /* About Section */
        .about {
            padding: 120px 0;
            background-color: var(--light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title h2 {
            font-size: 48px;
            position: relative;
            display: inline-block;
            padding-bottom: 20px;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--secondary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-title p {
            max-width: 700px;
            margin: 20px auto 0;
            font-size: 18px;
            color: var(--text-light);
        }

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

        .about-text h3 {
            font-size: 36px;
            margin-bottom: 25px;
            color: var(--primary);
        }

        .about-text p {
            margin-bottom: 25px;
            font-size: 16px;
            line-height: 1.8;
        }

        .about-image {
            position: relative;
            height: 400px;
        }

        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }

        .decoration-image {
            position: absolute;
            width: 250px;
            height: 250px;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            border: 10px solid var(--light);
        }

        .decoration-image-1 {
            bottom: -50px;
            left: -50px;
            z-index: 2;
        }

        .decoration-image-2 {
            top: -50px;
            right: -50px;
            z-index: 2;
        }

        /* Menu Section */
        .menu {
            padding: 120px 0;
            background-color: var(--primary);
            color: var(--light);
        }

        .menu .section-title h2 {
            color: var(--light);
        }

        .menu-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 50px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .menu-tab {
            padding: 12px 25px;
            background-color: transparent;
            border: 1px solid var(--secondary);
            color: var(--light);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 15px;
        }

        .menu-tab.active,
        .menu-tab:hover {
            background-color: var(--secondary);
            color: var(--primary);
        }

        .menu-categories {
            display: none;
        }

        .menu-categories.active {
            display: block;
        }

        .menu-category h3 {
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--secondary);
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(193, 154, 107, 0.3);
        }

        .menu-items {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .menu-item {
            display: flex;
            gap: 20px;
        }

        .menu-item-image {
            width: 100px;
            height: 100px;
            border-radius: 10px;
            object-fit: cover;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .menu-item-details {
            flex: 1;
        }

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

        .menu-item-title {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--light);
        }

        .menu-item-price {
            color: var(--secondary);
            font-weight: 600;
        }

        .menu-item-description {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .menu-item-tags {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }

        .menu-tag {
            font-size: 11px;
            padding: 3px 10px;
            border-radius: 20px;
            background-color: rgba(193, 154, 107, 0.2);
            color: var(--secondary);
        }

        .download-menu {
            text-align: center;
            margin-top: 50px;
        }

        /* Gallery Section */
        .gallery {
            padding: 120px 0;
            background-color: var(--light);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            height: 300px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.5s ease;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            color: white;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-caption {
            opacity: 1;
        }

        /* Reservation Section */
        .reservation {
            padding: 120px 0;
            background-color: #902b1a;
            color: var(--light);
        }

        .reservation .section-title h2 {
            color: var(--light);
        }

        .reservation-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .reservation-form {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 50px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(193, 154, 107, 0.3);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
            font-size: 15px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px 20px;
            border-radius: 5px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--light);
            font-family: 'Montserrat', sans-serif;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
            background-color: rgba(255, 255, 255, 0.2);
        }

        .form-submit {
            background-color: var(--secondary);
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .form-submit:hover {
            background-color: var(--light);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .reservation-info h3 {
            font-size: 36px;
            margin-bottom: 25px;
            color: var(--light);
        }

        .reservation-info p {
            margin-bottom: 25px;
            font-size: 16px;
            line-height: 1.8;
            opacity: 0.9;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .info-item i {
            color: var(--secondary);
            font-size: 20px;
        }


        /* Testimonials Section */
        /* .testimonials {
            padding: 120px 0;
            background: #902b1a;
            background-size: center;
            color: var(--light);
        }


        .testimonials .section-title h2 {
            color: var(--light);
        }

        .testimonials-slider {
            margin-top: 50px;
        }

        .testimonial-card {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 10px;
            border: 1px solid rgba(193, 154, 107, 0.2);
            transition: all 0.5s ease;
        }

        .testimonial-card:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 30px;
            font-size: 16px;
            line-height: 1.8;
            position: relative;
        }

        .testimonial-text:before {
            content: '"';
            font-size: 60px;
            color: var(--secondary);
            opacity: 0.3;
            position: absolute;
            top: -20px;
            left: -15px;
            font-family: serif;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: var(--light);
        }

        .author-info p {
            font-size: 14px;
            opacity: 0.7;
        } */
        /* Testimonials Section */
        .testimonials {
            padding: 120px 0;
            background: #902b1a;
            background-size: center;
            color: var(--light);
            position: relative;
        }

        .testimonials .section-title h2 {
            color: var(--light);
            position: relative;
            z-index: 2;
        }

        .testimonials-slider {
            margin-top: 50px;
            position: relative;
            z-index: 2;
        }

        .testimonial-card {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        }

        .testimonial-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #c19a6b, #902b1a);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 30px;
            font-size: 17px;
            line-height: 1.9;
            position: relative;
            color: #333333;
            font-weight: 400;
            padding-left: 20px;
        }

        .testimonial-text:before {
            content: '"';
            font-size: 80px;
            color: #c19a6b;
            opacity: 0.2;
            position: absolute;
            top: -40px;
            left: -20px;
            font-family: serif;
            font-weight: 700;
        }

        .testimonial-text:after {
            content: '"';
            font-size: 80px;
            color: #c19a6b;
            opacity: 0.2;
            position: absolute;
            bottom: -80px;
            right: 10px;
            font-family: serif;
            font-weight: 700;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(193, 154, 107, 0.3);
        }

        .author-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
            color: #902b1a;
            font-weight: 600;
        }

        .author-info p {
            font-size: 14px;
            color: #666666;
            font-weight: 400;
        }

        /* Optional: Add a subtle pattern overlay to the section */
        .testimonials:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px);
            background-size: 15px 15px;
            pointer-events: none;
        }

        .google-reviews {
            margin-top: 80px;
            text-align: center;
        }

        .google-reviews h3 {
            font-size: 28px;
            margin-bottom: 30px;
            color: var(--light);
        }

        /* Contact Section */
.contact {
    padding: 120px 0;
    background-color: #fffbf6;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary);
}

.contact-info p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center; /* <-- Keep this to center icon vertically */
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background-color: var(--secondary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    transition: transform 0.2s ease-in-out;
    margin-top: 3px; /* Optional tweak for better optical centering */
}

.contact-item i:hover {
    transform: scale(1.1);
}

.contact-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-item-content p,
.contact-item-content a {
    color: var(--text);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.6;
}

.contact-item-content a:hover {
    color: var(--secondary);
}

.contact-map {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

        /* Footer */
        footer {
            background-color: var(--primary);
            color: var(--light);
            padding: 100px 0 30px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-about h3 {
            font-size: 24px;
            margin-bottom: 25px;
            color: var(--light);
        }

        .footer-about p {
            opacity: 0.7;
            margin-bottom: 30px;
            font-size: 15px;
            line-height: 1.8;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

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

        .social-icon:hover {
            background-color: var(--secondary);
            color: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links h3 {
            font-size: 24px;
            margin-bottom: 25px;
            color: var(--light);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: var(--light);
            opacity: 0.7;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--secondary);
            padding-left: 5px;
        }

        .footer-contact h3 {
            font-size: 24px;
            margin-bottom: 25px;
            color: var(--light);
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .footer-contact-item i {
            color: var(--secondary);
            font-size: 20px;
            margin-top: 3px;
        }

        .footer-contact-item p,
        .footer-contact-item a {
            opacity: 0.7;
            font-size: 15px;
            color: var(--light);
            text-decoration: none;
            line-height: 1.6;
        }

        .footer-contact-item a:hover {
            color: var(--secondary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            opacity: 0.5;
            font-size: 14px;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 60px;
            }

            .about-content,
            .reservation-container,
            .contact-container {
                gap: 40px;
            }

            .footer-container {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .container {
                padding: 0 30px;
            }

            .hero h1 {
                font-size: 50px;
            }

            .hero p {
                font-size: 18px;
            }

            .about-content,
            .reservation-container,
            .contact-container {
                grid-template-columns: 1fr;
            }

            .about-image {
                height: 500px;
            }

            .menu-items {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }

            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-about {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background-color: var(--primary);
                flex-direction: column;
                justify-content: center;
                transition: right 0.5s ease;
                z-index: 1000;
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                align-items: center;
                padding: 0;
            }

            nav ul li {
                margin: 15px 0;
            }

            .cta-button {
                margin: 30px 0 0;
            }

            .hero h1 {
                font-size: 42px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .section-title h2 {
                font-size: 36px;
            }

            .decoration-image {
                width: 200px;
                height: 200px;
            }

            .decoration-image-1 {
                bottom: -30px;
                left: -30px;
            }

            .decoration-image-2 {
                top: -30px;
                right: -30px;
            }

            .menu-items {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 20px;
            }

            .hero {
                min-height: 700px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 16px;
            }

            .section-title h2 {
                font-size: 30px;
            }

            .about-image {
                height: 400px;
            }

            .decoration-image {
                width: 150px;
                height: 150px;
            }

            .reservation-form {
                padding: 30px;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            .footer-about {
                grid-column: span 1;
            }
        }


        /* Header Base Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            padding: 15px 0;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
        }

        /* Logo Styles */
        .header-logo {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .logo-img {
            height: 60px;
            width: auto;
            transition: var(--transition);
        }

        /* Navigation Toggle Button */
        .nav-toggle {
            background: none;
            border: none;
            width: 30px;
            height: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 0;
            cursor: pointer;
            z-index: 1001;
        }

        .toggle-line {
            display: block;
            width: 100%;
            height: 2px;
            background-color: var(--secondary);
            transition: var(--transition);
        }

        .nav-toggle.active .toggle-line:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .nav-toggle.active .toggle-line:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active .toggle-line:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        /* Book Table Button */
        .btn-book {
            display: inline-block;
            padding: 10px 25px;
            background-color: var(--primary);
            color: var(--light);
            border: 2px solid var(--primary);
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            z-index: 1001;
        }

        .btn-book:hover {
            background-color: transparent;
            color: var(--primary);
        }

        /* Sidebar Navigation */
        .sidebar-nav {
            position: fixed;
            top: 0;
            left: -300px;
            width: 280px;
            height: 100vh;
            background-color: var(--light);
            box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
            z-index: 999;
            transition: var(--transition);
            overflow-y: auto;
        }

        .sidebar-nav.active {
            left: 0;
        }

        .sidebar-content {
            padding: 80px 25px 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .nav-menu {
            list-style: none;
            padding: 0;
            margin: 0 0 auto 0;
        }

        .nav-menu li {
            margin-bottom: 15px;
        }

        .nav-menu a {
            color: var(--secondary);
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            transition: var(--transition);
            display: block;
            padding: 8px 0;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary);
        }

        .nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--primary);
            bottom: 0;
            left: 0;
            transition: var(--transition);
        }

        .nav-menu a:hover:after {
            width: 40px;
        }

        .sidebar-footer {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .contact-info {
            margin-top: 20px;
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .header-container {
                padding: 0 15px;
            }

            .header-logo {
                position: static;
                transform: none;
                order: 2;
                flex-grow: 1;
                text-align: center;
            }

            .nav-toggle {
                order: 1;
            }

            .header-actions {
                order: 3;
            }

            .logo-img {
                height: 50px;
            }

            .btn-book {
                padding: 8px 15px;
                font-size: 14px;
            }
        }

        @media (min-width: 769px) {
            .header-actions .btn-book {
                padding: 12px 30px;
            }
        }

        /* Sidebar Navigation - Ensure vertical layout at all times */
        .sidebar-nav {
            position: fixed;
            top: 0;
            left: -300px;
            width: 280px;
            height: 100vh;
            background-color: var(--light);
            box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
            z-index: 999;
            transition: var(--transition);
            overflow-y: auto;
            /* Ensure flex direction is column */
            display: flex;
            flex-direction: column;
        }

        .sidebar-content {
            padding: 80px 25px 30px;
            height: 100%;
            display: flex;
            flex-direction: column;
            /* This ensures vertical stacking */
        }

        .nav-menu {
            list-style: none;
            padding: 0;
            margin: 0 0 auto 0;
            /* Force vertical layout */
            display: block !important;
        }

        .nav-menu li {
            margin-bottom: 15px;
            /* Prevent inline display */
            display: block !important;
            float: none !important;
        }

        /* Media query for laptop/desktop */
        @media (min-width: 769px) {
            .sidebar-nav {
                /* Keep the same vertical layout */
                left: -300px;
                width: 280px;
            }

            /* When sidebar is active on desktop */
            .sidebar-nav.active {
                left: 0;
            }

            /* Ensure menu items stay vertical */
            .nav-menu {
                display: flex;
                flex-direction: column;
            }

            .nav-menu li {
                width: 100%;
            }
        }

        /*  */
        /* Mobile styles (default) */
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px;
        }

        .header-actions .btn-book {
            display: none;
            /* Hidden on mobile */
        }

        /* Desktop styles */
        @media (min-width: 769px) {
            .header-container {
                padding: 0 30px;
                justify-content: space-between;
            }

            /* .header-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    } */

            .header-actions .btn-book {
                display: inline-block;
                /* Visible on desktop */
            }
        }

        /* Hero Section Styles */
        .hero-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
            height: 100%;
        }

        .hero-text {
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            /* Responsive font size */
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
        }

        .hero-content p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .btn-primary,
        .btn-secondary {
            padding: 14px 36px;
            border-radius: 999px;
            /* pill shape for premium look */
            font-weight: 600;
            text-decoration: none;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
            display: inline-block;
            font-size: 1rem;
            letter-spacing: 0.5px;
            cursor: pointer;
        }

        /* Premium Gold Primary Button */
        .btn-primary {
            background-color: #c8a97e;
            color: #ffffff;
            border: 2px solid #c8a97e;
        }

        .btn-primary:hover {
            background-color: transparent;
            color: #c8a97e;
            transform: translateY(-2px);
        }

        /* Elegant Transparent Secondary Button */
        .btn-secondary {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.12);
            transform: translateY(-2px);
        }


        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-content {
                padding: 60px 15px;
            }

            .hero-buttons {
                flex-direction: column;
                width: 100%;
                gap: 15px;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }
        }
              

        /* Premium Cuisine Section */
        .premium-cuisine {
            padding: 5rem 0;
            background: #f9f5f2;
            overflow: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 300;
            color: #222;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Banner Container */
        .cuisine-banner-container {
            position: relative;
            overflow: hidden;
            margin: 0 -2rem;
            padding: 2rem 0;
        }

        /* Cuisine Banner */
        .cuisine-banner {
            display: flex;
            gap: 2rem;
            animation: scroll-banner 60s linear infinite;
            width: max-content;
        }

        /* Cuisine Cards */
        .cuisine-card {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            width: 320px;
            aspect-ratio: 10/13;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            flex-shrink: 0;
        }

        .cuisine-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .image-wrapper {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .cuisine-card:hover img {
            transform: scale(1.03);
        }

        .title-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem 1.5rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 30%, transparent 100%);
            text-align: center;
        }

        .title-overlay h3 {
            color: white;
            font-size: 1.4rem;
            font-weight: 400;
            margin: 0;
            letter-spacing: 0.5px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .cuisine-logo {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: white;
            padding: 4px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #c8a97e;
            transition: transform 0.3s ease;
        }

        .cuisine-card:hover .cuisine-logo {
            transform: scale(1.05);
        }

        .cuisine-logo img {
            width: 80%;
            height: 80%;
            object-fit: contain;
            border-radius: 50%;
        }

        /* Keyframes for animation */
        @keyframes scroll-banner {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-320px * 8 - 2rem * 8));
            }
        }

        /* Large Desktop (1440px and above) */
        @media (min-width: 1440px) {
            .cuisine-card {
                width: 350px;
            }
            
            .cuisine-banner {
                gap: 2.5rem;
                animation: scroll-banner 70s linear infinite;
            }
            
            @keyframes scroll-banner {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-350px * 8 - 2.5rem * 8)); }
            }
        }

        /* Desktop (1024px - 1439px) */
        @media (min-width: 1024px) and (max-width: 1439px) {
            .cuisine-card {
                width: 300px;
            }
            
            .cuisine-banner {
                gap: 1.8rem;
                animation: scroll-banner 60s linear infinite;
            }
            
            @keyframes scroll-banner {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-300px * 8 - 1.8rem * 8)); }
            }
        }

        /* Tablet Landscape (768px - 1023px) */
        @media (min-width: 768px) and (max-width: 1023px) {
            .section-header h2 {
                font-size: 2.2rem;
            }
            
            .cuisine-card {
                width: 280px;
            }
            
            .cuisine-banner {
                gap: 1.5rem;
                animation: scroll-banner 45s linear infinite;
            }
            
            .cuisine-logo {
                width: 32px;
                height: 32px;
                top: 12px;
                right: 12px;
            }
            
            .title-overlay h3 {
                font-size: 1.3rem;
            }
            
            @keyframes scroll-banner {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-280px * 8 - 1.5rem * 8)); }
            }
        }

        /* Tablet Portrait (600px - 767px) */
        @media (min-width: 600px) and (max-width: 767px) {
            .premium-cuisine {
                padding: 4rem 0;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .cuisine-card {
                width: 260px;
            }
            
            .cuisine-banner {
                gap: 1.2rem;
                animation: scroll-banner 40s linear infinite;
            }
            
            .cuisine-logo {
                width: 30px;
                height: 30px;
                top: 10px;
                right: 10px;
            }
            
            .title-overlay {
                padding: 1.5rem 1rem;
            }
            
            .title-overlay h3 {
                font-size: 1.2rem;
            }
            
            @keyframes scroll-banner {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-260px * 8 - 1.2rem * 8)); }
            }
        }

        /* Mobile Large (480px - 599px) */
        @media (min-width: 480px) and (max-width: 599px) {
            .premium-cuisine {
                padding: 3.5rem 0;
            }
            
            .section-header {
                margin-bottom: 2.5rem;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
            
            .cuisine-card {
                width: 240px;
            }
            
            .cuisine-banner {
                gap: 1rem;
                animation: scroll-banner 35s linear infinite;
            }
            
            .cuisine-logo {
                width: 28px;
                height: 28px;
                top: 8px;
                right: 8px;
            }
            
            .title-overlay {
                padding: 1.2rem 0.8rem;
            }
            
            .title-overlay h3 {
                font-size: 1.1rem;
            }
            
            @keyframes scroll-banner {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-240px * 8 - 1rem * 8)); }
            }
        }

        /* Mobile Small (320px - 479px) */
        @media (max-width: 479px) {
            .premium-cuisine {
                padding: 3rem 0;
            }
            
            .container {
                padding: 0 1rem;
            }
            
            .section-header {
                margin-bottom: 2rem;
            }
            
            .section-header h2 {
                font-size: 1.6rem;
            }
            
            .section-header p {
                font-size: 1rem;
            }
            
            .cuisine-banner-container {
                margin: 0 -1rem;
            }
            
            .cuisine-card {
                width: 220px;
            }
            
            .cuisine-banner {
                gap: 0.8rem;
                animation: scroll-banner 30s linear infinite;
            }
            
            .cuisine-logo {
                width: 26px;
                height: 26px;
                top: 6px;
                right: 6px;
            }
            
            .title-overlay {
                padding: 1rem 0.6rem;
            }
            
            .title-overlay h3 {
                font-size: 1rem;
                letter-spacing: 0.3px;
            }
            
            @keyframes scroll-banner {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-220px * 8 - 0.8rem * 8)); }
            }
        }

        /* Extra Small Mobile (below 320px) */
        @media (max-width: 319px) {
            .cuisine-card {
                width: 200px;
            }
            
            .cuisine-banner {
                gap: 0.6rem;
                animation: scroll-banner 25s linear infinite;
            }
            
            .title-overlay h3 {
                font-size: 0.9rem;
            }
            
            @keyframes scroll-banner {
                0% { transform: translateX(0); }
                100% { transform: translateX(calc(-200px * 8 - 0.6rem * 8)); }
            }
        }
         /* Menu Gallery Styles */
        .menuGallery-section {
            padding: 60px 0;
            background-color: #f9f9f9;
        }

        .menuGallery-container {
            max-width: 500px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .menuGallery-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .menuGallery-title h2 {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 15px;
        }

        .menuGallery-title p {
            color: #666;
            font-size: 1.1rem;
        }

        .menuGallery-viewer {
            position: relative;
            margin-bottom: 30px;
        }

        .menuGallery-main-image-container {
            position: relative;
            margin-bottom: 15px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .menuGallery-main-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        .menuGallery-main-image:hover {
            transform: scale(1.02);
        }

        .menuGallery-nav-btn {
            position: absolute;
            background: rgba(225, 154, 154, 0.6);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .menuGallery-nav-btn:hover {
            background: rgba(112, 112, 112, 0.8);
        }

        .menuGallery-prev-btn {
            top: 50%;
            left: 15px;
            transform: translateY(-50%);
        }

        .menuGallery-next-btn {
            top: 50%;
            right: 15px;
            transform: translateY(-50%);
        }

        .menuGallery-thumbnail-row {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 10px;
            scrollbar-width: thin;
            scrollbar-color: #ccc #f1f1f1;
        }

        .menuGallery-thumbnail-row::-webkit-scrollbar {
            height: 6px;
        }

        .menuGallery-thumbnail-row::-webkit-scrollbar-thumb {
            background-color: #ccc;
            border-radius: 3px;
        }

        .menuGallery-thumbnail-row::-webkit-scrollbar-track {
            background-color: #f1f1f1;
        }

        .menuGallery-thumbnail {
            width: 80px;
            height: 60px;
            object-fit: cover;
            border-radius: 4px;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .menuGallery-thumbnail:hover {
            opacity: 1;
            border-color: #ddd;
        }

        .menuGallery-thumbnail.active {
            opacity: 1;
            border-color: #333;
        }

        .menuGallery-download {
            text-align: center;
            margin-top: 30px;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .menuGallery-title h2 {
                font-size: 2rem;
            }

            .menuGallery-title p {
                font-size: 1rem;
            }

            .menuGallery-thumbnail {
                width: 60px;
                height: 45px;
            }

            .menuGallery-nav-btn {
                width: 35px;
                height: 35px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .menuGallery-title h2 {
                font-size: 1.8rem;
            }

            .menuGallery-thumbnail {
                width: 50px;
                height: 38px;
            }

            .btn-primary {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
         .premium-reviews {
            overflow: hidden;
            position: relative;
        }

        .reviews-grid-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .reviews-row {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
            justify-content: center;
        }

        .review-card {
            flex: 1;
            min-width: 300px;
            max-width: 350px;
            background: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
        }

        .review-card p {
            font-style: italic;
            color: #333;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            min-height: 120px;
        }

        .reviewer {
            color: #902b1a;
            font-weight: 600;
            text-align: right;
            font-size: 0.95rem;
            border-top: 1px solid rgba(144, 43, 26, 0.2);
            padding-top: 1rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .review-card {
                min-width: 250px;
                padding: 1.75rem;
            }
        }

        @media (max-width: 768px) {
            .reviews-row {
                flex-wrap: wrap;
            }

            .review-card {
                min-width: 100%;
                max-width: 100%;
                margin-bottom: 1.5rem;
            }

            .review-card:last-child {
                margin-bottom: 0;
            }
        }
         @media (min-width: 768px) {
                #reservation {
                    padding: 4rem 1rem;
                }

                .reservation-container {
                    grid-template-columns: 1fr 1fr !important;
                    gap: 40px !important;
                }

                .reservation-form {
                    order: 1 !important;
                    padding: 2rem !important;
                }

                .reservation-info {
                    order: 2 !important;
                }

                .form-row {
                    grid-template-columns: 1fr 1fr !important;
                    gap: 20px !important;
                }

                .section-title h2 {
                    font-size: 2.5rem !important;
                }

                .section-title p {
                    font-size: 1.1rem !important;
                }

                .reservation-info h3 {
                    font-size: 1.8rem !important;
                }

                .reservation-info p,
                .reservation-info span {
                    font-size: 1rem !important;
                }

                .info-item i {
                    font-size: 1rem !important;
                    width: 20px !important;
                    margin-right: 15px !important;
                }

                .form-group input,
                .form-group select,
                .form-group textarea {
                    padding: 12px !important;
                    font-size: 1rem !important;
                }

                .form-submit {
                    padding: 15px !important;
                    font-size: 1.1rem !important;
                }
            }

            @media (min-width: 992px) {
                #reservation {
                    padding: 5rem 1rem;
                }
            }
            /* Responsive adjustments for the popup */
    @media (max-width: 600px) {
        #thankYouPopup > div {
            padding: 1.5rem;
        }
        #thankYouPopup h2 {
            font-size: 1.5rem;
        }
        #thankYouPopup p {
            font-size: 0.9rem;
        }
        #closePopupBtn {
            padding: 10px 25px;
            font-size: 0.9rem;
        }
    }
    
    @media (max-width: 400px) {
        #thankYouPopup > div {
            padding: 1rem;
        }
        #thankYouPopup h2 {
            font-size: 1.3rem;
        }
        #thankYouPopup p {
            font-size: 0.85rem;
        }
    }
    
    /* Animation for the popup */
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    @keyframes slideUp {
        from { transform: translateY(20px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }
    
    #thankYouPopup {
        animation: fadeIn 0.3s ease-out;
    }
    
    #thankYouPopup > div {
        animation: slideUp 0.4s ease-out;
    }
    
    #closePopupBtn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(200, 169, 126, 0.3);
    }
    /* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #222;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Items */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #c8a97e;
}

.faq-question {
    padding: 1.5rem 1.5rem 1.5rem 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #f9f9f9;
    position: relative;
    min-height: 60px;
}

.faq-logo {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    padding: 3px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border: 2px solid #c8a97e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-logo img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 50%;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    flex-grow: 1;
}

.toggle-icon {
    font-size: 1.5rem;
    color: #c8a97e;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding: 1rem 0;
    color: #555;
    line-height: 1.6;
}

.faq-answer a {
    color: #c8a97e;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Active State */
.faq-item.active .faq-question {
    background: #f5f1ec;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 1rem 1rem 1rem 60px;
    }
    
    .faq-logo {
        width: 35px;
        height: 35px;
        left: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}