/* Updated: November 10, 2025 - Enhanced slide content sizing */
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: white; /* Set background to black */
    color: black; /* Set default text color to white for contrast */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* Navigation Bar Styles */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    display: block;
    text-decoration: none;
}

.nav-logo img {
    height: 50px;
    width: auto;
    max-width: 200px;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

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

.nav-item {
    margin-left: 30px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #8B6914;
    color: white;
}

/* Mobile Menu Toggle (hidden on desktop) */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-item {
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .nav-link {
        display: block;
        padding: 20px;
        font-size: 18px;
    }

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Add padding to body to account for fixed navbar */
body {
    padding-top: 70px;
}

/* Carousel Styles */
.carousel-section {
    width: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 700px; /* Significantly increased height for much more content space */
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.7) contrast(1.1) saturate(1.2);
    transition: transform 0.8s ease;
}

/* Special handling for portrait images */
.carousel-slide:nth-child(3) img {
    object-fit: contain;
    object-position: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Alternative: If you prefer to show more of portrait images for all slides */
@media screen and (max-width: 768px) {
    .carousel-slide img {
        object-fit: contain;
        object-position: center;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    }
}

.carousel-slide:hover img {
    transform: scale(1.02);
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.6) 100%
    );
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.15) 0%,
        rgba(255,255,255,0.05) 100%
    );
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 30px 25px !important;
    border-radius: 20px;
    max-width: 900px !important;
    width: 95% !important;
    margin: 0 auto !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.8s ease 0.3s forwards;
    max-height: 85vh !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 52px !important;
    margin-bottom: 20px !important;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    letter-spacing: 2px;
    line-height: 1.1 !important;
    color: #ffffff;
    font-weight: 400;
}

.slide-content p {
    font-size: 18px !important;
    margin-bottom: 20px !important;
    line-height: 1.5 !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    font-weight: 300;
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
}

.slide-content ul {
    text-align: left;
    display: inline-block;
    margin: 15px 0 !important;
    padding-left: 20px;
}

.slide-content ul li {
    font-size: 16px !important;
    margin-bottom: 6px !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    color: #f0f0f0;
    line-height: 1.4;
}

.slide-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-top: 20px;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
    position: relative;
    overflow: hidden;
}

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

.slide-btn:hover::before {
    left: 100%;
}

.slide-btn:hover {
    background: linear-gradient(135deg, #e8b987 0%, #d4a574 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(212, 165, 116, 0.4);
    border-color: rgba(255,255,255,0.3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    border: none;
    font-size: 28px;
    padding: 20px 25px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    color: #333;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.carousel-btn:hover {
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 100%);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    color: #8B6914;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

.indicator.active {
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

/* Mobile Carousel Styles */
@media screen and (max-width: 768px) {
    .carousel-wrapper {
        height: 600px; /* Increased height for mobile to accommodate more content */
    }
    
    .slide-content {
        padding: 25px 20px;
        margin: 0 10px;
        max-width: 95%;
        width: 95%;
        border-radius: 15px;
        max-height: 85vh;
        overflow-y: auto;
    }
    
    .slide-content h2 {
        font-size: 32px;
        margin-bottom: 18px;
        line-height: 1.1;
    }
    
    .slide-content p {
        font-size: 15px;
        margin-bottom: 18px;
        line-height: 1.5;
        max-width: 100%;
    }
    
    .slide-content ul {
        margin: 15px 0;
        padding-left: 15px;
    }
    
    .slide-content ul li {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .slide-btn {
        padding: 15px 30px;
        font-size: 13px;
        margin-top: 15px;
    }
    
    .carousel-btn {
        padding: 15px 18px;
        font-size: 22px;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .carousel-indicators {
        bottom: 20px;
        gap: 12px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
}

/* Extra small mobile screens */
@media screen and (max-width: 480px) {
    .carousel-wrapper {
        height: 550px;
    }
    
    .slide-content {
        padding: 20px 15px;
        margin: 0 8px;
        max-width: 96%;
        width: 96%;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .slide-content h2 {
        font-size: 26px;
        margin-bottom: 15px;
        line-height: 1.2;
    }
    
    .slide-content p {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .slide-content ul li {
        font-size: 13px;
        margin-bottom: 4px;
    }
    
    .slide-btn {
        padding: 12px 20px;
        font-size: 11px;
        margin-top: 12px;
    }
}

/* Staggered Links Section */
.staggered-links-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.staggered-links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23000" opacity="0.02"/><circle cx="80" cy="80" r="1" fill="%23000" opacity="0.02"/><circle cx="40" cy="60" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.links-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.link-card {
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    position: relative;
}

.link-card-left {
    transform: translateY(-30px);
}

.link-card-right {
    transform: translateY(30px);
}

.staggered-link {
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.1),
        0 4px 8px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 165, 116, 0.1);
    position: relative;
    overflow: hidden;
}

.link-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.link-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    filter: brightness(0.8) saturate(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.3) 100%
    );
    transition: opacity 0.4s ease;
}

.staggered-link:hover .link-image img {
    transform: scale(1.05);
    filter: brightness(0.9) saturate(1.2);
}

.staggered-link:hover .image-overlay {
    opacity: 0.7;
}

.staggered-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.6s ease;
}

.staggered-link:hover::before {
    left: 100%;
}

.staggered-link:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15),
        0 8px 16px rgba(0,0,0,0.1);
    border-color: rgba(212, 165, 116, 0.3);
}

