/* ALL YOUR EXISTING STYLES REMAIN UNCHANGED */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    overflow-x: hidden;
    background: #fefefe;
    line-height: 1.6;
}


/* ================= SUPER MINIMAL SEARCH OVERLAY ================= */
.search-overlay {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    display: none;
    z-index: 9999;
    padding: 30px 40px;
    overflow-y: auto;
}

.search-overlay.show {
    display: block;
}

/* SEARCH BOX - SEPARATE FROM POPUP */
.search-box-container {
    max-width: 600px;
    margin: 0 auto 7px;
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    padding: 3px;
    border-radius: 16px;
    /* border: 1px solid rgba(255, 255, 255, 0.2); */
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); */
}

.search-box i {
    color: #666;
    font-size: 18px;
}

.search-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    background: transparent;
    color: #222;
    font-weight: 500;
}

.search-box input::placeholder {
    color: #888;
    font-weight: 400;
}

/* POPUP CONTAINER */
.search-popup {
    max-width: 600px;
    margin: 0 auto 50px;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-height: none;
}

/* PRODUCTS SECTION */
.products-section {
    padding: 30px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    padding-bottom: 6px;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.05); */
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    letter-spacing: 0.3px;
}

.results-count {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* PRODUCT LIST */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
    margin-right: -10px;
}

/* Scrollbar styling for product list */
.product-list::-webkit-scrollbar {
    width: 4px;
}

.product-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

.product-list::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.product-list::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.15);
}

.product-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
    border-radius: 10px;
    transition: background-color 0.2s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.product-item:hover {
    background: rgba(0, 0, 0, 0.06);
    padding: 8px;
    transition: all .2s linear;
}

.product-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.product-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 3px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-category {
    font-size: 13px;
    color: #888;
    font-weight: 400;
}

.product-price {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    white-space: nowrap;
    flex-shrink: 0;
}

/* SEPARATOR LINE */
.section-separator {
    height: 1.2px;
    background: rgba(128, 128, 128, 0.2);
    flex-shrink: 0;
}

/* CATEGORIES SECTION */
.categories-section {
    padding: 30px;
}

/* CATEGORY GRID */
.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.category-item:hover {
    background: rgba(0, 0, 0, 0.06);
    padding: 8px;
    transition: all .2s linear;
}

.category-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.category-info {
    flex: 1;
    min-width: 0;
}

.category-name {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 3px;
}

.category-count {
    font-size: 13px;
    color: #888;
    font-weight: 400;
}

/* NO RESULTS STATE */
.no-results {
    text-align: center;
    color: #888;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.no-results i {
    font-size: 22px;
    margin-bottom: 12px;
    opacity: 0.4;
}

.no-results p {
    font-size: 15px;
    margin-bottom: 5px;
}

