/* General Styles */
:root {
    --primary-color: #d4a762;
    --secondary-color: #7b5c3d;
    --accent-color: #eacd8e;
    --dark-color: #302415;
    --light-color: #f9f4ea;
    --text-color: #333;
    --light-text: #fff;
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--dark-color);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--light-text);
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.center-btn {
    text-align: center;
    margin-top: 2rem;
}

.button-group {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.button-group .btn {
    flex: 0 0 auto;
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .button-group .btn {
        width: 100%;
        text-align: center;
    }
}

/* Utility Classes */
.section-padding {
    padding: 5rem 0;
}

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

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

section {
    padding: 5rem 0;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: transparent;
}

.header.scrolled {
    background-color: rgba(48, 36, 21, 0.9);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    z-index: 2;
}

.logo img {
    max-height: 25px;
    width: auto;
}

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

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-menu a {
    color: var(--light-text);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 2;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--light-text);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/branding/hero_image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s;
    animation-fill-mode: both;
}

.hero .btn {
    animation: fadeInUp 1s ease-out 0.6s;
    animation-fill-mode: both;
}

/* Intro Section */
.intro .container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.intro-content {
    padding-right: 2rem;
}

.intro-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.intro-image img:hover {
    transform: scale(1.03);
}

/* Video container styles */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transform: scale(1.05);
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: var(--transition);
}

.video-control {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.video-control:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

/* Featured Menu Section */
.featured-menu {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./assets/gallery/461246505_3761755714042541_3478142822601419011_n.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-text);
    text-align: center;
}

.featured-menu h2, 
.featured-menu h3, 
.featured-menu p {
    color: white;
}

.featured-menu h2 {
    color: var(--light-text);
}

.featured-menu h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.menu-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.menu-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.2);
}

.menu-item img {
    border-radius: 5px;
    height: 200px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.menu-item h3 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
}

.menu-item p {
    color: var(--accent-color);
}

/* Gallery Preview */
.gallery-preview {
    text-align: center;
}

.gallery-preview h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Testimonials */
.testimonials {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/bg_our_values.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-text);
    text-align: center;
    padding: 3rem 0;
}

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

.testimonials h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.testimonials .container {
    max-width: none;
}

.testimonial-container {
    margin-top: 2rem;
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-slider {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    flex: 0 0 350px;
    min-height: 220px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.5;
    opacity: 0.9;
    flex-grow: 1;
}

.testimonial-author h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stars {
    color: var(--primary-color);
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-nav {
    background: rgba(212, 167, 98, 0.8);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.testimonial-nav:hover {
    background: rgba(212, 167, 98, 1);
    transform: scale(1.1);
}

.testimonial-nav:active {
    transform: scale(0.95);
}

.testimonial-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Contact Preview */
.contact-preview .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info {
    margin: 2rem 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
    margin-top: 0.25rem;
    text-align: center;
}

.info-item > div {
    display: flex;
    flex-direction: column;
}

.info-item p {
    margin-bottom: 0.25rem;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-logo img {
    max-height: 60px;
}

.footer-logo p {
    color: var(--accent-color);
}

.footer h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--light-text);
}

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

.footer-contact p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Unified social media icons styling */
.social-icons,
.review-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
}

.footer-logo .social-icons {
    margin-bottom: 1.5rem;
}

.social-icons a,
.review-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #e0e0e0;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-icons a:hover,
.review-icons a:hover {
    transform: translateY(-5px);
}

.social-icons img,
.review-icons img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

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

.footer-contact .info-item {
    margin-bottom: 0.5rem;
}

.footer-contact .info-item i {
    margin-top: 0.2rem;
}

.footer-contact .info-item p {
    color: var(--light-text);
    margin-bottom: 0.2rem;
}

/* Animation Keyframes */
@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);
    }
}

/* Parallax Effect */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Media Queries */