.link-content {
    position: relative;
    z-index: 2;
    padding: 30px 35px 35px;
}

.link-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    color: #333;
    margin-bottom: 12px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.staggered-link:hover .link-content h3 {
    color: #8B6914;
}

.link-content p {
    font-size: 15px;
    color: #404040;
    line-height: 1.6;
    margin-bottom: 18px;
    transition: color 0.3s ease;
}

.staggered-link:hover .link-content p {
    color: #3a3a3a;
}

.link-arrow {
    font-size: 24px;
    color: #8B6914;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s ease;
}

.staggered-link:hover .link-arrow {
    transform: translateX(8px);
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .staggered-links-section {
        padding: 60px 20px;
    }
    
    .links-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .link-card-left,
    .link-card-right {
        transform: translateY(0);
    }
    
    .link-card-left {
        transform: translateX(-20px);
    }
    
    .link-card-right {
        transform: translateX(20px);
    }
    
    .link-image {
        height: 200px;
    }
    
    .link-content {
        padding: 25px 30px 30px;
    }
    
    .link-content h3 {
        font-size: 24px;
    }
    
    .link-content p {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .link-card-left,
    .link-card-right {
        transform: translateX(0);
    }
    
    .link-card {
        min-width: 280px;
    }
    
    .link-image {
        height: 180px;
    }
    
    .link-content {
        padding: 20px 25px 25px;
    }
    
    .link-content h3 {
        font-size: 22px;
    }
    
    .link-content p {
        font-size: 13px;
    }
}

/* Active Navigation Link */
.nav-link.active {
    background-color: #8B6914;
    color: white;
    border-radius: 5px;
}

/* About Page Styles */
.about-hero-section {
    width: 100%;
    position: relative;
    margin-top: 0;
}

.about-hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    height: 400px;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6) contrast(1.1) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.6) 100%
    );
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 64px;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    letter-spacing: 3px;
    animation: slideUp 0.8s ease 0.2s both;
}

.hero-content p {
    font-size: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 300;
    animation: slideUp 0.8s ease 0.4s both;
}

/* About Content Section */
.about-content-section {
    padding: 80px 20px;
    background: white;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.content-text h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #404040;
    margin-bottom: 25px;
}

.content-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.content-image img {
    width: 100%;
    height: 500px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s ease;
}

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

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 20px 20px;
    color: white;
}

.image-caption p {
    margin: 0;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.values-container h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    color: #333;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #404040;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
    background: white;
}

.team-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.team-container h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    color: #333;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 40px;
}

/* Single team member centered layout */
.team-grid.team-single {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 40px auto 0 auto;
}

.team-member {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.member-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(212, 165, 116, 0.3) 100%);
}

.member-info {
    padding: 30px 25px;
}

.member-info h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.member-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #404040;
}

/* Call to Action Section */
.about-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

.cta-btn {
    display: inline-block;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-btn.primary {
    background: white;
    color: #8B6914;
    border-color: white;
}

.cta-btn.primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #8B6914;
    transform: translateY(-2px);
}