/* EMPTY STATE WHEN NO SEARCH */
.empty-search {
    text-align: center;
    color: #888;
    min-height:120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.empty-search i {
    font-size: 22px;
    margin-bottom: 12px;
    opacity: 0.4;
}

.empty-search p {
    font-size: 15px;
    margin-bottom: 5px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .search-overlay {
        padding: 20px;
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .search-box-container {
        margin-bottom: 15px;
    }
    
    .search-box {
        padding: 14px 16px;
    }
    
    .search-box input {
        font-size: 15px;
    }
    
    .products-section,
    .categories-section {
        padding: 24px;
    }
    
    .product-list {
        max-height: 350px;
    }
    
    .product-item,
    .category-item {
        padding: 10px;
        gap: 12px;
    }
    
    .product-image,
    .category-image {
        width: 45px;
        height: 45px;
    }
    
    .section-separator {
        margin: 0 24px;
    }
}

@media (max-width: 480px) {
    .search-overlay {
        padding: 16px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .results-count {
        align-self: flex-end;
        margin-top: -24px;
    }
    
    .product-name,
    .category-name {
        font-size: 14px;
    }
    
    .product-category,
    .category-count {
        font-size: 12px;
    }
    
    .product-list {
        max-height: 300px;
    }
}















/* NAVBAR */
.nav {
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 14px 0;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 88vw;
    margin: auto;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 40px;
    /* filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)); */
}

.nav-logo span {
    font-size: 34px;
    font-weight: 600;
    background: linear-gradient(45deg, #8b4513, #d49b52);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* LINKS */
.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #6b4f3a;
    transition: 0.3s;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover {
    color: #c37b3a;
}

/* .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #c19a5b;
            transition: width 0.3s ease;
        } */

.nav-links a:hover:after {
    width: 100%;
}

/* RIGHT SIDE (SEARCH + HAMBURGER) */
.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.search-btn {
    font-size: 20px;
    border: none;
    background: none;
    color: #6b4f3a;
    cursor: pointer;
    transition: 0.3s;
}

.search-btn:hover {
    color: #c37b3a;
}

.nav-hamburger {
    font-size: 26px;
    cursor: pointer;
    color: #6b4f3a;
    display: none;
}

/* MOBILE MENU */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        right: 0;
        width: 50%;
        background: #fffdfb;
        flex-direction: column;
        gap: 25px;
        padding: 25px 0;
        display: none;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-hamburger {
        display: block;
    }
}

/* hero section  */
.hero {
    margin-top: 70px;
    height: calc(100vh - 70px);
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 20px;
}



.slider-container {
    width: 97%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: auto;
}

.slider-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    width: 33.333%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.1) 100%);
}

.content-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
}

.text-content {
    max-width: 1200px;
    padding: 0 7%;
    color: white;
}

.tagline {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 24px;
    font-weight: 500;
    color: #d4af37;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    text-transform: uppercase;
}

.title {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
    max-width: 700px;
    letter-spacing: -0.5px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 550px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.4s;
    color: rgba(255, 255, 255, 0.8);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background:rgba(255, 255, 255, 0.8);
    color: black;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.7s ease;
}

.cta-button:hover:before {
    left: 100%;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.slide.active .tagline,
.slide.active .title,
.slide.active .description,
.slide.active .cta-button {
    opacity: 1;
    transform: translateY(0);
}

/* Updated Slider Controls - Corner arrows only */
.slider-controls {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    pointer-events: none;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    pointer-events: all;
    padding: 50px;
    z-index: 30;
}

.slider-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Decorative elements - more minimal */
.decorative-line {
    position: absolute;
    width: 1px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 5;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-indicator:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* Responsive styles for hero */
@media (max-width: 1200px) {
    .title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .title {
        font-size: 2rem;
    }

    .description {
        font-size: 1rem;
    }

    .slider-arrow {
        padding: 20px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }

    .title {
        font-size: 1.8rem;
    }

    .tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .description {
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 0.9rem;
    }

    .slider-arrow {
        padding: 15px;
        font-size: 1.3rem;
    }

    .decorative-line {
        display: none;
    }
}

@media (max-width: 576px) {
    .title {
        font-size: 1.6rem;
    }

    .tagline {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }

    .slider-arrow {
        padding: 10px;
        font-size: 1.2rem;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }
}






/* =========================================
           SWEETS SLIDER SECTION - ONLY TITLE CHANGED
           ========================================= */
.sweets-slider-section {
    padding: 100px 0px 60px;
    background: #fefefe;
    /* margin: 0 auto; */
    margin-left: auto;
    max-width: 96vw;
    position: relative;
}

.dessert-container {
    position: relative;
}

.title-controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.title-wrapper {
    max-width: 800px;
}


/* ONLY THIS SECTION WAS CHANGED - Title now matches About Us */
.dessert-main-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    background: linear-gradient(140deg, #222 20%, #ff4d0096 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    letter-spacing: -0.5px;
}

.controls-wrapper {
    display: flex;
    justify-content: flex-end;
    padding-right: 0;
}

.carousel-controls {
    display: flex;
    margin-top: auto;
    gap: 8px;
    margin-right: 60px;
    flex-shrink: 0;
}

.control-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(210deg, #aaa, #222, #222);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.control-btn:hover {
    /* background: linear-gradient(210deg, #222 ,#fff, #fff); */
    background: transparent;
    border: 1px solid black;
    color: #000;
}

.carousel-viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.dessert-item {
    flex: 0 0 calc(40% - 24px);
    height: 580px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
    border: none;
}


.item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}


.blur-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    /* Soft, premium blur */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(8px);

    /* Very subtle darkening (not visible as a layer) */
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(0, 0, 0, 0.30) 20%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0.06) 55%,
            rgba(0, 0, 0, 0.02) 65%,
            rgba(0, 0, 0, 0) 75%);

    /* Long, smooth blur blend */
    -webkit-mask-image: linear-gradient(to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.95) 15%,
            rgba(0, 0, 0, 0.85) 30%,
            rgba(0, 0, 0, 0.65) 45%,
            rgba(0, 0, 0, 0.40) 55%,
            rgba(0, 0, 0, 0.20) 65%,
            rgba(0, 0, 0, 0.05) 75%,
            rgba(0, 0, 0, 0) 85%);

    mask-image: linear-gradient(to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.95) 15%,
            rgba(0, 0, 0, 0.85) 30%,
            rgba(0, 0, 0, 0.65) 45%,
            rgba(0, 0, 0, 0.40) 55%,
            rgba(0, 0, 0, 0.20) 65%,
            rgba(0, 0, 0, 0.05) 75%,
            rgba(255, 0, 0, 0) 85%);
}