@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .intro .container,
    .contact-preview .container {
        grid-template-columns: 1fr;
    }
    
    .intro-content {
        padding-right: 0;
        order: 2;
    }
    
    .intro-image {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial {
        flex: 0 0 300px;
        padding: 1.5rem;
    }
    
    .testimonial-nav {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        right: -300px;
        top: 0;
        flex-direction: column;
        background-color: var(--dark-color);
        width: 280px;
        height: 100vh;
        text-align: left;
        transition: var(--transition);
        padding: 120px 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Mobile menu backdrop */
    .nav-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 998;
    }
    
    .nav-backdrop.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 576px) {
    .menu-grid,
    .gallery-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .nav-menu {
        width: 260px;
        right: -280px;
        padding: 100px 1.5rem 2rem;
    }
    
    .hero {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    padding-right: 20px;
}

.cookie-text h4 {
    font-family: 'Playfair Display', serif;
    margin: 0 0 10px 0;
    color: var(--dark-color);
}

.cookie-text p {
    font-size: 0.9rem;
    margin: 0;
    color: #555;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-accept {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-accept:hover {
    background-color: var(--secondary-color);
}

.btn-decline {
    background-color: #e0e0e0;
    color: #333;
}

.btn-decline:hover {
    background-color: #d0d0d0;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .cookie-text {
        padding-right: 0;
        padding-bottom: 15px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .btn-cookie {
        padding: 10px 20px;
        flex: 1;
        max-width: 150px;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero */
.contact-hero {
    height: 41.85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/hero/hero_contact.jpg');
    background-size: cover;
    background-position: center;
}

/* Contact Layout */
.contact-section {
    padding: 5rem 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-forms-section {
    max-width: 800px;
}

.contact-welcome-section {
    position: sticky;
    top: 2rem;
}

/* Contact Tab Navigation */
.contact-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    gap: 1rem;
}

.contact-tab {
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: var(--dark-color);
    cursor: pointer;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.contact-tab.active, .contact-tab:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.contact-tab i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Contact Form Content */
.contact-form {
    display: none;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 1.8rem;
    animation: fadeIn 0.5s ease;
}

.contact-form.active {
    display: block;
}

/* Form styling within tabs */
.contact-form-title,
.contact-info-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.contact-form-title h2::after,
.contact-info-title h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.contact-form-card {
    background-color: white;
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 167, 98, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 0.95rem;
}

.submit-btn i {
    margin-right: 8px;
}

/* Reservation Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-half {
    margin-bottom: 1rem;
}

/* Social Media Contact Section */
.social-contact-section {
    /* margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee; */
}

.social-divider {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.social-divider span {
    background: white;
    padding: 0 1rem;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.social-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #ddd;
    z-index: -1;
}

.social-description {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.social-contact-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: space-between;
}

.social-contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
    background: rgba(212, 167, 98, 0.1);
    color: var(--secondary-color);
    text-align: left;
    flex: 1;
    min-width: 0;
}

.social-contact-btn.facebook {
    border-left-color: #4267B2;
    background: rgba(66, 103, 178, 0.1);
}

.social-contact-btn.instagram {
    border-left-color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
}

.social-contact-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-contact-btn.facebook:hover {
    background: rgba(66, 103, 178, 0.15);
    color: #4267B2;
}

.social-contact-btn.instagram:hover {
    background: rgba(228, 64, 95, 0.15);
    color: #E4405F;
}

.social-contact-btn i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.social-contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.social-contact-text strong {
    font-size: 1rem;
    font-weight: 600;
}

.social-contact-text span {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* QR Code styling */
.qr-code {
    margin-left: auto;
    flex-shrink: 0;
}

.qr-code img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.social-contact-btn:hover .qr-code img {
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

/* Welcome Section Styles */
.welcome-card {
    background: linear-gradient(135deg, var(--light-color) 0%, white 100%);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.welcome-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.welcome-content h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.welcome-message {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: center;
}

.welcome-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.welcome-highlights li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #666;
}

.welcome-highlights li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
    width: 20px;
}

.response-time {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.response-time i {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.coffee-quote {
    font-style: italic;
    color: var(--secondary-color);
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(212, 167, 98, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-size: 0.9rem;
}

/* Creative Contact Reasons Section */
.contact-reasons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(212, 167, 98, 0.05), rgba(123, 92, 61, 0.05));
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.reason-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(212, 167, 98, 0.15);
}

.reason-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-text);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(212, 167, 98, 0.3);
}

.reason-content h3 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.reason-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Opening Hours Alignment */
/* .hours-schedule {
    margin: 0.0rem 0;
} */

.hours-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.2rem;
}

.days {
    font-weight: 500;
    min-width: 80px;
}

/* .times {
    font-family: 'Courier New', monospace;
    font-weight: 600;
} */

/* Map Section */
.map-section {
    padding-top: 0;
    padding-bottom: 5rem;
}

/* Operating Hours Section */
.operating-hours {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.hours-title {
    text-align: center;
    margin-bottom: 3rem;
}

.hours-title h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.hours-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.hours-day {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px dashed #ddd;
}

.hours-day:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: var(--dark-color);
}

.time {
    color: var(--primary-color);
    font-weight: 500;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 700;
}

/* Footer Review Section */
.rate-title {
    margin-top: 0;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Removed - using unified styling above */

.rating-stars {
    color: var(--primary-color);
    font-size: 1rem;
    display: flex;
    gap: 3px;
}

/* Contact Page Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
        text-align: center;
        padding: 0 0.75rem;
    }
    
    .contact-welcome-section {
        position: static;
        text-align: center;
        max-width: none;
        width: 100%;
        margin: 0 auto 2rem auto;
        padding: 0;
        justify-self: center;
    }
    
    .contact-forms-section {
        width: 100%;
        max-width: none;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-self: center;
    }
    
    .contact-tabs {
        justify-content: center;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .contact-form {
        width: 100%;
        max-width: none;
        margin: 0 auto;
    }
}
@media (max-width: 992px) {
    .social-contact-links {
        flex-direction: column;
    }
    
    .social-contact-btn {
        padding: 0.8rem;
        gap: 10px;
        width: 100%;
        flex: none;
    }
}
@media (max-width: 768px) {
    .contact-container {
        margin: 0 0.5rem;
        justify-items: center;
        padding: 0;
    }
    
    .contact-welcome-section {
        position: static;
        text-align: center;
        max-width: none;
        width: 100%;
        margin: 0 auto 1.5rem auto;
        padding: 0;
        justify-self: center;
    }
    
    .contact-forms-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: none;
        justify-self: center;
    }
    
    .contact-tabs {
        justify-content: center;
        width: 100%;
        padding: 0;
    }
    
    .contact-form {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 1.5rem 1rem;
    }
    
    .welcome-card {
        padding: 2rem 1rem;
        margin: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .welcome-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .welcome-message {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .welcome-highlights li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        justify-content: center;
        text-align: left;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .coffee-quote {
        font-size: 0.9rem;
        font-style: italic;
        text-align: center;
        color: var(--secondary-color);
        margin-top: 1rem;
    }
    
    .qr-code img {
        width: 50px;
        height: 50px;
    }
    
    .social-contact-text strong {
        font-size: 0.9rem;
    }
    
    .social-contact-text span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .social-contact-btn {
        padding: 0.7rem;
        gap: 8px;
    }
    
    .qr-code img {
        width: 45px;
        height: 45px;
    }
    
    .social-contact-btn i {
        font-size: 1.3rem;
    }
    
    .story-section {
        padding: 2.5rem 0;
    }

    .story-images {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        height: auto;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .featured-image {
        grid-row: 1;
        grid-column: 1;
    }
    
    .main-story-image {
        height: 280px;
    }
    
    .supporting-images {
        grid-column: 1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .story-image-item {
        height: 80px;
    }
    
    /* Contact page mobile optimization for very small screens */
    .contact-container {
        margin: 0 0.25rem;
    }
    
    .contact-form {
        padding: 1.25rem 0.75rem;
    }
    
    .welcome-card {
        padding: 1.5rem 0.75rem;
    }
}

/* ===== INDEX PAGE STYLES ===== */

/* Video Background for Hero Section */
.video-hero {
    position: relative;
    overflow: hidden;
    background-image: none !important; /* Override any background image */
}

.video-hero:before {
    content: none !important; /* Remove any :before pseudo-elements that might interfere */
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
    z-index: 1;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: white; /* Ensure text is white for visibility */
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero .video-control {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.hero .video-control:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Intro Hero Image */
.intro-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Featured Menu Background Override */
.featured-menu {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./assets/gallery/461246505_3761755714042541_3478142822601419011_n.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.featured-menu h2, 
.featured-menu h3, 
.featured-menu p {
    color: white;
}

/* ===== MENU PAGE STYLES ===== */

/* Menu Hero */
.menu-hero {
    height: 41.85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./assets/hero/hero_menu.jpeg');
    background-size: cover;
    background-position: center;
}

.menu-section {
    padding-top: 1.25rem;
}
/* Menu Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    gap: 1rem;
    align-items: center;
}

.menu-download-btn {
    margin-left: 1rem;
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
}

@media (max-width: 768px) {
    .menu-download-btn {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        order: 10;
    }
}

.menu-tab {
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: var(--dark-color);
    cursor: pointer;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

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

/* Menu Categories */
.menu-category {
    display: none;
}

.menu-category.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.category-title {
    text-align: center;
    margin-bottom: 3rem;
}

.category-title h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Menu Items Layout */
.menu-items {
    column-count: 2;
    column-gap: 2rem;
}

.menu-item-card {
    padding-bottom: 0.75rem; 
    border-bottom: 1px solid #eee; 
    break-inside: avoid-column;
    margin-bottom: 0.75rem;
}

.menu-item-card:last-child {
    border-bottom: none; 
}

.menu-item-image {
    display: none; 
}

.menu-item-info {
    padding: 0.25rem 0; 
    flex-grow: 1;
}

.menu-item-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.15rem;
}

.menu-item-title h3 {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 600;
}

.menu-item-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    margin-left: 0.75rem;
}

.menu-item-desc {
    color: #555;
    font-size: 0.85rem;
    line-height: 1.3;
    margin-top: 0.15rem;
}

.menu-item-desc p {
    margin-bottom: 0.15rem;
}

.menu-item-desc p:last-child {
    margin-bottom: 0;
}

.menu-item-desc em {
    font-size: 0.8rem;
    color: #777;
    display: block;
    margin-top: 0.2rem;
}

/* Sub-section headings */
.menu-item-info > h3[style*="color: var(--primary-color)"], 
.menu-item-info > h4[style*="color: var(--secondary-color)"] {
    font-size: 1.2rem !important;
    margin-top: 1.2rem !important;
    margin-bottom: 0.6rem !important;
    padding-bottom: 0.2rem;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.menu-item-card:has(> .menu-item-info > h3[style*="color: var(--primary-color)"]),
.menu-item-card:has(> .menu-item-info > h4[style*="color: var(--secondary-color)"]) {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-featured {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* Full Menu Section */
.full-menu-section {
    text-align: center;
    margin-top: 4rem;
}

.menu-pdf {
    margin-top: 1rem;
    display: inline-block;
}

.menu-pdf i {
    margin-right: 0.5rem;
}

/* Menu Page Responsive Design */
@media (max-width: 992px) {
    .menu-items {
        column-count: 1;
    }
}

@media (max-width: 576px) {
    .menu-item-card {
        flex-direction: column;
    }
    
    .menu-item-image {
        width: 100%;
        height: 180px;
    }
    
    .menu-tab {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero */
.about-hero {
    height: 45vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/gallery/460958967_3759246740960105_1164957498280998579_n.jpg');
    background-size: cover;
    background-position: center;
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background-color: var(--light-color);
    color: var(--text-color);
}

.story-content h2 {
    color: var(--dark-color);
}

.story-section.with-bg-image {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/gallery/461086131_3759962887555157_5330846154773494756_n.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--light-text);
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000;
}

.story-section.with-bg-image .story-content h2 {
    color: var(--light-text);
}

/* About Us Home Section Styling */
.story-section.about-us-home {
    background: linear-gradient(135deg, #f5f1eb 0%, #e8dcc6 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.story-section.about-us-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/bg_our_values.jpeg') center/cover;
    opacity: 0.05;
    z-index: 0;
}

.story-section.about-us-home .container {
    position: relative;
    z-index: 1;
}

.story-section.about-us-home .story-container {
    min-height: 650px;
    align-items: flex-start;
    gap: 4rem;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-image {
    position: relative;
    z-index: 1;
}

.story-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.image-stack {
    position: relative;
    height: 450px;
}

.image-stack img:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.image-stack img:last-child {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    z-index: 2;
}

/* Story Images Layout */
.story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    max-width: 750px;
    height: 600px;
}

.featured-image {
    grid-row: 1 / 3;
    grid-column: 1;
    height: 600px;
}

.main-story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    object-position: center top;
}

.supporting-images {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-image-item {
    width: 100%;
    height: 184px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

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



/* About Page Responsive Design */
@media (max-width: 768px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-section {
        padding: 3rem 0;
    }

    .story-section.about-us-home .story-container {
        min-height: auto;
        gap: 2rem;
    }

    .image-stack {
        height: 400px;
        margin-bottom: 2rem;
    }

    .story-images {
        max-width: none;
        height: auto;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .story-image-item {
        height: 100px;
    }
}

@media (max-width: 640px) {
    .story-images {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        height: auto !important;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .featured-image {
        grid-row: 1;
        grid-column: 1;
    }
    
    .supporting-images {
        grid-column: 1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
}

/* ===== GALLERY PAGE STYLES ===== */

/* Gallery Hero */
.gallery-hero {
    height: 41.85vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/hero/here_gallery.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
}

.gallery-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.gallery-filter {
    padding: 0.7rem 1.5rem;
    background-color: transparent;
    color: var(--dark-color);
    cursor: pointer;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.gallery-filter.active, .gallery-filter:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    cursor: pointer;
    box-shadow: var(--box-shadow);
}

.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.5s ease;
}

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

.gallery-item-overlay i {
    color: var(--light-text);
    font-size: 2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1100;
    overflow: auto;
    padding: 50px 0;
}

.modal-content {
    display: block;
    margin: 0 auto;
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--light-text);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-caption {
    display: none;
    color: var(--light-text);
    text-align: center;
    margin-top: 1rem;
    font-size: 1.2rem;
    padding: 0 2rem;
}

.modal-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
}

.modal-nav-btn {
    color: var(--light-text);
    font-size: 2rem;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-nav-btn:hover {
    background-color: var(--primary-color);
}

.hide {
    display: none;
}

.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Gallery Page Responsive Design */
@media (max-width: 992px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .gallery-filter {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .modal-content {
        max-width: 95%;
    }
    
    .modal-nav {
        padding: 0 1rem;
    }
    
    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}




/* Menu Header and Tabs Container */
.menu-header-tabs-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 1rem 0 2rem;
}

.menu-header-section {
    flex: 0 0 auto;
}

.menu-tabs-section {
    flex: 1;
}

/* Menu Header Image */
.menu-header-image {
    width: 250px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .menu-header-tabs-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .menu-header-image {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .menu-header-tabs-container {
        margin: 0.5rem 0 1.5rem;
    }

    .menu-header-image {
        width: 250px;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f9f7f4 0%, #fff 100%);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.faq-section h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.faq-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    margin-bottom: 0.8rem;
    line-height: 1.8;
    color: #555;
}

.faq-answer ul {
    margin: 0.5rem 0 1rem 1.5rem;
    list-style: disc;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-section h2 {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }

    .faq-answer {
        padding: 0 1.2rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
} 