/* Mobile Responsive for About Page */
@media screen and (max-width: 768px) {
    .about-hero-container {
        height: 300px;
        border-radius: 0;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-text h2,
    .values-container h2,
    .team-container h2,
    .cta-content h2 {
        font-size: 36px;
    }
    
    .content-image {
        order: -1;
    }
    
    .content-image img {
        height: 300px;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 80%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .about-content-section,
    .values-section,
    .team-section,
    .about-cta-section {
        padding: 50px 15px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .content-text h2,
    .values-container h2,
    .team-container h2,
    .cta-content h2 {
        font-size: 28px;
    }
    
    .value-card,
    .member-info {
        padding: 25px 20px;
    }
}

/* Contact Page Styles */
.contact-hero-section {
    width: 100%;
    position: relative;
    margin-top: 0;
}

.contact-hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    height: 350px;
}

.contact-hero-container .hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.contact-hero-container .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6) contrast(1.1) saturate(1.2);
}

.contact-hero-container .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.6) 100%
    );
}

.contact-hero-container .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.contact-hero-container .hero-content h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 56px;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    letter-spacing: 3px;
    animation: slideUp 0.8s ease 0.2s both;
}

.contact-hero-container .hero-content p {
    font-size: 18px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 300;
    animation: slideUp 0.8s ease 0.4s both;
}

/* Contact Information Section */
.contact-info-section {
    padding: 80px 20px;
    background: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.business-info h2,
.form-card h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 42px;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    background: white;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(212, 165, 116, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.info-icon {
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.info-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.info-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #404040;
    margin: 0;
}

.phone-link,
.email-link {
    color: #8B6914;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
    color: #c19660;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.day {
    font-weight: 500;
    color: #333;
}

.time {
    color: #404040;
    font-size: 14px;
}

/* Social Media Section */
.social-section {
    margin-top: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    text-align: center;
}

.social-section h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    color: #8B6914;
}

.social-link img {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    object-fit: contain;
}

/* Extra specific rule to override any conflicting styles */
.social-section .social-links .social-link img {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    object-fit: contain !important;
    display: inline-block !important;
}

/* Contact Form */
.form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.form-card p {
    font-size: 16px;
    color: #404040;
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-row:has(textarea) {
    grid-template-columns: 1fr;
}

.form-row:first-child {
    grid-template-columns: 1fr;
}

.form-row:nth-child(4) {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Form Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    font-size: 14px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.form-message li {
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B6914;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b987 0%, #d4a574 100%);
}

.form-note {
    font-size: 12px;
    color: #505050;
    margin-top: 15px;
    font-style: italic;
}

/* Additional Info Section */
.additional-info-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.additional-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.info-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.item-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.info-item h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    color: #333;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.info-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #404040;
}

/* Mobile Responsive for Contact Page */
@media screen and (max-width: 768px) {
    .contact-hero-container {
        height: 250px;
        border-radius: 0;
    }
    
    .contact-hero-container .hero-content h1 {
        font-size: 42px;
    }
    
    .contact-hero-container .hero-content p {
        font-size: 16px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-card {
        padding: 30px 25px;
    }
    
    .business-info h2,
    .form-card h2 {
        font-size: 32px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .contact-info-section,
    .additional-info-section {
        padding: 50px 15px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .form-card {
        padding: 25px 20px;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .hour-item {
        font-size: 14px;
    }
}

footer {
    text-align: center;
}

/* Menu Page Styles */
.menu-hero-section {
    width: 100%;
    position: relative;
    margin-top: 0;
}

.menu-hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    height: 350px;
}

.menu-hero-container .hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.menu-hero-container .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.6) contrast(1.1) saturate(1.2);
}

.menu-hero-container .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.6) 100%
    );
}

.menu-hero-container .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.menu-hero-container .hero-content h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 56px;
    margin-bottom: 15px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    letter-spacing: 3px;
    animation: slideUp 0.8s ease 0.2s both;
}

.menu-hero-container .hero-content p {
    font-size: 18px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 300;
    animation: slideUp 0.8s ease 0.4s both;
}

/* Cart Summary Section */
.cart-summary-section {
    position: sticky;
    top: 70px;
    z-index: 999;
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

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

.cart-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: white;
}

#cart-count {
    font-weight: 500;
    font-size: 16px;
}

#cart-total {
    font-weight: 600;
    font-size: 18px;
    margin-left: auto;
    margin-right: 20px;
}

.view-cart-btn {
    background: white;
    color: #8B6914;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-right: 10px;
}

.view-cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    background: #f8f9fa;
}