.item-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px 28px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dessert-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.recipe-details {
    font-size: 15px;
    color: #f0f0f0;
    line-height: 1.5;
    margin-bottom: 10px;
    max-width: 90%;
}

.action-button {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 34px;
    height: 34px;
    font-size: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding-bottom: 3px;
    padding-left: 1px;
}

/* When card is hovered, trigger action button hover state */
.dessert-item:hover .action-button {
    background: #eee;
    color: #222;
}


@media (max-width: 1024px) {
    .dessert-item {
        flex: 0 0 calc(50% - 24px);
        height: 500px;
    }

    .sweets-slider-section {
        padding: 80px 30px 40px;
    }

    /* Responsive title update */
    .dessert-main-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .dessert-item {
        flex: 0 0 calc(80% - 24px);
        height: 450px;
    }

    /* Responsive title update */
    .dessert-main-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .sweets-slider-section {
        padding: 60px 20px 30px;
    }
}

@media (max-width: 600px) {

    /* Responsive title update */
    .dessert-main-title {
        font-size: 32px;
    }

    .overview-text {
        font-size: 12px;
    }

    .dessert-item {
        height: 400px;
    }

    .dessert-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {

    /* Responsive title update */
    .dessert-main-title {
        font-size: 30px;
    }

    .dessert-item {
        flex: 0 0 calc(85% - 24px);
        height: 380px;
    }
}

/* SSS-Tier About Us Section - UNCHANGED */
.about-us-section {
    min-height: 100vh;
    width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

/* Header section with title and subtitle */
.header-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.title-container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.main-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    background: linear-gradient(140deg, #222 20%, #ff4d0096 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    letter-spacing: -0.5px;
}

.subtitle-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding-top: 10px;
}

.subtitle {
    font-size: 20px;
    font-weight: 550;
    letter-spacing: -.5px;
    line-height: 1.4;
    color: #222;
}

/* Main image section for desktop */
.image-container {
    width: 100%;
    height: 560px;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: block;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-image.active {
    opacity: 1;
}

/* Timeline section below image for desktop */
.timeline-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
    margin-left: 0;
}

.timeline-item {
    flex: 1;
    min-width: 200px;
    min-height: 250px;
    padding-top: 24px;
    position: relative;
    cursor: pointer;
    transition: all 0.5s ease;
    opacity: 0.6;
    display: flex;
    flex-direction: column;
}

.timeline-item.active {
    opacity: 1;
}

.timeline-item:hover {
    opacity: 1;
}

.timeline-title {
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #111;
}

.timeline-desc {
    font-weight: 300;
    font-size: 16px;
    color: #111;
    flex-grow: 1;
}

/* Default timeline bar (gray background) */
.timeline-default-bar {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background-color: #eee;
    border-radius: 2px;
    width: 100%;
}

/* Animated timeline bar (gold fill) */
.timeline-fill-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 2px;
    background: rgb(255, 84, 84);
    transition: width 3s linear;
    border-radius: 2px;
}