.checkout-btn {
    background: white;
    color: #8B6914;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

/* Menu Categories */
.menu-category-section {
    padding: 60px 20px;
    background: white;
}

.menu-category-section:nth-child(even) {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.category-header h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.category-header p {
    font-size: 18px;
    color: #404040;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.menu-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.1);
    position: relative;
}

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

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

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
    filter: brightness(0.85) saturate(1.1);
}

.menu-item:hover .item-image img {
    transform: scale(1.05);
    filter: brightness(0.9) saturate(1.2);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.3) 100%
    );
    transition: opacity 0.4s ease;
}

.menu-item:hover .image-overlay {
    opacity: 0.7;
}

.item-content {
    padding: 25px;
}

.item-content h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.menu-item:hover .item-content h3 {
    color: #8B6914;
}

.item-description {
    font-size: 14px;
    color: #404040;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 44px; /* Ensures consistent card heights */
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.item-price {
    font-size: 22px;
    font-weight: 600;
    color: #8B6914;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b987 0%, #d4a574 100%);
}

.add-to-cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

/* Order Information Section */
.order-info-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.order-info-container {
    max-width: 1000px;
    margin: 0 auto;
}

.order-info-container .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.order-info-container .info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.order-info-container .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.order-info-container .info-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.order-info-container .info-card h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    color: #333;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.order-info-container .info-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #404040;
}

.order-info-container .info-card a {
    color: #8B6914;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.order-info-container .info-card a:hover {
    color: #c19660;
}

/* Mobile Responsive for Menu Page */
@media screen and (max-width: 768px) {
    .menu-hero-container {
        height: 250px;
        border-radius: 0;
    }
    
    .menu-hero-container .hero-content h1 {
        font-size: 42px;
    }
    
    .menu-hero-container .hero-content p {
        font-size: 16px;
    }
    
    .cart-summary {
        flex-wrap: wrap;
        gap: 10px;
        text-align: center;
    }
    
    #cart-total {
        margin: 0;
    }
    
    .view-cart-btn,
    .checkout-btn {
        width: calc(50% - 5px);
        margin: 0;
        padding: 10px;
        font-size: 12px;
    }
    
    .category-header h2 {
        font-size: 36px;
    }
    
    .category-header p {
        font-size: 16px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .item-content {
        padding: 20px;
    }
    
    .item-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .add-to-cart-btn {
        width: 100%;
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .menu-category-section {
        padding: 40px 15px;
    }
    
    .order-info-section {
        padding: 40px 15px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-header h2 {
        font-size: 28px;
    }
    
    .item-description {
        min-height: auto;
    }
}

/* Checkout Page Styles */
.checkout-hero-section {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

.checkout-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.checkout-hero-container .hero-content h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1.1;
}

.checkout-hero-container .hero-content p {
    font-size: 18px;
    opacity: 0.9;
    line-height: 1.4;
    margin-bottom: 0;
}

.checkout-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Empty Cart Styles */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.empty-cart-content p {
    font-size: 18px;
    color: #404040;
    margin-bottom: 30px;
}

.menu-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b987 0%, #d4a574 100%);
}

/* Checkout Grid */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* Order Summary */
.summary-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(212, 165, 116, 0.1);
    position: sticky;
    top: 100px;
}

.summary-card h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    letter-spacing: 1px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.cart-items {
    margin-bottom: 25px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.item-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 600;
}

.item-info p {
    font-size: 14px;
    color: #404040;
    margin: 0;
}

.item-total {
    font-weight: 600;
    color: #8B6914;
    font-size: 16px;
}

.order-totals {
    border-top: 2px solid #f0f0f0;
    padding-top: 20px;
}

.subtotal-row,
.tax-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 15px;
    color: #404040;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    padding-top: 15px;
    border-top: 2px solid #d4a574;
    margin-top: 15px;
}

/* Customer Information & Payment */
.customer-payment-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.customer-info-card,
.payment-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.customer-info-card h2,
.payment-card h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    letter-spacing: 1px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.payment-card p {
    font-size: 14px;
    color: #404040;
    margin-bottom: 25px;
    font-style: italic;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row:has(textarea),
.form-row:has(input[type="email"]),
.form-row:has(input[type="datetime-local"]) {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B6914;
    background: white;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.6;
}

/* Square Payment Form Styles */
#card-container {
    margin-bottom: 25px;
    padding: 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background: white;
}

#payment-status-container {
    margin-bottom: 20px;
}

/* Payment Button */
.pay-now-btn {
    width: 100%;
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.pay-now-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b987 0%, #d4a574 100%);
}

.pay-now-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Processing and Error Messages */
.processing-message {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 15px;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #d4a574;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

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

.processing-message p {
    color: #404040;
    margin: 0;
    font-weight: 500;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    border: 1px solid #f5c6cb;
}

.error-message p {
    margin: 0;
    font-weight: 500;
}

/* Mobile Responsive for Checkout */
@media screen and (max-width: 768px) {
    .checkout-hero-container .hero-content h1 {
        font-size: 36px;
    }
    
    .checkout-hero-container .hero-content p {
        font-size: 16px;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .summary-card {
        position: static;
        order: 2;
    }
    
    .customer-payment-section {
        order: 1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .customer-info-card,
    .payment-card,
    .summary-card {
        padding: 25px 20px;
    }
    
    .customer-info-card h2,
    .payment-card h2,
    .summary-card h2 {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .checkout-section {
        padding: 40px 15px;
    }
    
    .empty-cart-content h2 {
        font-size: 28px;
    }
    
    .empty-cart-content p {
        font-size: 16px;
    }
    
    .customer-info-card,
    .payment-card,
    .summary-card {
        padding: 20px 15px;
    }
}

/* Order Success Page Styles */
.success-hero-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    text-align: center;
}

.success-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.success-hero-container .hero-content h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.success-hero-container .hero-content p {
    font-size: 20px;
    opacity: 0.9;
}

.confirmation-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.confirmation-container {
    max-width: 800px;
    margin: 0 auto;
}

.confirmation-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.confirmation-card h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

.order-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 35px;
    border-left: 4px solid #28a745;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row .label {
    font-weight: 500;
    color: #404040;
}

.info-row .value {
    font-weight: 600;
    color: #333;
}

.order-number {
    font-family: 'Courier New', monospace;
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 14px;
}

.confirmation-message {
    margin-bottom: 35px;
}

.confirmation-message h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.step-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.step-content h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-size: 16px;
}

.step-content p {
    color: #404040;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.pickup-reminder {
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    text-align: center;
}

.pickup-reminder h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.location-info p {
    margin-bottom: 5px;
    line-height: 1.6;
}

.location-info a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.location-info a:hover {
    opacity: 0.8;
}

.important-notes {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 35px;
}

.important-notes h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.important-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.important-notes li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #856404;
    font-size: 14px;
    line-height: 1.6;
}

.important-notes li:before {
    content: '•';
    color: #ffc107;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
    text-align: center;
}

.action-btn.primary {
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b987 0%, #d4a574 100%);
}

.action-btn.secondary {
    background: transparent;
    color: #8B6914;
    border-color: #8B6914;
}

.action-btn.secondary:hover {
    background: #d4a574;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

/* Mobile Responsive for Success Page */
@media screen and (max-width: 768px) {
    .success-hero-container .hero-content h1 {
        font-size: 36px;
    }
    
    .success-hero-container .hero-content p {
        font-size: 18px;
    }
    
    .success-icon {
        font-size: 60px;
    }
    
    .confirmation-card {
        padding: 30px 25px;
    }
    
    .confirmation-card h2 {
        font-size: 28px;
    }
    
    .info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .steps-list {
        gap: 15px;
    }
    
    .step {
        padding: 15px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .success-hero-section {
        padding: 40px 15px;
    }
    
    .confirmation-section {
        padding: 60px 15px;
    }
    
    .confirmation-card {
        padding: 25px 20px;
    }
    
    .pickup-reminder,
    .important-notes {
        padding: 20px 15px;
    }
    
    .step {
        gap: 10px;
        padding: 12px;
    }
    
    .step-icon {
        font-size: 20px;
        width: 30px;
    }
}

/* Cart Page Styles */
.cart-hero-section {
    padding: 40px 20px;
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    color: white;
    text-align: center;
}

.cart-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cart-hero-container .hero-content h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.cart-hero-container .hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.cart-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
}

.cart-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Empty Cart Styles */
.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.empty-cart-content h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.empty-cart-content p {
    font-size: 18px;
    color: #404040;
    margin-bottom: 30px;
}

.menu-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b987 0%, #d4a574 100%);
}

/* Cart Content Grid */
.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Cart Items Section */
.cart-items-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.cart-items-card h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    letter-spacing: 1px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #fafbfc;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.cart-item .item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.item-details h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    color: #333;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.item-price {
    font-size: 14px;
    color: #404040;
    margin: 0;
}

.item-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 5px;
}

.qty-btn {
    background: #d4a574;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #c19660;
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.95);
}