/* Mobile Grid Layout for 768px and below */
@media (max-width: 768px) {
    .about-us-section {
        padding: 30px 20px;
    }

    .main-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .title-container {
        min-width: 100%;
    }

    .subtitle {
        font-size: 16px;
    }

    /* Hide the large image container on mobile */
    .image-container {
        display: none;
    }

    /* Transform timeline container into a grid */
    .timeline-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 20px;
    }

    /* Style timeline items as mobile cards */
    .timeline-item {
        min-height: auto;
        padding: 0;
        opacity: 1;
        cursor: default;
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .timeline-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    /* Hide timeline bars on mobile */
    .timeline-default-bar,
    .timeline-fill-bar {
        display: none;
    }

    /* Add mobile image to each timeline item */
    .timeline-item::before {
        content: '';
        display: block;
        width: 100%;
        height: 200px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        margin-bottom: 20px;
    }

    /* Assign specific images to each timeline item */
    .timeline-item[data-index="0"]::before {
        background-image: url('https://images.unsplash.com/photo-1563729784474-d77dbb933a9e?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    }

    .timeline-item[data-index="1"]::before {
        background-image: url('https://images.unsplash.com/photo-1586444248902-2f64eddc13df?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    }

    .timeline-item[data-index="2"]::before {
        background-image: url('https://images.unsplash.com/photo-1603532648955-039310d9ed75?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');
    }

    /* Style content for mobile */
    .timeline-content {
        padding: 0 20px 25px 20px;
    }

    .timeline-title {
        font-size: 22px;
        margin-bottom: 15px;
        color: #222;
    }

    .timeline-desc {
        font-size: 15px;
        line-height: 1.7;
        color: #444;
    }

    .header-container {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 992px) {
    .header-container {
        flex-direction: column;
        gap: 30px;
    }

    .image-container {
        height: 400px;
    }

    .main-title {
        font-size: 42px;
    }

    .timeline-container {
        gap: 20px;
    }

    .timeline-item {
        min-width: 250px;
        padding-top: 24px;
    }
}

/* Smaller mobile devices */
@media (max-width: 480px) {
    .main-title {
        font-size: 30px;
    }

    .timeline-title {
        font-size: 20px;
    }

    .timeline-item::before {
        height: 180px;
    }

    .timeline-content {
        padding: 0 15px 20px 15px;
    }
}

/* =========================================
           WHY PEOPLE LOVE US SECTION - ADDED HERE
           ========================================= */
.why-love-us-section {
    padding: 40px 40px;
    background: #fefefe;
    position: relative;
}

.why-love-us-section .container {
    max-width: 100vw;
    margin: 0 auto;
}

/* Header - Matching About Us Section */
.why-love-us-section .header-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.why-love-us-section .title-container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.why-love-us-section .main-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    background: linear-gradient(140deg, #222 20%, #ff4d0096 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    letter-spacing: -0.5px;
}

.why-love-us-section .subtitle-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding-top: 10px;
}

.why-love-us-section .subtitle {
    font-size: 20px;
    font-weight: 550;
    letter-spacing: -.5px;
    line-height: 1.4;
    color: #222;
}

/* Icons and Descriptions Row */
.icons-description-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.icon-item {
    text-align: center;
    padding: 0 15px;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B0000;
    font-size: 32px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.icon-item:hover .icon-wrapper {
    transform: translateY(-2px);
    scale: 0.95;
    transition: all .2s linear;
    color: #fff;
    background: linear-gradient(60deg, #8b0000, #8b0000, #fff);
}

.icon-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.3px;
}

.icon-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    font-weight: 400;
}

/* 4 Images in a Row with White Dividers */
.four-images-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    position: relative;
    gap: 2px;
    background-color: white;
}

.single-image {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Create white dividers between images */
.single-image:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    width: 2px;
    height: 100%;
    background-color: white;
    z-index: 2;
}

/* Responsive Design for Why Love Us Section */
@media (max-width: 1100px) {
    .why-love-us-section {
        padding: 60px 30px;
    }

    .four-images-row {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .why-love-us-section .header-container {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }

    .why-love-us-section .main-title {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .why-love-us-section .subtitle {
        font-size: 18px;
    }

    .icons-description-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
        margin-bottom: 50px;
    }

    .four-images-row {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        height: 500px;
    }

    /* Adjust white dividers for 2x2 grid */
    .single-image:nth-child(1)::after,
    .single-image:nth-child(2)::after {
        content: '';
        position: absolute;
        top: 0;
        right: -1px;
        width: 2px;
        height: 100%;
        background-color: white;
        z-index: 2;
    }

    .single-image:nth-child(1)::before,
    .single-image:nth-child(2)::before {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: white;
        z-index: 2;
    }
}

@media (max-width: 768px) {
    .why-love-us-section {
        padding: 50px 20px;
    }

    .why-love-us-section .main-title {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .why-love-us-section .subtitle {
        font-size: 16px;
    }

    .icons-description-row {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }

    .icon-item {
        max-width: 350px;
        margin: 0 auto;
    }

    .four-images-row {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        height: 600px;
    }

    /* Remove all vertical dividers, keep only horizontal */
    .single-image::after {
        display: none;
    }

    .single-image:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: white;
        z-index: 2;
    }

    .single-image::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .why-love-us-section .main-title {
        font-size: 32px;
    }

    .icon-title {
        font-size: 1.2rem;
    }

    .icon-desc {
        font-size: 0.9rem;
    }

    .four-images-row {
        height: 500px;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* =========================================
           SHOP BY CATEGORIES SECTION - ADDED HERE
           ========================================= */
.shop-categories {
    padding: 40px 40px;
    max-width: 100vw;
    margin: 0 auto;
}

/* Section Header - Left Aligned */
.shop-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 70px;
}

.shop-title-container {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.shop-overview {
    font-size: 13px;
    font-weight: 500;
    color: #8B0000;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.shop-main-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    background: linear-gradient(140deg, #222 20%, #ff4d0096 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    letter-spacing: -0.5px;
}

.shop-subtitle-container {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding-top: 10px;
}

.shop-subtitle {
    font-size: 20px;
    font-weight: 550;
    letter-spacing: -.5px;
    line-height: 1.4;
    color: #222;
}

/* Elegant Category Grid - 5 Columns */
.elegant-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

/* Elegant Card - Clean Design */
.elegant-card {
    position: relative;
    height: 380px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
}

/* Image takes full card */
.elegant-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.elegant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}



/* Category Name - Always visible */
.elegant-name {
    position: absolute;
    bottom: 30px;
    left: 25px;
    right: 25px;
    z-index: 3;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-name-main {
    font-size: 22px;
    font-weight: 700;
    color: white;
    font-family: 'Cormorant Garamond', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.3px;
}

/* Category Count - Hidden initially, appears with animation */
.category-count {
    position: absolute;
    bottom: -10px;
    left: 25px;
    z-index: 3;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Explore Button - Hidden initially */
.explore-button {
    position: absolute;
    bottom: -60px;
    left: 25px;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.explore-text {
    color: white;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.explore-arrow {
    color: white;
    font-size: 12px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* Hover Effects */
.elegant-card:hover .elegant-image img {
    transform: scale(1.05);
}

.elegant-card:hover .blur-overlay {
    opacity: 1;
}

.elegant-card:hover .elegant-name {
    transform: translateY(-50px);
}

.elegant-card:hover .category-count {
    opacity: 1;
    transform: translateY(0);
    bottom: 40px;
}

.elegant-card:hover .explore-button {
    opacity: 1;
    transform: translateY(0);
    bottom: 20px;
}

.explore-button:hover .explore-text {
    text-decoration-color: white;
}

.explore-button:hover .explore-arrow {
    transform: rotate(45deg) translateX(3px) translateY(-3px);
}

/* Minimal View All */
.view-all-elegant {
    text-align: center;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.view-all-link-elegant {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #8B0000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    position: relative;
}

.view-all-link-elegant::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 24px;
    width: calc(100% - 48px);
    height: 1px;
    background: #8B0000;
    transform: scaleX(0.3);
    transition: transform 0.3s ease;
}

.view-all-link-elegant:hover::after {
    transform: scaleX(1);
}

.view-all-link-elegant i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.view-all-link-elegant:hover i {
    transform: translateX(4px);
}

/* Responsive Design for Shop Categories */
@media (max-width: 1400px) {
    .elegant-grid {
        gap: 18px;
    }

    .elegant-card {
        height: 350px;
    }
}

@media (max-width: 1200px) {
    .shop-categories {
        padding: 80px 30px;
    }

    .shop-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }

    .shop-title-container,
    .shop-subtitle-container {
        max-width: 100%;
    }

    .elegant-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .elegant-card {
        height: 320px;
    }
}

@media (max-width: 992px) {
    .shop-main-title {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .shop-subtitle {
        font-size: 18px;
    }

    .elegant-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .elegant-card {
        height: 300px;
    }

    .category-name-main {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .shop-categories {
        padding: 60px 20px;
    }

    .shop-main-title {
        font-size: 36px;
    }

    .elegant-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .elegant-card {
        height: 350px;
    }

    .elegant-name {
        left: 20px;
        right: 20px;
        bottom: 25px;
    }

    .category-count,
    .explore-button {
        left: 20px;
    }
}

@media (max-width: 480px) {
    .shop-main-title {
        font-size: 32px;
    }

    .shop-overview {
        font-size: 12px;
    }

    .shop-subtitle {
        font-size: 16px;
    }

    .elegant-card {
        height: 320px;
    }

    .category-name-main {
        font-size: 20px;
    }

    .explore-text {
        font-size: 13px;
    }
}

/* Smooth Animations for Shop Categories */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.elegant-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.elegant-card:nth-child(1) {
    animation-delay: 0.1s;
}

.elegant-card:nth-child(2) {
    animation-delay: 0.2s;
}

.elegant-card:nth-child(3) {
    animation-delay: 0.3s;
}

.elegant-card:nth-child(4) {
    animation-delay: 0.4s;
}

.elegant-card:nth-child(5) {
    animation-delay: 0.5s;
}

/* Testimonial section - UPDATED TITLE */
.testimonial-wrapper {
    padding: 120px 40px;
    max-width: 100vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.left-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.left-section .small-title {
    color: #8B0000;
    font-size: 14px;
    opacity: 0.6;
}

/* UPDATED: Testimonial Title Styling - Matching About Us */
.testimonial-wrapper .left-section .main-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    background: linear-gradient(140deg, #222 20%, #ff4d0096 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    letter-spacing: -0.5px;
}

/* Remove the old testimonial h2 styles */
.testimonial-wrapper .left-section h2 {
    font-size: 38px;
    line-height: 1.3;
    font-weight: 600;
    margin: 0;
}

/* Custom Scrollbar Structure */
.scrollbar-area {
    display: flex;
    gap: 30px;
    height: 260px;
}

.custom-scrollbar {
    width: 1px;
    background: #f1f1f1;
    position: relative;
    flex-shrink: 0;
}

.custom-scrollbar .thumb {
    position: absolute;
    width: 100%;
    background: #111;
    border-radius: 1px;
    transition: background-color 0.2s;
    cursor: pointer;
}

.custom-scrollbar .thumb:hover {
    background: #444;
}

/* Hide default scrollbar completely */
.right-section {
    height: 260px;
    overflow-y: scroll;
    flex: 1;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.right-section::-webkit-scrollbar {
    display: none;
}

.testimonials-inner {
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding-right: 20px;
}

.testimonial {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
}

.testimonial:last-child {
    border-bottom: none;
}

.t-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.t-header img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.t-header .name {
    font-size: 17px;
    font-weight: 600;
}

.rating {
    margin-left: auto;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #111;
}

.rating span.star {
    color: #f5c300;
    font-size: 18px;
}

.desc {
    font-size: 15px;
    opacity: 0.75;
    line-height: 1.5;
}

/* Responsive Media Queries */

/* Tablet */
@media (max-width: 1024px) {
    .testimonial-wrapper {
        gap: 60px;
        padding: 0 40px;
    }

    .testimonial-wrapper .left-section .main-title {
        font-size: 42px;
    }

    .scrollbar-area {
        height: 280px;
    }
}

/* Large Mobile */
@media (max-width: 768px) {
    .testimonial-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: 80px auto;
        padding: 0 30px;
    }

    .testimonial-wrapper .left-section .main-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .scrollbar-area {
        height: 320px;
        gap: 20px;
    }

    .testimonials-inner {
        gap: 30px;
        padding-right: 15px;
    }

    .testimonial {
        padding-bottom: 20px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .testimonial-wrapper {
        margin: 60px auto;
        padding: 0 20px;
        gap: 30px;
    }

    .testimonial-wrapper .left-section .main-title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .left-section .small-title {
        font-size: 13px;
    }

    .scrollbar-area {
        height: 350px;
        gap: 15px;
    }

    .custom-scrollbar {
        width: 0.5px;
    }

    .testimonials-inner {
        gap: 25px;
        padding-right: 10px;
    }

    .t-header {
        gap: 12px;
    }

    .t-header img {
        width: 36px;
        height: 36px;
    }

    .t-header .name {
        font-size: 16px;
    }

    .rating {
        font-size: 14px;
    }

    .rating span.star {
        font-size: 16px;
    }

    .desc {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .testimonial-wrapper {
        margin: 40px auto;
        padding: 0 16px;
    }

    .testimonial-wrapper .left-section .main-title {
        font-size: 30px;
        line-height: 1.4;
    }

    .scrollbar-area {
        height: 380px;
    }

    .testimonial {
        gap: 8px;
    }

    .testimonials-inner {
        gap: 20px;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .scrollbar-area {
        height: 400px;
    }

    .t-header {
        flex-wrap: wrap;
        gap: 10px;
    }

    .rating {
        margin-left: 0;
        width: 100%;
        justify-content: flex-start;
    }

    .desc {
        font-size: 13.5px;
    }
}

/* Landscape Mode */
@media (max-height: 500px) and (orientation: landscape) {
    .testimonial-wrapper {
        margin: 40px auto;
    }

    .scrollbar-area {
        height: 200px;
    }
}

/* Print */
@media print {
    .scrollbar-area {
        height: auto;
        overflow: visible;
    }

    .right-section {
        height: auto;
        overflow: visible;
    }

    .custom-scrollbar {
        display: none;
    }
}

/* Minimal FAQ Section - UPDATED TITLE */
.minimal-faq {
    max-width: 100vw;
    width: 100%;
    padding: 0px 40px;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    position: relative;
}

/* Decorative Lines */
/* .faq-container::before {
    content: '';
    position: absolute;
    left: 35%;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, rgba(139, 0, 0, 0.2), transparent);
} */

/* Left Column - Elegant Typography */
.faq-left {
    padding-right: 60px;
}

.faq-header {
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.faq-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8B0000;
    margin-bottom: 20px;
    opacity: 0.8;
}

/* UPDATED: FAQ Title Styling - Matching About Us */
.faq-left .main-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 40px;
    background: linear-gradient(140deg, #222 20%, #ff4d0096 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    letter-spacing: -0.5px;
}

.faq-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    max-width: 300px;
}

/* Feature List */
.feature-list {
    margin-top: 50px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.feature-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-icon {
    width: 18px;
    height: 18px;
    color: #8B0000;
    margin-top: 3px;
    opacity: 0.8;
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c1810;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Right Column - Elegant Accordion */
.faq-right {
    padding-left: 60px;
}

.accordion-container {
    position: relative;
}

.accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    transition: border-color 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(139, 0, 0, 0.3);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}

.accordion-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 1px;
    background: #8B0000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.accordion-item:hover .accordion-header::before {
    opacity: 1;
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    padding-left: 20px;
}

.question-mark {
    width: 6px;
    height: 6px;
    background: #8B0000;
    border-radius: 50%;
    opacity: 0.6;
}

.accordion-title h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c1810;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.accordion-item:hover .accordion-title h3 {
    color: #8B0000;
}

.accordion-toggle {
    color: #8B0000;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.4;
    min-width: 20px;
    text-align: center;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
    opacity: 1;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-answer {
    padding: 0 0 25px;
    padding-left: 65px;
}

.accordion-answer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    position: relative;
}

.accordion-answer p::before {
    content: '';
    position: absolute;
    left: -25px;
    top: 10px;
    width: 8px;
    height: 1px;
    background: #8B0000;
    opacity: 0.5;
}

/* Contact CTA */
.contact-minimal {
    margin-top: 40px;
    text-align: center;
    position: relative;
}

.contact-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: #8B0000;
}

.contact-text {
    font-size: 0.95rem;
    color: #666;
    margin: 25px 0 15px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8B0000;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 8px 16px;
    border: 1px solid rgba(139, 0, 0, 0.2);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(139, 0, 0, 0.05);
    border-color: rgba(139, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .faq-container {
        gap: 60px;
    }

    .faq-container::before {
        left: 33%;
    }
}

@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-container::before {
        display: none;
    }

    .faq-left {
        padding-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-bottom: 40px;
    }

    .faq-right {
        padding-left: 0;
    }

    .faq-left .main-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .minimal-faq {
        margin: 80px auto;
        padding: 0 15px;
    }

    .faq-left .main-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .accordion-header {
        padding: 20px 0;
    }

    .accordion-answer {
        padding-left: 50px;
    }

    .accordion-title h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-left .main-title {
        font-size: 32px;
    }

    .faq-subtitle {
        font-size: 0.95rem;
    }

    .accordion-header {
        padding: 18px 0;
    }

    .accordion-answer {
        padding-left: 40px;
    }

    .accordion-answer p {
        font-size: 0.9rem;
    }

    .question-mark {
        display: none;
    }

    .accordion-title {
        padding-left: 0;
    }
}

/* Section Footer */
.section-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.decoration-line {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    max-width: 100px;
}

.footer-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #8B0000;
    font-style: italic;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Footer - UNCHANGED */
.footer {
    background-color: #000000;
    padding: 40px 20px 20px;
    color: #ffffff;
    max-width: 94vw;
    border-radius: 15px;
    margin: 80px auto 0;
    position: relative;
    top: -5px;
}



.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
    margin-bottom: 20px;
}

.footer-section img {
    width: 100px;
}

.footer-title img {
    width: 220px;
    filter: drop-shadow(0 2px 4px rgba(170, 170, 170, 0.2));
    height: auto;
}

.footer-description {
    color: #cccccc;
    line-height: 1.7;
    font-size: 15px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.subscription {
    text-align: right;
}

.subscription h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 600;
}

.subscribe-form {
    display: flex;
    justify-content: flex-end;
}

.email-input {
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 15px;
    background-color: #1a1a1a;
    color: #ffffff;
    width: 220px;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    background-color: #222;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
}

.email-input::placeholder {
    color: #999;
}

.subscribe-btn {
    background-color: #ffffff;
    color: #000;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #ffed4e;
}

/* Footer Separator Line */
.footer-separator {
    height: 1px;
    background-color: #333;
    margin: 15px 0;
}

/* Footer Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #1a1a1a;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-icon.facebook:hover {
    background-color: #1877F2;
}

.social-icon.linkedin:hover {
    background-color: #0077B5;
}

.social-icon.twitter:hover {
    background-color: #1DA1F2;
}

.social-icon.youtube:hover {
    background-color: #FF0000;
}

.copyright {
    color: #aaaaaa;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 900px) {
    .footer-main {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        width: 100%;
        text-align: center;
        margin-bottom: 25px;
    }

    .subscription {
        text-align: center;
    }

    .subscribe-form {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .social-links {
        order: 2;
    }

    .copyright {
        order: 1;
    }
}

@media (max-width: 480px) {
    .subscribe-form {
        flex-direction: column;
    }

    .email-input {
        width: 100%;
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .subscribe-btn {
        border-radius: 4px;
    }

    .social-links {
        gap: 10px;
    }

    .social-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}