.quantity {
    font-weight: 600;
    color: #333;
    min-width: 30px;
    text-align: center;
    font-size: 16px;
}

.item-total {
    font-weight: 600;
    color: #8B6914;
    font-size: 18px;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

.remove-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 10px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.remove-btn:hover {
    opacity: 1;
    background: #c82333;
    transform: scale(1.05);
}

.remove-btn span {
    display: block;
}

/* Cart Summary Card */
.cart-summary-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(212, 165, 116, 0.1);
    position: sticky;
    top: 100px;
}

.cart-summary-card h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    color: #333;
    margin-bottom: 25px;
    letter-spacing: 1px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.summary-details {
    margin-bottom: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 16px;
    color: #404040;
}

.summary-row.total-row {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    padding-top: 15px;
    border-top: 2px solid #d4a574;
    margin-top: 15px;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.continue-shopping-btn {
    display: block;
    text-align: center;
    background: transparent;
    color: #8B6914;
    border: 2px solid #d4a574;
    padding: 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.continue-shopping-btn:hover {
    background: #d4a574;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.cart-actions .checkout-btn {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    color: white;
    padding: 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
}

.cart-actions .checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8b987 0%, #d4a574 100%);
}

/* Mobile Responsive for Cart Page */
@media screen and (max-width: 768px) {
    .cart-hero-container .hero-content h1 {
        font-size: 36px;
    }
    
    .cart-hero-container .hero-content p {
        font-size: 16px;
    }
    
    .cart-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-summary-card {
        position: static;
        order: 2;
    }
    
    .cart-items-section {
        order: 1;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        text-align: center;
    }
    
    .cart-item .item-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .item-controls {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .cart-items-card,
    .cart-summary-card {
        padding: 25px 20px;
    }
    
    .cart-items-card h2,
    .cart-summary-card h2 {
        font-size: 24px;
    }
}

@media screen and (max-width: 480px) {
    .cart-section {
        padding: 40px 15px;
    }
    
    .empty-cart-content h2 {
        font-size: 28px;
    }
    
    .empty-cart-content p {
        font-size: 16px;
    }
    
    .empty-cart-icon {
        font-size: 60px;
    }
    
    .cart-item {
        padding: 15px;
    }
    
    .quantity-controls {
        gap: 8px;
    }
    
    .qty-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .cart-items-card,
    .cart-summary-card {
        padding: 20px 15px;
    }
}

/* Fallback Payment Styles */
.fallback-payment {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.fallback-content h3 {
    color: #856404;
    margin-bottom: 15px;
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
}

.fallback-content p {
    color: #856404;
    margin-bottom: 15px;
    font-size: 16px;
}

.phone-number {
    background: #28a745;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.fallback-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
    display: inline-block;
}

.fallback-benefits li {
    color: #28a745;
    margin: 8px 0;
    font-weight: 500;
    font-size: 14px;
}

/* Order Success Highlight Step */
.step.highlight {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 8px;
    padding: 20px;
}

.step.highlight .step-content h4 {
    color: #856404;
}

.step.highlight .step-content p {
    color: #856404;
}

@media (max-width: 768px) {
    .fallback-payment {
        padding: 15px;
        margin: 15px 0;
    }
    
    .fallback-content h3 {
        font-size: 20px;
    }
    
    .phone-number {
        font-size: 20px;
        padding: 12px;
    }
}

/* =======================================
   FAQ PAGE STYLES
   ======================================= */

.faq-hero-section {
    background: linear-gradient(135deg, #d4a574 0%, #c19660 100%);
    padding: 140px 0 80px;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

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

.faq-hero-container .hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.faq-hero-container .hero-content p {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 0;
    line-height: 1.4;
}

.faq-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid #d4a574;
}

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

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin: 0;
    padding-right: 20px;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #d4a574;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #fafbfc;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 25px 30px;
}

.faq-answer p {
    color: #404040;
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-answer li {
    color: #404040;
    line-height: 1.6;
    margin-bottom: 8px;
}

.faq-answer a {
    color: #8B6914;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* Mobile Responsive for FAQ */
@media screen and (max-width: 768px) {
    .faq-hero-section {
        padding: 120px 0 60px;
    }
    
    .faq-hero-container .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .faq-hero-container .hero-content p {
        font-size: 1rem;
    }
    
    .faq-content-section {
        padding: 50px 0;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-category h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 20px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 20px;
    }
}