/* =========================================================
   CREAM CORNER - COMPLETE CSS (360 REMOVED)
   ========================================================= */

/* =========================================================
   01. ROOT VARIABLES
   ========================================================= */

:root {
    --cc-brown: #55473E;
    --cc-brown-dark: #2F241F;
    --cc-brown-deep: #211914;
    --cc-gold: #FFC600;
    --cc-gold-dark: #D99E00;
    --cc-gold-light: #FFE8A3;
    --cc-orange: #FF7E00;
    --cc-orange-dark: #E96500;
    --cc-cream: #FFF9F0;
    --cc-cream-dark: #F7EBDD;
    --cc-white: #FFFFFF;
    --cc-text: #3B302A;
    --cc-muted: #766A62;
    --cc-border: rgba(85, 71, 62, 0.12);
    --cc-shadow-sm: 0 8px 25px rgba(47, 36, 31, 0.08);
    --cc-shadow-md: 0 15px 45px rgba(47, 36, 31, 0.13);
    --cc-shadow-lg: 0 25px 70px rgba(47, 36, 31, 0.18);
    --cc-radius-sm: 12px;
    --cc-radius-md: 20px;
    --cc-radius-lg: 30px;
    --cc-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================
   02. GLOBAL RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: var(--cc-text);
    background: var(--cc-cream);
    line-height: 1.7;
    max-width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--cc-transition);
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

::selection {
    background: var(--cc-gold);
    color: var(--cc-brown-dark);
}

/* =========================================================
   03. TYPOGRAPHY
   ========================================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display", serif;
    color: var(--cc-brown-dark);
    line-height: 1.2;
}

p {
    color: var(--cc-muted);
}

.text-brown {
    color: var(--cc-brown) !important;
}

.text-gold {
    color: var(--cc-gold) !important;
}

.bg-brown {
    background: var(--cc-brown) !important;
}

.bg-cream {
    background: var(--cc-cream) !important;
}

.bg-gold {
    background: var(--cc-gold) !important;
    color: var(--cc-brown-dark) !important;
}

/* =========================================================
   04. CONTAINER
   ========================================================= */

.container {
    max-width: 1240px;
}

section {
    position: relative;
    overflow: hidden;
}

/* =========================================================
   05. BUTTONS
   ========================================================= */

.btn {
    border-radius: 999px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-gold {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    border: none;
    color: var(--cc-brown-dark) !important;
    box-shadow: 0 10px 25px rgba(255, 126, 0, 0.25);
}

.btn-gold::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn-gold:hover::before {
    left: 140%;
}

.btn-gold:hover {
    background: #ffffff !important; /* ← White Background */
    color: var(--cc-brown-dark) !important; /* Text Dark Brown */
    box-shadow: 0 15px 35px rgba(255, 126, 0, 0.35);
    transform: translateY(-3px);
}

.btn-brown {
    background: var(--cc-brown);
    border: 2px solid var(--cc-brown);
    color: white !important;
    box-shadow: var(--cc-shadow-sm);
}

.btn-brown:hover {
    background: var(--cc-brown-dark);
    border-color: var(--cc-brown-dark);
    color: white !important;
    box-shadow: var(--cc-shadow-md);
}

.btn-outline-brown {
    color: var(--cc-brown);
    border: 2px solid var(--cc-brown);
    background: transparent;
}

.btn-outline-brown:hover {
    background: var(--cc-brown);
    color: white !important;
    border-color: var(--cc-brown);
}

/* =============================================
   WHATSAPP FLOATING BUTTON - CREAM CORNER
============================================= */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 10px;
    background: #25D366;
    color: #fff;
    width: 53px;
    height: 53px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Pulse Animation */
@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7);
    }
}

/* =============================================
   RESPONSIVE - WHATSAPP BUTTON
============================================= */

/* Tablet */
@media (max-width: 991px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

/* Extra Small */
@media (max-width: 400px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 23px;
        bottom: 15px;
        right: 12px;
    }
}

/* =============================================
   SCROLL TO TOP + BACK BUTTON - CREAM CORNER
   (Complete Responsive: Desktop, Laptop, Tablet, Mobile)
   ============================================= */

/* ----- SCROLL TO TOP BUTTON ----- */
.scroll-top {
    position: fixed;
    bottom: 90px; /* ✅ WhatsApp button (60px) se upar, taaki overlap na ho */
    right: 8px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange)); /* Gold Gradient */
    border: none;
    border-radius: 50%;
    color: var(--cc-brown-dark);
    font-size: 22px;
    cursor: pointer;
    z-index: 9998; /* WhatsApp (9999) se neeche, taaki overlap na kare */
    box-shadow: 0 8px 25px rgba(255, 126, 0, 0.4);
    transition: all 0.3s ease;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
}

.scroll-top.show {
    display: flex;
}

.scroll-top:hover {
    background: #ffffff; /* ✅ Hover par White */
    color: var(--cc-brown-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 126, 0, 0.3);
}

/* ----- BACK BUTTON ----- */
.back-button {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: var(--cc-brown); /* Brown */
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(47, 36, 31, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-button:hover {
    background: #ffffff; /* ✅ Hover par White */
    color: var(--cc-brown); /* Text Brown */
    transform: translateX(-5px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */

/* LAPTOP (max-width: 1200px) */
@media (max-width: 1200px) {
    .scroll-top {
        bottom: 85px;
        right: 14px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .back-button {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Laptop-only alignment tweak: keep scroll button in line with WhatsApp on the right */
@media (min-width: 992px) and (max-width: 1199px) {
    .scroll-top {
        right: 14px;
    }
}

/* TABLET (max-width: 991px) */
@media (max-width: 991px) {
    .scroll-top {
        bottom: 80px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .back-button {
        bottom: 20px;
        left: 20px;
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}

/* MOBILE (max-width: 767px) */
@media (max-width: 767px) {
    .scroll-top {
        bottom: 65px; /* ✅ Mobile par WhatsApp button upar shift */
        right: 15px;
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
    
    .back-button {
        bottom: 15px;
        left: 15px;
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
}

/* SMALL MOBILE (max-width: 575px) */
@media (max-width: 575px) {
    .scroll-top {
        bottom: 60px;
        right: 12px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
    
    .back-button {
        bottom: 12px;
        left: 12px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* EXTRA SMALL MOBILE (max-width: 400px) */
@media (max-width: 400px) {
    .scroll-top {
        bottom: 80px;
        right: 10px;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .back-button {
        bottom: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}

/* VERY EXTRA SMALL MOBILE (max-width: 320px) */
@media (max-width: 320px) {
    .scroll-top {
        bottom: 50px;
        right: 8px;
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .back-button {
        bottom: 8px;
        left: 8px;
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* =============================================
   TOP BANNER STRIP - FIXED (CREAM CORNER)
============================================= */

.top-banner-strip {
    background: linear-gradient(135deg, #2d1f16 0%, #4a3428 100%); /* Cream Corner Dark Brown */
    color: #fff;
    padding: 8px 12px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    z-index: 99999 !important;
    border-bottom: 2px solid #f59e0b; /* Golden border */
    min-height: 44px;
    display: flex !important;
    align-items: center;
    width: 100%;
}

/* Navbar position - Banner ke neeche shift */
nav.navbar.fixed-top {
    top: 44px !important;
    z-index: 9998 !important;
}


/* ---------------- CONTENT LAYOUT ---------------- */

.top-banner-content {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 20px;
    width: 100%;
}

/* Text */
.top-banner-content .banner-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 13px;
    flex: 0 1 auto;
    min-width: 0;
    white-space: nowrap;
    max-width: 65%;
}

/* Highlighted text (Cream Corner & Designer Cakes) */
.top-banner-content .banner-text strong {
    color: #f59e0b; /* Golden highlight */
    font-weight: 700;
}

.top-banner-content .banner-text i {
    color: #f59e0b;
    font-size: 14px;
    flex-shrink: 0;
}

.top-banner-content .banner-text span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

/* Contact Info */
.top-banner-content .banner-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    flex-shrink: 0;
    flex-wrap: nowrap;
}

.top-banner-content .banner-info a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    font-size: 12px;
}

.top-banner-content .banner-info a:hover {
    color: #f59e0b;
}

.top-banner-content .banner-info a i {
    color: #f59e0b;
}

.top-banner-content .banner-info .sep {
    color: rgba(255, 255, 255, 0.3);
}

/* =============================================
   RESPONSIVE - CLEAN & CONSISTENT
============================================= */

/* Tablet */
@media (max-width: 991px) {
    
    nav.navbar.fixed-top {
        top: 42px !important;
    }
    .top-banner-strip {
        min-height: 42px;
        padding: 6px 10px;
    }
    .top-banner-content .banner-text {
        font-size: 12px;
        max-width: 60%;
    }
    .top-banner-content .banner-info {
        gap: 8px;
        font-size: 11px;
    }
    .top-banner-content .banner-info a {
        font-size: 11px;
    }
}

/* Mobile Landscape */
@media (max-width: 767px) {
    
    nav.navbar.fixed-top {
        top: 42px !important;
    }
    .top-banner-strip {
        min-height: 42px;
        padding: 6px 10px;
    }
    .top-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 4px;
        justify-content: center;
    }
    .top-banner-content .banner-text {
        font-size: 11px;
        justify-content: center;
        width: 100%;
        white-space: normal;
        max-width: 100%;
        flex: 0 0 100%;
    }
    .top-banner-content .banner-text span {
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
    }
    .top-banner-content .banner-text i {
        font-size: 12px;
    }
    .top-banner-content .banner-info {
        font-size: 11px;
        gap: 8px;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }
    .top-banner-content .banner-info a {
        font-size: 11px;
    }
    .top-banner-content .banner-info .sep {
        display: inline-block;
    }
}

/* Mobile Portrait */
@media (max-width: 575px) {
    
    nav.navbar.fixed-top {
        top: 40px !important;
    }
    .top-banner-strip {
        min-height: 42px;
        padding: 5px 8px;
    }
    .top-banner-content {
        gap: 3px;
    }
    .top-banner-content .banner-text {
        font-size: 10px;
        gap: 4px;
        line-height: 1.3;
    }
    .top-banner-content .banner-text i {
        font-size: 11px;
    }
    .top-banner-content .banner-info {
        font-size: 10px;
        gap: 8px;
    }
    .top-banner-content .banner-info a {
        font-size: 10px;
        gap: 3px;
    }
    .top-banner-content .banner-info .sep {
        display: inline-block;
    }
}

/* Extra Small */
@media (max-width: 400px) {
    
    nav.navbar.fixed-top {
        top: 38px !important;
    }
    .top-banner-strip {
        min-height: 38px;
        padding: 4px 6px;
    }
    .top-banner-content .banner-text {
        font-size: 9px;
    }
    .top-banner-content .banner-text i {
        font-size: 10px;
    }
    .top-banner-content .banner-info {
        font-size: 9px;
        gap: 4px;
    }
    .top-banner-content .banner-info a {
        font-size: 9px;
    }
    .top-banner-content .banner-info .sep {
        display: none;
    }
}


/* =========================================================
   CREAM CORNER - FINAL RESPONSIVE NAVBAR
   CLEAN ALIGNMENT + MOBILE FIX
========================================================= */


/* =========================================================
   TOP ANNOUNCEMENT / TAGLINE BAR
========================================================= */

.top-bar,
.announcement-bar,
.top-header {
    background: #3b2a21 !important;
    border-bottom: 2px solid var(--cc-gold);
    padding: 8px 20px !important;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.top-bar p,
.announcement-bar p,
.top-header p {
    margin: 0;
    line-height: 1.4;
}

/* Normal tagline text */
.top-bar,
.announcement-bar,
.top-header {
    color: #f8f1e8;
}

/* Highlight words matching Cream Corner logo */
.top-bar strong,
.announcement-bar strong,
.top-header strong,
.top-bar .highlight,
.announcement-bar .highlight,
.top-header .highlight {
    color: #ff9d00 !important;
    font-weight: 700;
}

/* =========================================================
   NAVBAR - FULLY RESPONSIVE (DESKTOP / TABLET / MOBILE)
   Breakpoints:
     Desktop : 992px and above
     Tablet  : 768px - 991px
     Mobile  : below 768px
     Small   : below 480px
   ========================================================= */


/* =========================================================
   BASE / DESKTOP NAVBAR (default - applies to all sizes,
   overridden below for smaller screens)
   ========================================================= */

.navbar {
    min-height: 80px !important;
    padding: 0 32px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    background: rgba(255, 249, 240, 0.98) !important;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(85, 71, 62, 0.08);

    box-shadow: 0 5px 25px rgba(47, 36, 31, 0.06);

    transition:
        background 0.35s ease,
        box-shadow 0.35s ease;

    z-index: 9999;
}

/* Scrolled Navbar */
.navbar.scrolled {
    background: rgba(255, 249, 240, 0.99) !important;
    box-shadow: 0 10px 35px rgba(47, 36, 31, 0.14);
}


/* ---------------- LOGO + BRAND ---------------- */

.navbar-brand {
    display: flex !important;
    align-items: center !important;
    gap: 14px;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1;
}

.navbar-brand img {
    width: 65px !important;
    height: 65px !important;
    object-fit: contain;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.navbar-brand span {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--cc-brown);
    letter-spacing: -0.3px;
    white-space: nowrap;
    display: flex !important;
    align-items: center !important;
    line-height: 1.2 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.navbar-brand {
        gap: 0px !important;
    }
/* ---------------- DESKTOP NAV LINKS ---------------- */

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar-nav .nav-link {
    position: relative;
    padding: 10px 14px !important;
    color: var(--cc-brown) !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.2px;
    white-space: nowrap;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--cc-orange) !important;
    transform: translateY(-2px);
}

/* Active underline */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--cc-gold), var(--cc-orange));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link.active {
    color: var(--cc-orange) !important;
    font-weight: 700;
}


/* ---------------- CALL LINK ---------------- */

.navbar-nav .call-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px !important;
    color: var(--cc-brown) !important;
    font-weight: 600;
    font-size: 13px;
    border-radius: 999px;
    border: 1.5px solid rgba(85, 71, 62, 0.12);
    transition: all 0.3s ease;
}

.navbar-nav .call-link::after {
    display: none;
}

.navbar-nav .call-link i {
    font-size: 14px;
    color: var(--cc-gold);
    transition: transform 0.3s ease;
}

.navbar-nav .call-link:hover {
    background: rgba(255, 198, 0, 0.08);
    border-color: var(--cc-gold);
    transform: translateY(-2px);
}

.navbar-nav .call-link:hover i {
    transform: scale(1.1) rotate(-10deg);
    color: var(--cc-orange);
}

.navbar-nav .call-number {
    font-weight: 600;
    font-size: 13px;
    color: var(--cc-brown);
}


/* ---------------- ORDER CTA BUTTON ---------------- */

.navbar-nav .nav-cta {
    display: none;
}


/* ---------------- NAVBAR TOGGLER (hamburger) ---------------- */

.navbar-toggler {
    width: 44px;
    height: 40px;
    padding: 0 !important;
    margin: 0 !important;
    display: none !important; /* hidden by default (desktop) */
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
    border: 1.8px solid rgba(85, 71, 62, 0.7) !important;
    border-radius: 10px !important;
    background: transparent !important;
    box-shadow: none !important;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.navbar-toggler-icon {
    width: 22px !important;
    height: 22px !important;
    display: block !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2355473E' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler:hover {
    background: rgba(255, 198, 0, 0.12) !important;
    border-color: var(--cc-orange) !important;
}

.navbar-toggler:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FF7E00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 198, 0, 0.25) !important;
}




/* =========================================================
   TABLET / SMALL LAPTOP  (max-width: 991px)
   ========================================================= */

@media (max-width: 991px) {

    .navbar {
        min-height: 82px !important;
        padding: 10px 24px !important;
    }

    .navbar-brand {
        gap: 0px !important;
    }

    .navbar-brand img {
        width: 60px !important;
        height: 60px !important;
    }

    .navbar-brand span {
        font-size: 24px !important;
    }

    /* Show hamburger toggle below 992px */
    .navbar-toggler {
        display: flex !important;
    }

    /* Collapsible mobile menu panel */
    .navbar-collapse {
        width: 100%;
        background: #fffaf3;
        margin-top: 12px !important;
        padding: 8px 15px 15px !important;
        border-radius: 15px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav {
        align-items: flex-start;
        gap: 0;
        padding: 0;
    }

    .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        padding: 13px 15px !important;
        font-size: 15px;
        border-bottom: 1px solid rgba(85, 71, 62, 0.06);
    }

    .navbar-nav .nav-link::after {
        left: 15px;
        right: auto;
        width: 35px;
        bottom: 8px;
    }

    .navbar-nav .call-link {
        width: 100%;
        padding: 13px 15px !important;
        border: none;
        border-radius: 0;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(85, 71, 62, 0.06);
    }

    .navbar-nav .call-number {
        font-size: 15px;
    }

    .navbar-nav .btn-gold {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: calc(100% - 30px);
        margin: 14px 15px 5px !important;
        padding: 12px 24px !important;
        font-size: 14px;
    }
}


/* =========================================================
   MOBILE  (max-width: 767px)
   ========================================================= */

@media (max-width: 767px) {

    .navbar {
        min-height: 68px !important;
        height: 68px !important;
        padding: 0 15px !important;
        margin: 0 !important;
        justify-content: center !important;
        position: relative !important;
    }

    .navbar .container,
    .navbar .container-fluid {
        width: 100% !important;
        height: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .navbar-brand {
        gap: 8px !important;
    }

    .navbar-brand img {
        width: 40px !important;
        height: 40px !important;
        max-height: 40px !important;
    }

    .navbar-brand span {
        font-size: 14px !important;
        white-space: nowrap !important;
    }

    .navbar-toggler {
        width: 36px !important;
        height: 34px !important;
        border: none !important;
        background: transparent !important;
    }

    .navbar-toggler-icon {
        width: 18px !important;
        height: 18px !important;
    }

    .navbar-collapse {
        width: 100% !important;
        margin-top: 8px !important;
        padding: 8px 10px 12px !important;
        background: #fffaf3 !important;
        border-radius: 14px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        z-index: 1050 !important;
    }

    .navbar-nav .nav-link {
        padding: 12px 14px !important;
        font-size: 14px !important;
    }
}


/* =========================================================
   SMALL MOBILE  (max-width: 575px)
   ========================================================= */

@media (max-width: 575px) {

    .navbar {
        min-height: 60px !important;
        height: 60px !important;
        padding: 9px 20px !important;
    }

    .navbar .container,
    .navbar .container-fluid {
        height: 60px !important;
        min-height: 60px !important;
    }

    .navbar-brand {
        gap: 8px !important;
    }

    .navbar-brand img {
        width: 38px !important;
        height: 38px !important;
        max-height: 38px !important;
    }

    .navbar-brand span {
        font-size: 14px !important;
    }

    .navbar-toggler {
        width: 34px !important;
        height: 32px !important;
    }

    .navbar-toggler-icon {
        width: 17px !important;
        height: 17px !important;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE  (max-width: 380px)
   ========================================================= */

@media (max-width: 380px) {

    .navbar {
        min-height: 70px !important;
        height: 70px !important;
        padding: 0 12px !important;
    }

    .navbar .container,
    .navbar .container-fluid {
        height: 72px !important;
        min-height: 72px !important;
    }

    .navbar-brand {
        gap: 0px !important;
    }

    .navbar-brand img {
        width: 40px !important;
        height: 40px !important;
        max-height: 40px !important;
        margin-top: 10px !important;
        
    }

    .navbar-brand span {
        font-size: 19px !important;
        margin-top: 10px !important;
    }

    .navbar-toggler {
        width: 34px !important;
        height: 32px !important;
         margin-top: 10px !important;
    }

    .navbar-toggler-icon {
        width: 22px !important;
        height: 22px !important;
    }
}

/* =============================================
   MEGA MENU - CREAM CORNER STYLE (FIXED)
   ============================================= */

/* ----- DROPDOWN TOGGLE - NO DEFAULT BS ARROW ----- */
.nav-link.dropdown-toggle::after {
    display: none !important;
}

/* ----- DROPDOWN ARROW (▼) ----- */
.nav-link.dropdown-toggle .dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    color: var(--cc-gold);
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-link.dropdown-toggle.show .dropdown-arrow {
    transform: rotate(180deg);
}

/* ----- DESKTOP MEGA MENU ----- */
.dropdown-menu-mega {
    width: 800px;
    padding: 25px 30px;
    border: 1px solid var(--cc-border);
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(47, 36, 31, 0.18);
    background: var(--cc-white);
    margin-top: 8px;
}

/* ----- DROPDOWN OPEN STATE (Bootstrap show class) ----- */
.dropdown-menu-mega.show {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

/* ----- MEGA MENU - LAPTOP (1200px - 1440px) ----- */
@media (min-width: 992px) and (max-width: 1439px) {
    .dropdown-menu-mega {
        width: 580px;
        left: -140px;
        padding: 20px 24px;
    }
}

/* ----- MEGA MENU HEADINGS ----- */
.dropdown-menu-mega h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--cc-orange);
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--cc-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ----- MEGA MENU ITEMS ----- */
.dropdown-menu-mega .dropdown-item {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    padding: 6px 0;
    color: var(--cc-text);
    transition: all 0.3s ease;
    border-radius: 6px;
    padding-left: 8px;
    background: transparent !important;
}

.dropdown-menu-mega .dropdown-item:hover {
    background: rgba(255, 198, 0, 0.1) !important;
    color: var(--cc-orange);
    padding-left: 16px;
}

.dropdown-menu-mega .dropdown-item i {
    margin-right: 6px;
    color: var(--cc-gold);
    font-size: 12px;
}

/* =============================================
   ✅ MOBILE / TABLET - COMPLETE FIX
   ============================================= */

@media (max-width: 991px) {

    /* ✅ Dropdown container mobile fix */
    .navbar .dropdown {
        position: relative !important;
    }

    /* ✅ Mega Menu - Hidden by default */
    .dropdown-menu-mega {
        position: static !important;
        display: none !important;
        width: 100% !important;
        min-width: 100% !important;
        padding: 16px 18px !important;
        margin-top: 6px !important;
        margin-bottom: 0 !important;
        border: 1px solid var(--cc-border) !important;
        border-radius: 14px !important;
        background: var(--cc-white) !important;
        box-shadow: 0 15px 50px rgba(47, 36, 31, 0.15) !important;
        max-height: 300px !important;
        overflow-y: auto !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
        float: none !important;
    }

    /* ✅ Show state - Mobile (FORCE SHOW) */
    .dropdown-menu-mega.show {
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
        max-height: 300px !important;
        overflow-y: auto !important;
    }

    /* ✅ Mobile grid layout */
    .dropdown-menu-mega .row {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0 8px !important;
        margin: 0 !important;
    }

    .dropdown-menu-mega .col-lg-3 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
    }

    .dropdown-menu-mega h6 {
        font-size: 12px !important;
        text-align: center !important;
        margin: 8px 0 4px !important;
        padding-bottom: 4px !important;
        border-bottom: 1px solid var(--cc-gold) !important;
    }

    .dropdown-menu-mega .dropdown-item {
        font-size: 12px !important;
        padding: 6px 8px !important;
        text-align: center !important;
        white-space: nowrap !important;
    }

    /* ✅ Dropdown toggle clickable fix */
    .navbar .dropdown-toggle {
        cursor: pointer !important;
        user-select: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }

    /* ✅ Arrow rotation on mobile */
    .navbar .dropdown-toggle.show .dropdown-arrow {
        transform: rotate(180deg);
        transition: transform 0.3s ease;
    }
}

/* ----- MOBILE (576px - 767px) ----- */
@media (max-width: 767px) {
    .dropdown-menu-mega {
        width: 100% !important;
        padding: 12px 14px !important;
        max-height: 250px !important;
    }
    
    .dropdown-menu-mega .row {
        gap: 0 5px !important;
    }
    
    .dropdown-menu-mega h6 {
        font-size: 11px !important;
        text-align: left !important;
    }
    
    .dropdown-menu-mega .dropdown-item {
        font-size: 11px !important;
        padding: 3px 0 !important;
        text-align: left !important;
    }
}

/* ----- SMALL MOBILE (below 400px) ----- */
@media (max-width: 400px) {
    .dropdown-menu-mega {
        width: 100% !important;
        padding: 10px 10px !important;
        max-height: 220px !important;
    }
    
    .dropdown-menu-mega .row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    
    .dropdown-menu-mega h6 {
        font-size: 11px !important;
        text-align: center !important;
        margin-top: 6px !important;
    }
    
    .dropdown-menu-mega .dropdown-item {
        font-size: 12px !important;
        padding: 3px 0 !important;
        text-align: center !important;
        white-space: normal !important;
    }
}

/* =============================================
   SCROLLBAR - MEGA MENU
   ============================================= */

.dropdown-menu-mega::-webkit-scrollbar {
    width: 4px;
}

.dropdown-menu-mega::-webkit-scrollbar-track {
    background: var(--cc-cream);
    border-radius: 4px;
}

.dropdown-menu-mega::-webkit-scrollbar-thumb {
    background: var(--cc-gold);
    border-radius: 4px;
}

.dropdown-menu-mega::-webkit-scrollbar-thumb:hover {
    background: var(--cc-orange);
}

/* =============================================
   NAVBAR - ACTIVE LINK
   ============================================= */

.navbar .nav-link.active {
    color: var(--cc-gold) !important;
    font-weight: 600;
}

.navbar .nav-link.active i {
    color: var(--cc-gold) !important;
}

/* =============================================
   NAVBAR - ORDER NOW BUTTON
   ============================================= */

.btn-gold {
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: var(--cc-brown-dark) !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 198, 0, 0.35);
    color: var(--cc-brown-dark) !important;
}

.btn-gold i {
    color: var(--cc-brown-dark);
}


/* =========================================================
   07. HERO SECTION - PERFECT CENTER & SPACING
   ========================================================= */

.hero-slider-section {
    position: relative;
    min-height: 720px;
    background: var(--cc-brown-dark);
    overflow: hidden;
}

#heroCarousel,
.carousel-inner,
.carousel-item {
    height: 720px;
}

.carousel-item {
    position: relative;
    overflow: hidden;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 7s ease;
}

.carousel-item.active .slide-bg {
    transform: scale(1);
}

.slide-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(33, 25, 20, 0.94) 0%, rgba(47, 36, 31, 0.78) 40%, rgba(47, 36, 31, 0.32) 72%, rgba(47, 36, 31, 0.08) 100%);
}

/* =========================================================
   SLIDE CONTENT
   ========================================================= */

.slide-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
}

.slide-content .row {
    width: 100%;
    align-items: center;
}

.slide-content .col-lg-7 {
    padding: 20px 0;
}

.slide-content .col-lg-5 {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-content h1 {
    max-width: 750px;
    margin-bottom: 20px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    color: #fff;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.slide-content h1 .text-gold {
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide-content p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.78) !important;
    font-size: 17px;
    line-height: 1.7;
}

.badge-slide {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.14);
    border: 1px solid rgba(255, 198, 0, 0.55);
    color: var(--cc-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.floating-cake {
    display: block;
    max-width: 100%;
    max-height: 520px;
    width: auto;
    height: auto;
    margin: auto;
    object-fit: contain;
    filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.30));
}

@keyframes cakeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(1deg); }
}

/* =========================================================
   CAROUSEL INDICATORS & CONTROLS
   ========================================================= */

.carousel-indicators {
    z-index: 10;
    bottom: 28px;
}

.carousel-indicators button {
    width: 32px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: #fff !important;
    transition: all 0.35s ease;
}

.carousel-indicators button.active {
    width: 65px;
    background: var(--cc-gold);
}

.carousel-control-prev,
.carousel-control-next {
    width: 7%;
    z-index: 10;
}

/* ----- SIMPLE BROWN ARROW (NO CIRCLE, VISIBLE FIX) ----- */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 48px;
    height: 48px;
    
    /* ✅ Background size ko 100% kar diya taaki arrow clear dikhe */
    background-size: 100% !important;
    background-position: center;
    background-repeat: no-repeat;
    
    /* ✅ Circle hata diya */
    border-radius: 0 !important;
    background-color: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    display: block !important;
}

/* Left Arrow (Logo Brown: #55473E) */
.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2355473E'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e") !important;
}

/* Right Arrow (Logo Brown: #55473E) */
.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2355473E'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

/* Hover Effect */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    transform: scale(1.1);
}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */
@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: flex !important;
        width: 10%;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 36px !important; /* Mobile par thoda bada kiya */
        height: 36px !important;
        background-size: 100% !important;
    }

    .carousel-indicators {
        bottom: 15px;
    }
    .carousel-indicators button {
        width: 20px;
        height: 3px;
        margin: 0 4px;
    }
    .carousel-indicators button.active {
        width: 35px;
    }
}

/* =========================================================
   SQUARE IMAGE LAYOUT FOR HERO
   ========================================================= */

.slide-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 10px;
}

.slide-image-box {
    position: relative;
    width: 95%;
    margin-left:10px;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(10px);
}

.slide-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.slide-image-box:hover img {
    transform: scale(1.05);
}

.slide-image-box::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 24px;
    border: 1.5px solid rgba(255, 198, 0, 0.15);
    pointer-events: none;
    z-index: 1;
}

.slide-image-box::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 198, 0, 0.08), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* =========================================================
   SQUARE IMAGE LAYOUT FOR HERO - RESPONSIVE 991px
   ========================================================= */

@media (max-width: 991px) {
    .slide-image-wrapper {
        max-width: 380px;
        padding: 8px;
    }

    .slide-image-box {
        border-radius: 16px;
        aspect-ratio: 1 / 1;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    .slide-image-box::before {
        inset: -6px;
        border-radius: 20px;
        border-width: 1.2px;
    }

    .slide-image-box::after {
        inset: -1px;
        border-radius: 18px;
    }

    .slide-image-box img {
        object-fit: cover;
    }

    .slide-image-box:hover img {
        transform: scale(1.03);
    }
}

/* =========================================================
   SQUARE IMAGE LAYOUT FOR HERO - RESPONSIVE 767px
   ========================================================= */

@media (max-width: 767px) {
    .slide-image-wrapper {
        max-width: 320px;
        padding: 6px;
    }

    .slide-image-box {
        border-radius: 14px;
        aspect-ratio: 1 / 1;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.20);
    }

    .slide-image-box::before {
        inset: -4px;
        border-radius: 18px;
        border-width: 1px;
    }

    .slide-image-box::after {
        inset: 0px;
        border-radius: 16px;
    }

    .slide-image-box img {
        object-fit: cover;
       
    }

    .slide-image-box:hover img {
        transform: scale(1.02);
    }
}

/* =========================================================
   SQUARE IMAGE LAYOUT FOR HERO - RESPONSIVE 575px
   ========================================================= */

@media (max-width: 575px) {
    .slide-image-wrapper {
        max-width: 280px;
        padding: 5px;
    }

    .slide-image-box {
        border-radius: 12px;
        aspect-ratio: 1 / 1;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .slide-image-box::before {
        inset: -3px;
        border-radius: 15px;
        border-width: 0.8px;
    }

    .slide-image-box::after {
        inset: 0px;
        border-radius: 14px;
    }

    .slide-image-box:hover img {
        transform: none;
    }
}

/* =========================================================
   SQUARE IMAGE LAYOUT FOR HERO - RESPONSIVE 380px
   ========================================================= */

@media (max-width: 380px) {
    .slide-image-wrapper {
        max-width: 240px;
        padding: 4px;
    }

    .slide-image-box {
        border-radius: 10px;
        aspect-ratio: 1 / 1;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
    }

    .slide-image-box::before {
        inset: -2px;
        border-radius: 12px;
        border-width: 0.5px;
    }

    .slide-image-box::after {
        inset: 0px;
        border-radius: 12px;
    }

    .slide-image-box:hover img {
        transform: none;
    }
}

/* =========================================================
   RESPONSIVE - MOBILE (CONTENT NICHE FIX)
   ========================================================= */

@media (max-width: 767px) {
    .hero-slider-section,
    #heroCarousel,
    .carousel-inner,
    .carousel-item {
        height: auto;
        min-height: 100vh;
    }

    .slide-bg::after {
        background: linear-gradient(180deg, rgba(33, 25, 20, 0.92), rgba(33, 25, 20, 0.75));
    }

    .slide-content {
        padding: 150px 20px 40px;       /* 120px → 140px (aur niche) */
        transform: translateY(0);
        align-items: center;
        justify-content: flex-start;    /* center → flex-start */
        min-height: 100vh;
        text-align: center;
    }

    .slide-content .row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }

    .slide-content .col-lg-7 {
        order: 1;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateY(-10px);
    }

    .slide-content .col-lg-5 {
        order: 2;
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    /* =========================================================
       BADGE - MOBILE
       ========================================================= */
    .badge-slide {
        font-size: 11px;
        padding: 8px 16px;
        margin-bottom: 15px;
        text-align: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* =========================================================
       HEADING - MOBILE
       ========================================================= */
    .slide-content h1 {
        font-size: 34px;
        margin-bottom: 15px;
        max-width: 100%;
        text-align: center;
        width: 100%;
        line-height: 1.15;
    }

    /* =========================================================
       PARAGRAPH - MOBILE
       ========================================================= */
    .slide-content p {
        font-size: 14px;
        max-width: 100%;
        padding: 0 5px;
        text-align: center;
        width: 100%;
        line-height: 1.7;
        margin-bottom: 10px;
    }

    /* =========================================================
       BUTTONS - MOBILE
       ========================================================= */
    .slide-content .d-flex {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 12px;
        margin-top: 5px;
    }

    .slide-content .btn {
        width: 100%;
        max-width: 260px;
        padding: 14px 20px !important;
        font-size: 14px;
        justify-content: center;
        text-align: center;
        margin: 0 auto;
    }

    
}

/* =========================================================
   RESPONSIVE - VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
    .slide-content {
        padding: 120px 15px 30px;      /* 110px → 120px */
    }

    .slide-content .row {
        gap: 15px;
    }

    .badge-slide {
        font-size: 10px;
        padding: 6px 14px;
        margin-bottom: 12px;
    }

    .slide-content h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .slide-content p {
        font-size: 13px;
        padding: 0 3px;
    }

    .slide-content .btn {
        font-size: 13px;
        padding: 12px 18px !important;
        max-width: 220px;
    }

    .slide-image-wrapper {
        max-width: 380px;
        padding: 6px;
    }

    .slide-image-box {
        border-radius: 16px;
        max-width: 380px;
    }

    .slide-image-box::before {
        border-radius: 20px;
        inset: -5px;
    }
}

/* =========================================================
   RESPONSIVE - EXTRA SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {
    .slide-content {
        padding: 70px 12px 30px !important;      /* 100px → 100px (same) */
    }

    .slide-content .row {
        gap: 12px;
    }

    .badge-slide {
        font-size: 9px;
        padding: 6px 12px;
        margin-bottom: 10px;
    }

    .slide-content h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .slide-content p {
        font-size: 12px;
    }

    .slide-content .btn {
        font-size: 12px;
        padding: 10px 16px !important;
        max-width: 180px;
    }

    .slide-image-wrapper {
        max-width: 300px;
        padding: 4px;
    }

    .slide-image-box {
        border-radius: 14px;
        max-width: 300px;
    }

    .slide-image-box::before {
        border-radius: 18px;
        inset: -4px;
    }
}

/* =========================================================
   RESPONSIVE - LARGE TABLET
   ========================================================= */



/* =========================================================
   REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .slide-image-box img {
        transition: none;
    }
    .slide-image-box:hover img {
        transform: none;
    }
}


/* =========================================================
   08. SECTION HEADINGS
   ========================================================= */

section > .container > .text-center {
    position: relative;
}

section > .container > .text-center h6 {
    margin-bottom: 12px;
    color: var(--cc-orange) !important;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
}

section > .container > .text-center h2 {
    position: relative;
    display: inline-block;
}

section > .container > .text-center h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin: 16px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cc-gold), var(--cc-orange));
}

/* =========================================================
   INDIAN FUSION CAKES - CREAM CORNER (UNIQUE CLASSES)
   ========================================================= */

.cream-fusion-products {
    padding: 100px 0;
    background: var(--cc-cream);
    position: relative;
    overflow: hidden;
}

/* Decorative Circles */
.cream-fusion-products::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 198, 0, 0.12);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.cream-fusion-products::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(255, 126, 0, 0.1);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
    pointer-events: none;
}

.cream-fusion-products .container {
    position: relative;
    z-index: 1;
}

/* =============================================
   SECTION HEADER
============================================= */

.cream-fusion-header {
    text-align: center;
    margin-bottom: 60px;
}

.cream-fusion-tagline {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cc-brown) !important;
    margin-bottom: 12px;
}

.cream-fusion-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--cc-brown-dark);
    margin-bottom: 10px;
}

.cream-fusion-title span {
    color: var(--cc-orange);
}

.cream-fusion-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.cream-fusion-divider .line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cc-gold), transparent);
}

.cream-fusion-divider i {
    color: var(--cc-gold);
    font-size: 1.5rem;
}

.cream-fusion-subtitle {
    color: var(--cc-muted);
    font-size: 1.1rem;
}

.cream-fusion-subtitle strong {
    color: var(--cc-orange);
    font-weight: 600;
}

/* =============================================
   PRODUCT CARD - GLASSMORPHISM STYLE
============================================= */

.cream-fusion-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 15px rgba(139, 69, 19, 0.08);
    transition: all 0.45s ease;
}

/* Card Hover */
.cream-fusion-card:hover {
    transform: translateY(-10px);
    border-color: var(--cc-gold);
    box-shadow: 0 20px 50px rgba(139, 69, 19, 0.18), 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Shine Effect */
.cream-fusion-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transition: left 0.8s;
    z-index: 3;
    pointer-events: none;
}

.cream-fusion-card:hover::before {
    left: 140%;
}

/* =============================================
   PRODUCT IMAGE - NO CUT
============================================= */

.cream-fusion-img-wrap {
    position: relative;
    height: 230px;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #ffffff, #faf6f2);
    overflow: hidden;
    flex-shrink: 0;
}

.cream-fusion-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.05), transparent 45%);
    pointer-events: none;
}

.cream-fusion-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    display: block;
}

.cream-fusion-card:hover .cream-fusion-img-wrap img {
    transform: scale(1.05);
}

/* =============================================
   PRODUCT BADGE
============================================= */

.cream-fusion-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 12px !important;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
    animation: creamFusionBadgePulse 2s ease-in-out infinite;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.cream-fusion-badge i {
    font-size: 0.8rem;
}

/* Badge Colors */
.cream-fusion-badge.best-seller {
    background: linear-gradient(135deg, #F4B400, #F39C12);
    color: #2c1810;
}

.cream-fusion-badge.trending {
    background: linear-gradient(135deg, #E74C3C, #F39C12);
    color: #fff;
}

.cream-fusion-badge.premium {
    background: linear-gradient(135deg, #8B4513, #D4A574);
    color: #fff;
}

.cream-fusion-badge.new {
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    color: #fff;
}

.cream-fusion-badge.signature {
    background: linear-gradient(135deg, #6C3483, #AF7AC5);
    color: #fff;
}

.cream-fusion-badge.royal {
    background: linear-gradient(135deg, #2C3E50, #8B4513);
    color: #fff;
}

@keyframes creamFusionBadgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* =============================================
   PRODUCT CONTENT
============================================= */

.cream-fusion-content {
    padding: 18px 20px 20px;
    background: rgba(255, 255, 255, 0.95);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.cream-fusion-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--cc-brown-dark);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.cream-fusion-card:hover .cream-fusion-content h3 {
    color: var(--cc-orange);
}

.cream-fusion-content p {
    font-size: 13px;
    color: var(--cc-muted);
    line-height: 1.5;
    margin-bottom: 14px;
    flex: 1;
}

/* =============================================
   PRODUCT FOOTER
============================================= */

.cream-fusion-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(139, 69, 19, 0.08);
    margin-top: auto;
}

.cream-fusion-price {
    font-size: 17px;
    font-weight: 700;
    color: var(--cc-orange);
}

.cream-fusion-price small {
    font-size: 12px;
    font-weight: 500;
    color: var(--cc-muted);
}

/* =============================================
   ORDER BUTTON
============================================= */

.cream-fusion-order-btn {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.cream-fusion-order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cream-fusion-order-btn:hover::before {
    left: 100%;
}

.cream-fusion-order-btn:hover {
    background: #128C7E;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.cream-fusion-order-btn:active {
    transform: scale(0.95);
}

.cream-fusion-order-btn i {
    margin-right: 4px;
}

/* =============================================
   VIEW ALL BUTTON
============================================= */

.cream-fusion-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 35px;
    border-radius: 999px;
    background: var(--cc-brown);
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cream-fusion-view-all-btn:hover {
    background: var(--cc-brown-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(47, 36, 31, 0.2);
}

/* =========================================================
   RESPONSIVE - INDIAN FUSION CAKES
========================================================== */

/* Laptop (max-width: 1200px) */
@media (max-width: 1200px) {
    .cream-fusion-products {
        padding: 80px 0;
    }
}

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .cream-fusion-products {
        padding: 70px 0;
    }

    .cream-fusion-title {
        font-size: 36px;
    }

    .cream-fusion-img-wrap {
        height: 200px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .cream-fusion-products {
        padding: 60px 0;
    }

    .cream-fusion-title {
        font-size: 32px;
    }

    .cream-fusion-img-wrap {
        height: 200px;
    }

    .cream-fusion-subtitle {
        font-size: 0.95rem;
    }
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
    .cream-fusion-products {
        padding: 50px 0;
    }

    .cream-fusion-title {
        font-size: 28px;
    }

    .cream-fusion-tagline {
        font-size: 1rem;
    }

    .cream-fusion-divider .line {
        width: 50px;
    }

    .cream-fusion-img-wrap {
        height: 180px;
    }

    .cream-fusion-content {
        padding: 15px 15px 18px;
    }

    .cream-fusion-content h3 {
        font-size: 16px;
    }

    .cream-fusion-content p {
        font-size: 12px;
    }

    .cream-fusion-price {
        font-size: 15px;
    }

    .cream-fusion-price small {
        font-size: 11px;
    }

    .cream-fusion-order-btn {
        padding: 6px 14px;
        font-size: 11px;
    }

    .cream-fusion-badge {
        top: 5px;
        right: 5px;
        padding: 3px 8px !important;
        font-size: 9px;
    }
}

/* Extra Small Mobile (max-width: 380px) */
@media (max-width: 380px) {
    .cream-fusion-products {
        padding: 40px 0;
    }

    .cream-fusion-title {
        font-size: 24px;
    }

    .cream-fusion-img-wrap {
        height: 160px;
    }

    .cream-fusion-content h3 {
        font-size: 15px;
    }

    .cream-fusion-content p {
        font-size: 11px;
    }

    .cream-fusion-price {
        font-size: 14px;
    }

    .cream-fusion-order-btn {
        padding: 5px 12px;
        font-size: 10px;
    }

    .cream-fusion-view-all-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* =========================================================
   REDUCE MOTION (Accessibility)
========================================================== */

@media (prefers-reduced-motion: reduce) {
    .cream-fusion-card,
    .cream-fusion-card::before,
    .cream-fusion-order-btn,
    .cream-fusion-view-all-btn,
    .cream-fusion-badge {
        transition: none !important;
        animation: none !important;
    }

    .cream-fusion-card:hover,
    .cream-fusion-order-btn:hover,
    .cream-fusion-view-all-btn:hover {
        transform: none !important;
        box-shadow: none !important;
    }
}

/* Focus States */
.cream-fusion-products a:focus-visible,
.cream-fusion-order-btn:focus-visible {
    outline: 3px solid rgba(255, 198, 0, 0.6);
    outline-offset: 4px;
}

/* =========================================================
   GUARANTEED FIX - CARD KE ANDAR HAND CURSOR NAHI
========================================================== */

/* Card aur uske sabhi elements par default cursor */
.cream-fusion-card,
.cream-fusion-card * {
    cursor: default !important;
    user-select: text;
    -webkit-user-select: text;
}

/* Card hover par bhi default cursor */
.cream-fusion-card:hover,
.cream-fusion-card:hover * {
    cursor: default !important;
}

/* Sirf Order button par hand cursor */
.cream-fusion-order-btn,
.cream-fusion-order-btn * {
    cursor: pointer !important;
}

/* Image par default cursor (koi hand nahi) */
.cream-fusion-img-wrap,
.cream-fusion-img-wrap * {
    cursor: default !important;
}

/* =========================================================
   10. OWNER SECTION (UPDATED - IMAGE THODA RIGHT)
   ========================================================= */

.bg-brown {
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(255, 198, 0, 0.12), transparent 30%), linear-gradient(135deg, #2F241F, #55473E) !important;
    overflow: hidden;
    padding: 80px 0;
}

/* Decorative Circles */
.bg-brown::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    border: 1px solid rgba(255, 198, 0, 0.18);
    pointer-events: none;
}

.bg-brown::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    left: -80px;
    bottom: -80px;
    border-radius: 50%;
    border: 1px solid rgba(255, 126, 0, 0.12);
    pointer-events: none;
}

.bg-brown .container {
    position: relative;
    z-index: 1;
}

/* Image Styling */
.bg-brown img {
    max-height: 400px;
    border-radius: 20px;
    border: 3px solid var(--cc-gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    
}

.bg-brown img:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35) !important;
}

/* Text Content */
.bg-brown h6 {
    font-family: "Poppins", sans-serif;
    letter-spacing: 2px;
    color: var(--cc-gold) !important;
}

.bg-brown h2 {
    color: #fff;
    font-family: "Playfair Display", serif;
}

.bg-brown .text-gold {
    color: var(--cc-gold) !important;
}

.bg-brown .lead {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: var(--cc-gold) !important;
}

.bg-brown p {
    color: rgba(255, 255, 255, 0.75);
}

/* Stats Row */
.bg-brown .stat-box {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px;
}

.bg-brown .stat-box:last-child {
    border-right: none;
}

.bg-brown .stat-number {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cc-gold);
}

.bg-brown .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}


/* =========================================================
   WORKSHOP GALLERY - PHOTOS (Videos ki Jagah)
========================================================== */

.cream-gallery-section {
    padding: 80px 0;
    background: var(--cc-cream);
    position: relative;
    overflow: hidden;
}

.cream-gallery-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 198, 0, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.cream-gallery-section .container {
    position: relative;
    z-index: 1;
}

/* Divider */
.cream-gallery-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.cream-gallery-divider .line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cc-gold), transparent);
}

.cream-gallery-divider i {
    color: var(--cc-gold);
    font-size: 1.3rem;
}

/* Gallery Card */
.cream-gallery-card {
    background: #ffffff;
    border: 1px solid rgba(85, 71, 62, 0.08);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(47, 36, 31, 0.06);
}

.cream-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(47, 36, 31, 0.12);
    border-color: rgba(255, 198, 0, 0.3);
}

/* Image Wrap */
.cream-gallery-img-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.cream-gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cream-gallery-card:hover .cream-gallery-img-wrap img {
    transform: scale(1.08);
}

/* Overlay */
.cream-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(33, 25, 20, 0.7), transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 15px;
    opacity: 0;
    transition: all 0.4s ease;
}

.cream-gallery-card:hover .cream-gallery-overlay {
    opacity: 1;
}

.cream-gallery-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.9);
    color: var(--cc-brown-dark);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Content */
.cream-gallery-content {
    padding: 20px;
    text-align: center;
}

.cream-gallery-content h5 {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cc-brown);
    margin-bottom: 5px;
}

.cream-gallery-content p {
    font-size: 0.9rem;
    color: var(--cc-muted);
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   RESPONSIVE - WORKSHOP GALLERY
========================================================== */

/* Tablet */
@media (max-width: 991px) {
    .cream-gallery-section {
        padding: 60px 0;
    }

    .cream-gallery-img-wrap {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .cream-gallery-section {
        padding: 50px 0;
    }

    .cream-gallery-img-wrap {
        height: 200px;
    }

    .cream-gallery-content {
        padding: 15px;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .cream-gallery-section {
        padding: 40px 0;
    }

    .cream-gallery-img-wrap {
        height: 180px;
    }

    .cream-gallery-content h5 {
        font-size: 1.1rem;
    }

    .cream-gallery-content p {
        font-size: 0.85rem;
    }
}

/* Extra Small */
@media (max-width: 380px) {
    .cream-gallery-section {
        padding: 30px 0;
    }

    .cream-gallery-img-wrap {
        height: 160px;
    }
}

/* Reduce Motion */
@media (prefers-reduced-motion: reduce) {
    .cream-gallery-card,
    .cream-gallery-img-wrap img,
    .cream-gallery-overlay {
        transition: none !important;
    }

    .cream-gallery-card:hover,
    .cream-gallery-img-wrap img:hover {
        transform: none !important;
    }
}

/* =========================================================
   12. WORKSHOP CARDS
   ========================================================= */

.workshop-card {
    position: relative;
    border: 1px solid var(--cc-border);
    border-radius: var(--cc-radius-md) !important;
    box-shadow: var(--cc-shadow-sm) !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(47, 36, 31, 0.14);
}

.workshop-card h4 {
    margin-top: 10px;
    color: var(--cc-brown);
}

.workshop-card h3 {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, var(--cc-brown), var(--cc-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================================
   13. CTA SECTION
   ========================================================= */

.cta-section {
    position: relative;
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(255, 198, 0, 0.18), transparent 28%), radial-gradient(circle at 80% 80%, rgba(255, 126, 0, 0.16), transparent 28%), linear-gradient(135deg, #211914, #55473E);
}

.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(255, 198, 0, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::before {
    top: -100px;
    left: -80px;
}

.cta-section::after {
    right: -80px;
    bottom: -100px;
}

.cta-section h2 {
    color: #fff;
}

.cta-section p {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================================
   14. INSTAGRAM GRID
   ========================================================= */

.hover-zoom {
    display: block;
    width: 100%;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.hover-zoom:hover {
    transform: scale(1.04);
    filter: brightness(0.82);
}

.fa-instagram {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================================
   15. PRELOADER
   ========================================================= */

#preloader-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #66564B, #2F241F);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    width: min(420px, 90%);
    text-align: center;
}

.preloader-logo {
    display: block;
    width: 110px;
    height: 110px;
    margin: 0 auto 25px;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.25));
    animation: preloaderFloat 2.5s ease-in-out infinite;
}

@keyframes preloaderFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

#preloader-text {
    margin-bottom: 18px;
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 22px;
}

.preloader-progress {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    overflow: hidden;
}

#preloader-bar {
    width: 0;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cc-gold), var(--cc-orange));
    transition: width 0.25s ease;
}

#preloader-count {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    letter-spacing: 1px;
}

/* =========================================================
   16. SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--cc-cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--cc-gold), var(--cc-orange));
    border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cc-brown);
}

/* =========================================================
   17. RESPONSIVE - LARGE TABLET
   ========================================================= */

@media (max-width: 991px) {

    .navbar-nav {
        gap: 0;
        padding: 15px 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px !important;
    }

    .navbar-nav .nav-link::after {
        left: 15px;
        right: auto;
        width: 35px;
    }

    
}

/* =========================================================
   18. RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 768px) {

    body {
        font-size: 14px;
    }

    .navbar-brand img {
        width: 50px !important;
        height: 50px !important;
    }

    .navbar-brand span {
        font-size: 18px;
    }

    .hero-slider-section,
    #heroCarousel,
    .carousel-inner,
    .carousel-item {
        height: 620px;
    }

    .slide-content h1 {
        font-size: 42px;
    }

    .slide-content p {
        font-size: 15px;
    }

    .slide-content .btn {
        padding: 11px 22px !important;
        font-size: 14px;
    }

    .floating-cake {
        max-height: 320px;
    }

    .badge-slide {
        font-size: 11px;
        padding: 8px 15px;
    }

    .cta-section {
        padding-top: 75px !important;
        padding-bottom: 75px !important;
    }
}

/* =========================================================
   19. RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 576px) {

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .navbar-brand img {
        width: 46px !important;
        height: 46px !important;
    }

    .navbar-brand span {
        font-size: 16px;
    }

    .hero-slider-section,
    #heroCarousel,
    .carousel-inner,
    .carousel-item {
        height: 600px;
    }

    .slide-bg {
        background-position: center center;
    }

    .slide-bg::after {
        background: linear-gradient(180deg, rgba(33, 25, 20, 0.88), rgba(33, 25, 20, 0.70));
    }

    .slide-content {
        padding: 20px;
    }

    .badge-slide {
        font-size: 10px;
        padding: 8px 13px;
    }

    .slide-content h1 {
        font-size: 37px;
        line-height: 1.08;
    }

    .slide-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .slide-content .d-flex {
        justify-content: center;
    }

    .slide-content .btn {
        width: 100%;
        max-width: 270px;
    }

    .floating-cake {
        max-width: 80%;
        max-height: 240px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .carousel-indicators {
        bottom: 18px;
    }

    .carousel-indicators button {
        width: 24px;
        height: 3px;
    }

    .carousel-indicators button.active {
        width: 45px;
    }

    .display-5 {
        font-size: 35px;
    }

    section.py-5 {
        padding-top: 65px !important;
        padding-bottom: 65px !important;
    }

    .cake-card img {
        height: 240px !important;
    }

    .cake-card h4 {
        font-size: 20px;
    }

    .workshop-card {
        padding: 30px 22px !important;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section .btn {
        width: 100%;
        max-width: 400px;
    }

    .hover-zoom {
        border-radius: 8px !important;
    }
}

/* =========================================================
   20. RESPONSIVE - VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .slide-content h1 {
        font-size: 32px;
    }

    .floating-cake {
        max-height: 210px;
    }

    .display-5 {
        font-size: 31px;
    }

    .hero-slider-section,
    #heroCarousel,
    .carousel-inner,
    .carousel-item {
        height: 550px;
    }

    .badge-slide {
        font-size: 13px;
        padding: 6px 11px;
    }
}

/* =========================================================
   21. REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   22. PREMIUM FOCUS STATES
   ========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(255, 198, 0, 0.65);
    outline-offset: 4px;
}

/* =========================================================
   23. IMAGE / VIDEO
   ========================================================= */

img {
    image-rendering: auto;
}

video {
    display: block;
}

/* =========================================================
   24. MOBILE TOUCH OPTIMIZATION
   ========================================================= */

@media (hover: none) {
    .cake-card:hover,
    .workshop-card:hover,
    .video-card:hover {
        transform: none;
    }
    .cake-card:hover img {
        transform: none;
    }
    .cake-card img {
        transform: none !important;
    }
}

/* =========================================================
   25. FINAL PREMIUM DETAILS
   ========================================================= */

.cake-card,
.workshop-card,
.video-card {
    overflow: hidden;
}

.cake-card.rounded-4,
.workshop-card.rounded-4,
.video-card.rounded-4 {
    border-radius: 22px !important;
}

.cake-card.rounded-3,
.workshop-card.rounded-3,
.video-card.rounded-3 {
    border-radius: 14px !important;
}



/* =========================================================
   CREAM CORNER - SCROLL VIDEO STORY (FIXED)
   ========================================================= */

#cake-story {
    position: relative;
    width: 100%;
    background: #211914;
    overflow: visible !important;
}

/* =========================================================
   INTRO
   ========================================================= */

.cake-story-intro {
    min-height: 65vh;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        radial-gradient(
            circle at top,
            rgba(255, 198, 0, 0.12),
            transparent 45%
        ),
        #211914;
    position: relative;
    z-index: 1;
}

.cake-story-intro span {
    display: block;
    color: #FFC600;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.cake-story-intro h2 {
    color: #ffffff;
    font-size: clamp(42px, 6vw, 80px);
    margin-bottom: 20px;
}

.cake-story-intro p {
    max-width: 650px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.65);
    font-size: 18px;
    line-height: 1.7;
}

/* =========================================================
   SCROLL SCENE - PARENT CONTAINER
   ========================================================= */

#cake-story .scroll-scene {
    position: relative !important;
    width: 100% !important;
    height: 900svh !important;   /* vh se svh kiya */
    overflow: hidden !important;
    isolation: isolate;
    z-index: 1;
    background: #000 !important;  /* gap dikhe bhi to black dikhe, brown nahi */
}

/* =========================================================
   STICKY SCENE - THIS IS WHAT MAKES IT STICK
   ========================================================= */

#cake-story .sticky-scene {
    position: sticky !important;
    top: 0 !important;
    width: 100% !important;   /* <-- 100vw hata kar 100% kiya */
    height: 100svh !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #000;
    z-index: 2;
    transform: none !important;
    perspective: none !important;
}

/* =========================================================
   CANVAS
   ========================================================= */

#cake-story .scene-canvas {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    background: #000;
}

/* =========================================================
   OVERLAY - SEPARATE ELEMENT FOR BETTER CONTROL
   ========================================================= */

#cake-story .sticky-scene .overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.50) 0%,
            rgba(0, 0, 0, 0.18) 55%,
            rgba(0, 0, 0, 0.05) 100%
        );
    pointer-events: none;
}

/* =========================================================
   TEXT CONTENT
   ========================================================= */

#cake-story .scene-content {
    position: absolute;
    z-index: 4;
    left: 8%;
    bottom: 12%;
    max-width: 500px;
    color: #ffffff;
    opacity: 0;
    transform: translateY(70px);
    transition: opacity 0.8s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#cake-story .scroll-scene.is-active .scene-content {
    opacity: 1;
    transform: translateY(0);
}

#cake-story .scene-number,
#cake-story .scene-content h2,
#cake-story .scene-content p {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#cake-story .scroll-scene.is-active .scene-number,
#cake-story .scroll-scene.is-active .scene-content h2,
#cake-story .scroll-scene.is-active .scene-content p {
    opacity: 1;
    transform: translateY(0);
}

#cake-story .scene-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 14px 6px;
    border: 1px solid rgba(255, 198, 0, 0.75);
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.10);
    backdrop-filter: blur(4px);
    color: #FFC600;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    transition-delay: 0.12s;
}

#cake-story .scene-content h2 {
    color: #ffffff;
    font-size: clamp(38px, 5vw, 70px);
    line-height: 1.1;
    margin-bottom: 15px;
    transition-delay: 0.25s;
}

#cake-story .scene-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.7;
    transition-delay: 0.38s;
}

/* =========================================================
   CRITICAL FIX - NO OVERFLOW HIDDEN ON PARENTS
   ========================================================= */

.cake-story-section,
#cake-story,
#cake-story .scroll-scene,
#main-content,
body,
html {
    overflow: visible !important;
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .cake-story-intro {
        min-height: 55vh;
        padding: 70px 20px;
    }

    .cake-story-intro h2 {
        font-size: 42px;
    }

    .cake-story-intro p {
        font-size: 15px;
    }

    #cake-story .scroll-scene {
        height: 700svh !important;
    }

    #cake-story .sticky-scene {
    width: 100% !important;
    height: 100svh !important;
    background: #000 !important;
}

    #cake-story .scene-content {
        left: 25px;
        right: 25px;
        bottom: 10%;
        max-width: none;
    }

    #cake-story .scene-content h2 {
        font-size: 38px;
    }

    #cake-story .scene-content p {
        font-size: 15px;
    }

}

#cake-story 
.scroll-scene.final-scene {
    height: 500svh !important;   /* auron se thoda zyada — extra buffer */
}

@media (max-width: 767px) {
    #cake-story .scroll-scene.final-scene {
        height: 350svh !important;
    }
}

/* =========================================================
   ABOUT PAGE STYLES - CREAM CORNER (FINAL UPDATED CSS)
========================================================== */

/* --- HERO SECTION --- */
.about-hero-section {
    /* Deep dark brown background */
    background: linear-gradient(135deg, #1a1512 0%, #2a201b 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative Circles */
.about-hero-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 198, 0, 0.15); /* Gold */
    border-radius: 50%;
    top: -150px;
    right: -150px;
    pointer-events: none;
}

.about-hero-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 198, 0, 0.12); /* Gold */
    border-radius: 50%;
    bottom: -100px;
    left: -80px;
    pointer-events: none;
}

.about-hero-section .container {
    position: relative;
    z-index: 2;
}

/* --- Grid Layout --- */
.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    min-height: 550px;
}

/* --- LEFT: Text --- */
.about-hero-text {
    max-width: 600px;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.15); /* Gold BG */
    border: 1px solid rgba(255, 198, 0, 0.4);
    color: var(--cc-gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-hero-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.about-hero-title span {
    color: var(--cc-gold); /* Gold Highlight */
}

.about-hero-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cc-gold); /* Gold Text */
    margin-bottom: 10px;
}

.about-hero-experience {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 30px;
}

.about-hero-experience i {
    color: var(--cc-gold); /* Gold Icons */
}

.about-hero-experience .sep {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
}

.about-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* --- Buttons (Gold Theme) --- */
.about-hero-buttons .btn-gold {
    background: var(--cc-gold);
    color: var(--cc-brown-dark);
    border: none;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(255, 198, 0, 0.3);
    transition: all 0.3s ease;
}

.about-hero-buttons .btn-gold:hover {
    background: #ffffff;
    color: var(--cc-brown-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.about-hero-buttons .btn-outline-white {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-hero-buttons .btn-outline-white:hover {
    border-color: var(--cc-gold);
    color: var(--cc-gold);
}

/* --- RIGHT: Image --- */
.about-hero-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-img-wrapper {
    position: relative;
    max-width: 450px;
    width: 100%;
}

.about-hero-img-wrapper::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 198, 0, 0.2), transparent 60%);
    border-radius: 30px;
    z-index: 0;
}

.about-hero-img-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 25px;
    border: 3px solid rgba(255, 198, 0, 0.2); /* Gold Border */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    display: block;
}

/* Floating Badge */
.about-hero-float-badge {
    position: absolute;
    bottom: 15px;
    left: -25px;
    background: var(--cc-gold);
    color: var(--cc-brown-dark);
    padding: 15px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.about-hero-float-badge i {
    font-size: 1.5rem;
    color: var(--cc-brown-dark);
}

/* =========================================================
   PERFECT RESPONSIVE DESIGN (MOBILE, TABLET, DESKTOP)
   ========================================================= */

/* Laptop (max-width: 1200px) */
@media (max-width: 1200px) {
    .about-hero-grid {
        gap: 30px;
    }
    
    .about-hero-img-wrapper {
        max-width: 380px;
    }
}

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .about-hero-section {
        padding: 80px 0;
    }
    
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-hero-text {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center; /* Perfect Center Alignment */
    }
    
    .about-hero-badge {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 25px; /* Badge ko thoda niche kiya */
    }
    
    .about-hero-title {
        font-size: 42px;
    }
    
    .about-hero-experience {
        justify-content: center;
        text-align: center;
        gap: 8px;
    }
    
    .about-hero-experience .sep {
        margin: 0 5px;
    }
    
    .about-hero-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .about-hero-img-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .about-hero-float-badge {
        left: 0;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .about-hero-section {
        padding: 70px 0;
    }
    
    .about-hero-title {
        font-size: 38px;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-hero-img-wrapper {
        max-width: 320px;
    }
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
    .about-hero-section {
        padding: 60px 0;
    }
    
    .about-hero-badge {
        font-size: 0.8rem;
        padding: 8px 14px;
        margin-bottom: 20px;
        margin-top:20px;
    }
    
    .about-hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
    
    /* --- FIXED: Sab kuch ek hi line mein --- */
    .about-hero-experience {
        font-size: 0.75rem; /* Font chhota kiya */
        justify-content: center;
        text-align: center;
        gap: 5px;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap; /* Line wrap nahi hogi */
        align-items: center;
        margin-bottom: 25px;
    }
    
    .about-hero-experience .exp-item {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        margin: 0; /* Extra margin hata diya */
    }
    
    .about-hero-experience .sep {
        display: inline-block;
        margin: 0 2px;
    }
    
    .about-hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .about-hero-buttons .btn {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px 28px;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }
    
    .about-hero-img-wrapper {
        max-width: 280px;
    }
    
    .about-hero-float-badge {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        max-width: 85%;
        padding: 8px 12px;
        font-size: 0.8rem;
        text-align: center;
        justify-content: center;
    }
}


/* Extra Small (max-width: 380px) */
@media (max-width: 380px) {
    .about-hero-title {
        font-size: 28px;
    }
    
    .about-hero-float-badge {
        padding: 8px 12px;
        font-size: 0.8rem;
        margin-left: 100px;
        margin-top: 30px;
    }
}
/* =========================================================
   2. SERVICES SECTION
========================================================== */

.services-section {
    padding: 100px 0;
    background: var(--cc-cream);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 198, 0, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.services-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--cc-brown-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header h2 span {
    color: var(--cc-orange);
}

.title-border {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--cc-gold), var(--cc-orange));
    border-radius: 10px;
    margin: 15px auto;
}

.subtitle {
    color: var(--cc-muted);
    font-size: 1.1rem;
    margin-top: 5px;
}

.subtitle span {
    color: var(--cc-gold);
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border: 3px solid rgba(85, 71, 62, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(47, 36, 31, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(47, 36, 31, 0.12);
    border-color: rgba(245, 179, 103, 0.904);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 198, 0, 0.12), rgba(255, 126, 0, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: var(--cc-orange);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 126, 0, 0.3);
}

.service-card h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    color: var(--cc-brown);
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--cc-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    color: var(--cc-orange);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: var(--cc-brown);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* =========================================================
   JOURNEY SECTION - HORIZONTAL TIMELINE (NEW)
========================================================== */

.journey-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #211914 0%, #2a201b 50%, #211914 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.journey-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 198, 0, 0.08), transparent 50%);
    pointer-events: none;
}

.journey-section::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 198, 0, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.journey-section .container {
    position: relative;
    z-index: 2;
}

/* Section Title */
.journey-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.journey-logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.1);
    border: 1px solid rgba(255, 198, 0, 0.3);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.journey-logo-badge img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

.journey-logo-badge span {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cc-gold);
}

.journey-section .section-title h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 5vw, 56px);
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.journey-section .section-title h2 span {
    color: var(--cc-gold);
}

.journey-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.journey-divider .line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cc-gold), transparent);
}

.journey-divider i {
    color: var(--cc-gold);
    font-size: 1.2rem;
}

.journey-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Horizontal Timeline */
.journey-timeline-wrapper {
    overflow-x: auto;
    padding: 30px 0 50px;
    scrollbar-width: thin;
    scrollbar-color: var(--cc-gold) transparent;
}

.journey-timeline-wrapper::-webkit-scrollbar {
    height: 8px;
}

.journey-timeline-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.journey-timeline-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--cc-gold), var(--cc-orange));
    border-radius: 10px;
}

.journey-timeline {
    display: flex;
    gap: 25px;
    min-width: max-content;
    padding: 20px 10px;
    position: relative;
}

/* Connecting Line behind cards */
.journey-timeline::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cc-gold), var(--cc-orange), var(--cc-gold));
    transform: translateY(-50%);
    opacity: 0.5;
    z-index: 1;
}

/* Journey Card */
.journey-card {
    position: relative;
    width: 280px;
    flex-shrink: 0;
    background: linear-gradient(180deg, rgba(255, 198, 0, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 198, 0, 0.25);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
}

.journey-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 198, 0, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: linear-gradient(180deg, rgba(255, 198, 0, 0.15), rgba(255, 255, 255, 0.05));
}

.journey-card.gold {
    background: linear-gradient(180deg, rgba(255, 198, 0, 0.2), rgba(255, 126, 0, 0.1));
    border-color: rgba(255, 198, 0, 0.5);
}

/* Year */
.journey-year {
    font-family: "Playfair Display", serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cc-gold);
    margin-bottom: 20px;
    line-height: 1;
}

.journey-year.gold {
    color: var(--cc-gold);
    text-shadow: 0 0 20px rgba(255, 198, 0, 0.5);
}

/* Circle Image */
.journey-card-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--cc-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.journey-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.journey-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.journey-card:hover .journey-card-img img {
    transform: scale(1.1);
}

/* Card Content */
.journey-card-content h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
}

.journey-card-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Tag */
.journey-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.15);
    border: 1px solid rgba(255, 198, 0, 0.3);
    color: var(--cc-gold);
    font-size: 0.8rem;
    font-weight: 600;
}

.journey-tag.gold {
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: var(--cc-brown-dark);
    border: none;
}

/* Dot at bottom of card */
.journey-dot {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--cc-gold);
    border: 4px solid #211914;
    z-index: 3;
    box-shadow: 0 0 15px rgba(255, 198, 0, 0.5);
}

.journey-dot.gold {
    background: var(--cc-orange);
    border-color: #211914;
    box-shadow: 0 0 15px rgba(255, 126, 0, 0.5);
}


/* =========================================================
   4. WHY CHOOSE US SECTION
========================================================== */

.why-choose-us {
    padding: 100px 0;
    background: var(--cc-cream);
    position: relative;
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

.subtitle-desc {
    color: var(--cc-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 10px auto 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.why-card {
    background: #ffffff;
    border: 1px solid rgba(85, 71, 62, 0.08);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(47, 36, 31, 0.05);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(47, 36, 31, 0.12);
    border-color: rgba(255, 198, 0, 0.3);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 198, 0, 0.12), rgba(255, 126, 0, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cc-orange);
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: #ffffff;
    transform: scale(1.1);
}

.why-card h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
    color: var(--cc-brown);
    font-weight: 600;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--cc-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   ABOUT MADAM SECTION (FOUNDER) - FINAL RESPONSIVE (LEFT FIX)
   ========================================================= */

.about-madam {
    padding: 100px 0;
    background: var(--cc-brown-dark);
    position: relative;
    overflow: hidden;
}

.about-madam::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 198, 0, 0.1);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    pointer-events: none;
}

.about-madam-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-madam-image {
    position: relative;
}

.about-madam-img-wrapper {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.about-madam-img-wrapper::before {
    content: "";
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 198, 0, 0.2), transparent 60%);
    border-radius: 25px;
    z-index: 0;
}

.about-madam-img-wrapper img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 20px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    display: block;
}

.about-madam-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: var(--cc-brown-dark);
    padding: 12px 24px;
    border-radius: 12px;
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.about-madam-text {
    color: #ffffff;
}

.about-madam-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.15);
    border: 1px solid rgba(255, 198, 0, 0.3);
    color: var(--cc-gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-madam-text h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 50px);
    color: #ffffff;
    margin-bottom: 10px;
}

.about-madam-text h4 {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    color: var(--cc-gold);
    font-weight: 500;
    margin-bottom: 20px;
}

.about-madam-text blockquote {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    border-left: 4px solid var(--cc-gold);
    padding-left: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-madam-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.about-madam-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-madam-feature i {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 198, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--cc-gold);
    flex-shrink: 0;
}

.about-madam-feature div {
    display: flex;
    flex-direction: column;
}

.about-madam-feature strong {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 3px;
}

.about-madam-feature span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.about-madam-social {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-social.instagram {
    background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
    color: #ffffff;
}

.btn-social.instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(238, 42, 123, 0.3);
}

.btn-social.whatsapp {
    background: #25D366;
    color: #ffffff;
}

.btn-social.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* =========================================================
   RESPONSIVE DESIGN (LAPTOP, TABLET, MOBILE) - LEFT FIXED
   ========================================================= */

/* Laptop (max-width: 1200px) */
@media (max-width: 1200px) {
    .about-madam-grid {
        gap: 40px;
    }
    
    .about-madam-img-wrapper {
        max-width: 400px;
    }
    
    .about-madam-text h2 {
        font-size: 36px;
    }
}

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .about-madam {
        padding: 60px 0;
    }
    
    .about-madam-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-madam-text {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .about-madam-tag {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-madam-text blockquote {
        border-left: none;
        border-top: 3px solid var(--cc-gold);
        padding-left: 0;
        padding-top: 15px;
        text-align: center;
    }
    
    .about-madam-features {
        justify-content: center;
        text-align: left;
    }
    
    .about-madam-social {
        justify-content: center;
    }
    
    .about-madam-img-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* BADGE FIX: Left side */
    .about-madam-badge {
        left: 0px;
        right: auto;
        bottom: 10px;
        transform: none;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .about-madam {
        padding: 50px 0;
    }
    
    .about-madam-text h2 {
        font-size: 30px;
    }
    
    .about-madam-text h4 {
        font-size: 1rem;
    }
    
    .about-madam-text blockquote {
        font-size: 1rem;
    }
    
    .about-madam-img-wrapper {
        max-width: 100%;
        width: 100%;
        padding: 0 10px;
    }
    
    .about-madam-img-wrapper img {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
        border-radius: 15px;
        border: 3px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    
    /* BADGE FIX: Left side */
    .about-madam-badge {
        left: 0px;
        right: auto;
        bottom: 5px;
        transform: none;
        padding: 10px 18px;
        font-size: 1.2rem;
    }
    
    /* FIX: Mobile par 4 features ek ke neeche ek (1 column) */
    .about-madam-features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .about-madam-feature {
        justify-content: flex-start;
        text-align: left;
        flex-direction: row;
        gap: 10px;
        padding: 8px 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }
    
    .about-madam-feature i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .about-madam-feature strong {
        font-size: 0.9rem;
    }
    
    .about-madam-feature span {
        font-size: 0.75rem;
    }
    
    .about-madam-social {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .btn-social {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
    .about-madam {
        padding: 40px 0;
    }
    
    .about-madam-text h2 {
        font-size: 28px;
    }
    
    .about-madam-tag {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
    
    /* FIX: Mobile par 4 features perfectly vertical (1 column) */
    .about-madam-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .about-madam-feature {
        padding: 10px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        align-items: center;
        text-align: left;
        gap: 8px;
    }
    
    .about-madam-feature i {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .about-madam-feature strong {
        font-size: 0.85rem;
    }
    
    .about-madam-feature span {
        font-size: 0.75rem;
    }
    
    .about-madam-social {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .btn-social {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .about-madam-img-wrapper {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
    }
    
    .about-madam-img-wrapper img {
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
    }
    
    /* BADGE FIX: Left side */
    .about-madam-badge {
        left: 0px;
        right: auto;
        bottom: 0;
        transform: none;
        font-size: 1rem;
        padding: 8px 14px;
    }
}

/* Extra Small (max-width: 380px) */
@media (max-width: 380px) {
    .about-madam-text h2 {
        font-size: 24px;
    }
    
    .about-madam-text h4 {
        font-size: 0.9rem;
    }
    
    .about-madam-features {
        gap: 8px;
    }
    
    .about-madam-feature i {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .about-madam-feature strong {
        font-size: 0.8rem;
    }
    
    .about-madam-feature span {
        font-size: 0.7rem;
    }
    
    /* BADGE FIX: Left side */
    .about-madam-badge {
        left: 8px;
        right: auto;
        bottom: 0;
        transform: none;
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}
/* =========================================================
   6. ABOUT GALLERY SECTION
========================================================== */

.about-gallery {
    padding: 100px 0;
    background: var(--cc-cream);
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-gallery-item {
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1 / 1;
    transition: all 0.4s ease;
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-gallery-item:hover {
    box-shadow: 0 15px 35px rgba(47, 36, 31, 0.15);
}

.about-gallery-item:hover img {
    transform: scale(1.02);
}

/* =========================================================
   8. WORKSHOP PREVIEW SECTION
========================================================== */

.workshop-preview {
    padding: 100px 0;
    background: var(--cc-cream);
}

.workshop-card {
    background: #ffffff;
    border: 1px solid rgba(85, 71, 62, 0.08);
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(47, 36, 31, 0.06);
}

.workshop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(47, 36, 31, 0.12);
}

.workshop-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    display: block;
}


.workshop-card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.workshop-card:hover .workshop-card-image img {
    transform: scale(1.02);
}

.workshop-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--cc-brown);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.workshop-card-content {
    padding: 25px;
}

.workshop-card-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem;
    color: var(--cc-brown);
    margin-bottom: 10px;
}

.workshop-card-content p {
    color: var(--cc-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.workshop-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.workshop-card-price {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cc-orange);
}

/* =========================================================
   9. TESTIMONIALS SECTION
========================================================== */

.testimonials {
    padding: 100px 0;
    background: #ffffff;
}

.testimonial-card {
    background: var(--cc-cream);
    border: 1px solid rgba(85, 71, 62, 0.08);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(47, 36, 31, 0.05);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(47, 36, 31, 0.1);
}

.testimonial-content {
    position: relative;
    margin-bottom: 20px;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--cc-gold);
    opacity: 0.3;
    margin-bottom: 10px;
    display: block;
}

.testimonial-content p {
    color: var(--cc-text);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Author Block (Avatar + Name + Stars) */
.testimonial-author {
    display: flex;
    flex-direction: row; /* Sab kuch ek line mein */
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    text-align: left;
}

.testimonial-author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: var(--cc-brown-dark);
    font-size: 1.2rem;
}

.testimonial-author .author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
}

.testimonial-author strong {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: var(--cc-brown);
    font-weight: 600;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--cc-muted);
}

/* Stars ko horizontal banane ke liye */
.stars {
    display: flex;
    flex-direction: row;        /* Horizontal kiya */
    align-items: center;
    justify-content: flex-start;
    gap: 3px;                   /* Stars ke beech ka gap */
    margin-left: 10px;          /* Author info se thoda gap */
    font-size: 0.8rem;
    flex-wrap: nowrap;
}

.stars i {
    color: var(--cc-gold);
    line-height: 1;
}

/* =========================================================
   RESPONSIVE - TESTIMONIALS
========================================================== */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .testimonials {
        padding: 70px 0;
    }
    
    .testimonial-card {
        padding: 25px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .testimonials {
        padding: 50px 0;
    }
    
    .testimonial-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .testimonial-author {
        flex-direction: row; /* Mobile par bhi horizontal */
        align-items: center;
        gap: 10px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .stars {
        margin-left: 8px;
    }
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
    .testimonials {
        padding: 40px 0;
    }
    
    .testimonial-card {
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .avatar {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .testimonial-author strong {
        font-size: 0.9rem;
    }
    
    .testimonial-author span {
        font-size: 0.8rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .stars {
        font-size: 0.7rem;
        gap: 2px;
        margin-left: 5px;
    }
}

/* =========================================================
   10. FINAL CTA SECTION (UPDATED)
========================================================== */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cc-brown-dark) 0%, var(--cc-brown) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 198, 0, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::before {
    top: -100px;
    left: -80px;
}

.cta-section::after {
    bottom: -100px;
    right: -80px;
}

.cta-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Naya Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.15);
    border: 1px solid rgba(255, 198, 0, 0.4);
    color: var(--cc-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 50px);
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-content h2 span {
    color: var(--cc-gold);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
}

/* Naya Gold Button (Explore Menu) */
.btn-gold-cta {
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: var(--cc-brown-dark) !important;
    border: none !important;
    font-weight: 700;
    border-radius: 999px;
    padding: 14px 30px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 198, 0, 0.3);
}

.btn-gold-cta:hover {
    background: #ffffff !important;
    color: var(--cc-brown-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.btn-gold-cta .fa-arrow-right {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-gold-cta:hover .fa-arrow-right {
    transform: translateX(4px);
}

/* Outline Button (Join Workshop) */
.btn-outline-white {
    background: transparent !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 999px;
    padding: 12px 30px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: #ffffff !important;
    color: var(--cc-brown-dark) !important;
    transform: translateY(-3px);
}

/* WhatsApp Button */
.btn-whatsapp-cta {
    background: #25D366 !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 999px;
    padding: 14px 30px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-whatsapp-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.cta-contact {
    font-size: 0.95rem !important;
    margin-top: 20px;
    margin-bottom: 0;
}

.cta-contact i {
    color: var(--cc-gold);
    margin-right: 5px;
}

.cta-contact .sep {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}

/* =========================================================
   RESPONSIVE (CTA SECTION)
========================================================== */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .cta-section {
        padding: 70px 0;
    }
    
    .cta-content h2 {
        font-size: 38px;
    }
    
    .cta-buttons {
        gap: 12px;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 30px;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .cta-badge {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .cta-contact {
        font-size: 0.85rem !important;
        flex-direction: column;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .cta-contact .sep {
        display: none;
    }
}

/* =========================================================
   RESPONSIVE - LAPTOP (max-width: 1200px)
========================================================== */

@media (max-width: 1200px) {
    .about-hero-grid {
        gap: 30px;
    }

    .about-hero-img-wrapper {
        max-width: 380px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .journey-card {
        width: 260px;
    }
}

/* =========================================================
   RESPONSIVE - TABLET (max-width: 991px)
========================================================== */

@media (max-width: 991px) {
    .about-hero-section {
        padding: 160px 0;
    }

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-hero-text {
        max-width: 100%;
        margin: 0 auto;
    }

    .about-hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-title {
        font-size: 42px;
    }

    .about-hero-experience {
        justify-content: center;
    }

    .about-hero-buttons {
        justify-content: center;
    }

    .about-hero-img-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }

    .about-hero-float-badge {
        left: 0;
    }

    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    
    
    .journey-section {
        padding: 80px 0;
    }
    
    .journey-card {
        width: 250px;
    }
    
    .journey-card-img {
        width: 120px;
        height: 120px;
    }
}

/* =========================================================
   RESPONSIVE - MOBILE (max-width: 767px)
========================================================== */

@media (max-width: 767px) {
    .about-hero-section {
        padding: 50px 0;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-hero-img-wrapper {
        max-width: 300px;
    }

    .services-section {
        padding: 70px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .why-choose-us {
        padding: 70px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-card {
        padding: 20px;
    }

    
    .btn-social {
        width: 100%;
        justify-content: center;
    }

    .about-gallery {
        padding: 70px 0;
    }

    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .recipe-preview {
        padding: 70px 0;
    }

    .recipe-card-image {
        height: 200px;
    }

    .workshop-preview {
        padding: 70px 0;
    }

    .workshop-card-image {
        height: 200px;
        width: 100%; /* 400px ki jagah 100% diya taaki screen se bahar na jaye */
        max-width: 400px; /* Maximum width 400px */
        margin: 0 auto; /* Center mein laane ke liye */
        aspect-ratio: auto;
        overflow: hidden;
        border-radius: 15px 15px 0 0;
    }
    

    .workshop-card:nth-child(1) .workshop-card-image {
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
    }

    .workshop-card:nth-child(1) .workshop-card-image img {
        width: 100%;
        height: auto;
        object-fit: contain; /* Image poori dikhegi, cut nahi hogi */
        display: block;
    }

    /* FIX: Price aur Learn More ko ek hi line mein (Horizontal) */
    .workshop-card-footer {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }

    .workshop-card-footer .btn {
        margin-left: auto;
        white-space: nowrap;
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .workshop-card-price {
        font-size: 1rem;
    }

    .testimonials {
        padding: 70px 0;
    }

    .cta-section {
        padding: 70px 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Journey Section Mobile */
    .journey-section {
        padding: 60px 0;
    }
    
    .journey-section .section-title h2 {
        font-size: 36px;
    }
    
    .journey-card {
        width: 240px;
        padding: 25px 15px;
    }
    
    .journey-year {
        font-size: 2rem;
    }
    
    .journey-card-img {
        width: 110px;
        height: 110px;
        margin-bottom: 15px;
    }
    
    .journey-card-content h4 {
        font-size: 1.1rem;
    }
}

/* =========================================================
   RESPONSIVE - SMALL MOBILE (max-width: 575px)
========================================================== */

@media (max-width: 575px) {

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .services-section {
        padding: 50px 0;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .service-card h4 {
        font-size: 1.2rem;
    }

    .why-choose-us {
        padding: 50px 0;
    }

    .why-card {
        padding: 18px;
    }

    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .why-card h4 {
        font-size: 1.1rem;
    }

    
    .about-gallery {
        padding: 50px 0;
    }

    .about-gallery-grid {
        grid-template-columns: 1fr; /* Mobile par 1 column */
        gap: 15px;
    }

    .recipe-preview {
        padding: 50px 0;
    }

    .recipe-card-image {
        height: 180px;
    }

    .recipe-card-content h3 {
        font-size: 1.2rem;
    }

    .workshop-preview {
        padding: 50px 0;
    }

    .workshop-card-image {
        height: 180px;
    }

    .workshop-card-content h3 {
        font-size: 1.2rem;
    }

    /* FIX: Price aur Learn More ko ek hi line mein (Horizontal) */
    .workshop-card-footer {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }

    .workshop-card-footer .btn {
        margin-left: auto;
        white-space: nowrap;
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .workshop-card-price {
        font-size: 1rem;
    }

    .testimonials {
        padding: 50px 0;
    }

    .testimonial-card {
        padding: 20px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-buttons {
        gap: 10px;
    }
    
    /* Journey Section Small Mobile */
    .journey-section {
        padding: 50px 0;
    }
    
    .journey-logo-badge {
        padding: 8px 20px;
        font-size: 1rem;
    }
    
    .journey-logo-badge img {
        width: 30px;
        height: 30px;
    }
    
    .journey-section .section-title h2 {
        font-size: 30px;
    }
    
    .journey-divider .line {
        width: 50px;
    }
    
    .journey-card {
        width: 220px;
        padding: 20px 12px;
    }
    
    .journey-year {
        font-size: 1.8rem;
    }
    
    .journey-card-img {
        width: 100px;
        height: 100px;
    }
    
    .journey-card-content h4 {
        font-size: 1rem;
    }
    
    .journey-card-content p {
        font-size: 0.8rem;
    }
    
    .journey-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}

/* =========================================================
   RESPONSIVE - EXTRA SMALL MOBILE (max-width: 380px)
========================================================== */

@media (max-width: 380px) {
    
    .section-header h2 {
        font-size: 24px;
    }

    .service-card h4 {
        font-size: 1.1rem;
    }

    .why-card {
        padding: 15px;
    }

    .why-card h4 {
        font-size: 1rem;
    }

    

    .about-gallery-grid {
        gap: 10px;
    }

    .recipe-card-content h3 {
        font-size: 1.1rem;
    }

    .workshop-card-content h3 {
        font-size: 1.1rem;
    }

    /* FIX: Price aur Learn More ko ek hi line mein (Horizontal) */
    .workshop-card-footer {
        flex-direction: row;
        align-items: center;
        gap: 8px;
        margin-top: 15px;
    }

    .workshop-card-footer .btn {
        margin-left: auto;
        padding: 8px 12px;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .workshop-card-price {
        font-size: 1.3rem;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 0.9rem;
    }
    
    /* Journey Section Extra Small */
    .journey-section {
        padding: 40px 0;
    }
    
    .journey-section .section-title h2 {
        font-size: 26px;
    }
    
    .journey-card {
        width: 200px;
        padding: 15px 10px;
    }
    
    .journey-year {
        font-size: 1.5rem;
    }
    
    .journey-card-img {
        width: 90px;
        height: 90px;
    }
    
    .journey-card-content p {
        font-size: 0.75rem;
    }
}

/* =========================================================
   REDUCE MOTION (Accessibility)
========================================================== */

@media (prefers-reduced-motion: reduce) {
    .service-card,
    .why-card,
    .timeline-content,
    .recipe-card,
    .workshop-card,
    .testimonial-card,
    .btn-social,
    .btn-primary,
    .btn-view-all,
    .btn-whatsapp-cta,
    .btn-outline-white,
    .about-gallery-item,
    .about-gallery-item img,
    .service-icon,
    .why-icon,
    .flavor-card,
    .flavor-icon,
    .about-hero-float-badge,
    .journey-card,
    .journey-card-img img {
        transition: none !important;
    }

    .service-card:hover,
    .why-card:hover,
    .timeline-content:hover,
    .recipe-card:hover,
    .workshop-card:hover,
    .testimonial-card:hover,
    .btn-social:hover,
    .btn-primary:hover,
    .btn-view-all:hover,
    .btn-whatsapp-cta:hover,
    .btn-outline-white:hover,
    .about-gallery-item:hover,
    .about-gallery-item img:hover,
    .service-icon:hover,
    .why-icon:hover,
    .flavor-card:hover,
    .flavor-icon:hover,
    .about-hero-float-badge:hover,
    .journey-card:hover,
    .journey-card:hover .journey-card-img img {
        transform: none !important;
        box-shadow: none !important;
    }

    .timeline-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .about-hero-image-bg img {
        transform: none !important;
    }
}

/* =========================================================
   FOCUS STATES (Accessibility)
========================================================== */

.about-hero-content a:focus-visible,
.about-madam-social a:focus-visible,
.cta-buttons a:focus-visible,
.journey-card a:focus-visible {
    outline: 3px solid rgba(255, 198, 0, 0.6);
    outline-offset: 4px;
}

/* =========================================================
   GALLERY PAGE STYLES - CREAM CORNER
   (Complete Responsive CSS with Grouped Layout Support)
========================================================== */

/* =========================================================
   1. GALLERY HERO SECTION
========================================================== */

.gallery-hero {
    padding: 150px 0 40px;
    background: linear-gradient(135deg, var(--cc-brown-dark) 0%, #2a201b 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.gallery-hero::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 198, 0, 0.15);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    pointer-events: none;
}

.gallery-hero::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 126, 0, 0.1);
    border-radius: 50%;
    bottom: -100px;
    left: -80px;
    pointer-events: none;
}

.gallery-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.15);
    border: 1px solid rgba(255, 198, 0, 0.4);
    color: var(--cc-gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: galleryFadeUp 0.8s ease forwards;
    opacity: 0;
}

.gallery-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 6vw, 80px);
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    animation: gallerySlideDown 0.8s ease forwards;
    opacity: 0;
}

.gallery-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 20px;
    animation: galleryFadeUp 0.8s ease 0.25s forwards;
    opacity: 0;
}

.gallery-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    animation: galleryFadeUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.gallery-divider .line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cc-gold), transparent);
}

.gallery-divider i {
    color: var(--cc-gold);
    font-size: 1.5rem;
}

@keyframes gallerySlideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes galleryFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
   2. SPECIALISATION BANNER
   Cream Corner Logo Inspired – Cream + Brown + Orange
========================================================== */

.specialisation-banner-wrapper {
    padding: 30px 0 10px;
    background: var(--cc-cream);
}

.specialisation-banner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 35px;

    /* Logo inspired soft cream background */
    background: linear-gradient(
        135deg,
        #fffaf2 0%,
        #fff3df 50%,
        #ffe9c7 100%
    );

    border-radius: 20px;

    /* Logo Orange */
    border-left: 6px solid #f59e0b;

    /* Soft warm shadow */
    box-shadow: 0 12px 40px rgba(91, 62, 43, 0.15);

    position: relative;
    overflow: hidden;
}

/* Decorative circle */
.specialisation-banner::before {
    content: "";
    position: absolute;

    width: 220px;
    height: 220px;

    border: 2px solid rgba(245, 158, 11, 0.12);
    border-radius: 50%;

    top: -100px;
    right: -60px;

    pointer-events: none;
}

/* Soft orange glow */
.specialisation-banner::after {
    content: "";
    position: absolute;

    width: 160px;
    height: 160px;

    background: rgba(245, 158, 11, 0.08);
    border-radius: 50%;

    bottom: -100px;
    left: 30%;

    pointer-events: none;
}

/* Crown / Icon */
.specialisation-banner i {
    font-size: 2.5rem;
    color: #f59e0b;
    flex-shrink: 0;
    z-index: 1;
}

/* Text */
.specialisation-banner p {
    color: #4a3428;
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    z-index: 1;
}

/* Highlighted Text */
.specialisation-banner p strong {
    color: #d97706;
}

/* =========================================================
   3. GALLERY SECTION
========================================================== */

.gallery-section {
    padding: 60px 0 80px;
    background: var(--cc-cream);
}

/* Filter Buttons */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 2px solid var(--cc-brown);
    background: transparent;
    color: var(--cc-brown);
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: var(--cc-brown);
    color: #ffffff;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: var(--cc-brown-dark);
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(255, 126, 0, 0.25);
}

/* =========================================================
   4. GROUPED PORTFOLIO LAYOUT
========================================================== */

.grouped-portfolio {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project-group {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(61, 44, 35, 0.06);
    transition: all 0.3s ease;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.project-group.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.group-heading {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: var(--cc-brown-dark);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--cc-gold);
    display: inline-block;
}

.group-toggle-btn {
    display: none;
    width: 100%;
    padding: 15px 20px;
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: var(--cc-brown-dark);
    border: none;
    border-radius: 12px;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    justify-content: space-between;
    align-items: center;
}

.group-toggle-btn i {
    margin-right: 10px;
}

.group-toggle-btn::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    transition: transform 0.3s ease;
}

.group-toggle-btn.active::after {
    transform: rotate(180deg);
}

.group-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
    max-height: none;
    overflow: visible;
    transition: max-height 0.5s ease;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-inner {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    background: var(--cc-brown-dark);
    box-shadow: 0 8px 25px rgba(47, 36, 31, 0.1);
    transition: all 0.4s ease;
}

.gallery-item-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(47, 36, 31, 0.2);
}

.gallery-item-inner img,
.gallery-item-inner video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item-inner:hover img,
.gallery-item-inner:hover video {
    transform: scale(1.08);
}

/* Ensure clickable images show a pointer cursor (video has no click handler) */
.gallery-img-trigger {
    cursor: pointer;
}

/* Video Item Specific */
.video-item {
    background: #000;
}

.video-item video {
    object-fit: cover;
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(33, 25, 20, 0.95) 0%, rgba(33, 25, 20, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery-item-inner:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cc-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--cc-brown-dark);
    transform: scale(0);
    transition: transform 0.4s ease;
}

.gallery-item-inner:hover .gallery-icon {
    transform: scale(1);
}

.gallery-info {
    text-align: center;
}

.gallery-info h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 5px;
}

.gallery-info span {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.2);
    border: 1px solid rgba(255, 198, 0, 0.4);
    color: var(--cc-gold);
    font-size: 0.75rem;
    font-weight: 600;
}

/* =========================================================
   5. INSTAGRAM CTA
========================================================== */

.instagram-cta {
    margin-top: 50px;
}

.instagram-cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 25px 35px;
    background: linear-gradient(135deg, #fdf6ed 0%, #f8ede4 100%);
    border-radius: 20px;
    border: 2px solid rgba(232, 184, 46, 0.2);
    box-shadow: 0 8px 30px rgba(61, 44, 35, 0.06);
}

.instagram-cta-inner i.fa-instagram {
    font-size: 2.5rem;
    color: #E1306C;
}

.instagram-cta-inner p {
    margin: 0;
    font-size: 1rem;
    color: var(--cc-brown-dark);
}

.instagram-cta-inner p a {
    color: var(--cc-orange);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.instagram-cta-inner p a:hover {
    color: var(--cc-gold);
    text-decoration: underline;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #405DE6, #E1306C, #FD1D1D);
    color: #ffffff;
    border-radius: 60px;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(225, 48, 108, 0.4);
    color: #ffffff;
}


/* =========================================================
   6. CUSTOM MODAL - PURE CSS (No Bootstrap Dependency)
   (Full black backdrop covering everything including navbar)
========================================================== */

/* Modal Backdrop - Full Black covering entire viewport */
.custom-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    display: none;
}

.custom-modal-backdrop.show {
    display: block;
}

/* Modal Container - On top of backdrop */
.custom-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    padding: 20px;
}

.custom-modal-wrapper.show {
    display: flex;
}

/* Modal Content - Clean White Card */
.custom-modal-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* =========================================================
   CLOSE BUTTON
========================================================== */
.custom-modal-close {
    position: fixed;
    top: 30px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100001;
    transition: all 0.3s ease;
    line-height: 1;
    backdrop-filter: blur(4px);
}

.custom-modal-close:hover {
    background: var(--cc-gold);
    color: var(--cc-brown-dark);
    border-color: var(--cc-gold);
    transform: rotate(90deg) scale(1.1);
}

/* =========================================================
   NAVIGATION ARROWS
========================================================== */
.custom-modal-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100001;
    transition: all 0.3s ease;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.custom-modal-arrow:hover {
    background: var(--cc-gold);
    color: var(--cc-brown-dark);
    border-color: var(--cc-gold);
    transform: translateY(-50%) scale(1.1);
}

.custom-modal-prev {
    left: 30px;
}

.custom-modal-next {
    right: 30px;
}

/* =========================================================
   MODAL IMAGE - 4/5 Ratio
========================================================== */
.custom-modal-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    display: block;
    background: #1a1a1a;
}

/* Modal Info */
.custom-modal-info {
    padding: 18px 25px 22px;
    text-align: center;
    background: #ffffff;
}

.custom-modal-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2A1E17;
    margin-bottom: 0;
}

.custom-modal-tag {
    display: inline-block;
    margin-top: 8px;
    padding: 5px 18px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: var(--cc-brown-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* =========================================================
   MODAL RESPONSIVE
========================================================== */

/* Tablet */
@media (max-width: 991px) {
    .custom-modal-wrapper {
        padding: 15px;
    }
    .custom-modal-card {
        max-width: 90%;
        max-height: 92vh;
    }
    .custom-modal-image {
        aspect-ratio: 3 / 4;
        max-height: 90vh;
    }
    .custom-modal-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    .custom-modal-prev {
        left: 15px;
    }
    .custom-modal-next {
        right: 15px;
    }
    .custom-modal-close {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
        top: 25px;
        right: 30px;
    }
    .custom-modal-info {
        padding: 16px 22px 20px;
    }
    .custom-modal-title {
        font-size: 1.15rem;
    }
    .custom-modal-tag {
        font-size: 0.7rem;
        padding: 4px 16px;
    }
}

/* Mobile Large */
@media (max-width: 767px) {
    .custom-modal-wrapper {
        padding: 10px;
    }
    .custom-modal-card {
        max-width: 96%;
        border-radius: 14px;
        max-height: 94vh;
    }
    .custom-modal-image {
        aspect-ratio: 3 / 4;
        max-height: 80vh;
        min-height: 250px;
        object-fit: contain;
    }
    .custom-modal-arrow {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        background: rgba(0, 0, 0, 0.8);
        border-width: 1.5px;
    }
    .custom-modal-prev {
        left: 5px;
    }
    .custom-modal-next {
        right: 5px;
    }
    .custom-modal-close {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
        top: 15px;
        right: 18px;
    }
    .custom-modal-info {
        padding: 14px 18px 18px;
    }
    .custom-modal-title {
        font-size: 1.05rem;
    }
    .custom-modal-tag {
        font-size: 0.65rem;
        padding: 4px 14px;
    }
}

/* Mobile Small */
@media (max-width: 575px) {
    .custom-modal-wrapper {
        padding: 6px;
    }
    .custom-modal-card {
        max-width: 98%;
        border-radius: 12px;
        max-height: 96vh;
    }
    .custom-modal-image {
        aspect-ratio: 4 / 5;
        max-height: 50vh;
        min-height: 200px;
        object-fit: contain;
    }
    .custom-modal-arrow {
        width: 34px;
        height: 34px;
        font-size: 0.85rem;
        background: rgba(0, 0, 0, 0.85);
        border-width: 1.5px;
    }
    .custom-modal-prev {
        left: 5px;
    }
    .custom-modal-next {
        right: 5px;
    }
    .custom-modal-close {
        width: 34px;
        height: 34px;
        font-size: 1rem;
        top: 12px;
        right: 12px;
    }
    .custom-modal-info {
        padding: 12px 14px 16px;
    }
    .custom-modal-title {
        font-size: 0.95rem;
    }
    .custom-modal-tag {
        font-size: 0.6rem;
        padding: 3px 12px;
    }
}

/* Mobile Extra Small */
@media (max-width: 380px) {
    .custom-modal-wrapper {
        padding: 4px;
    }
    .custom-modal-card {
        max-width: 99%;
        border-radius: 10px;
        max-height: 97vh;
    }
    .custom-modal-image {
        aspect-ratio: 4 / 5;
        max-height: 42vh;
        min-height: 160px;
        object-fit: contain;
    }
    .custom-modal-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
        background: rgba(0, 0, 0, 0.9);
        border-width: 1px;
    }
    .custom-modal-prev {
        left: -2px;
    }
    .custom-modal-next {
        right: -2px;
    }
    .custom-modal-close {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
        top: 70px;
        right: 20px;
    }
    .custom-modal-info {
        padding: 10px 12px 14px;
    }
    .custom-modal-title {
        font-size: 0.85rem;
    }
    .custom-modal-tag {
        font-size: 0.55rem;
        padding: 2px 10px;
    }
}

/* =========================================================
   REDUCE MOTION
========================================================== */
@media (prefers-reduced-motion: reduce) {
    .custom-modal-card {
        animation: none !important;
    }
    .custom-modal-close,
    .custom-modal-arrow {
        transition: none !important;
    }
    .custom-modal-arrow:hover {
        transform: translateY(-50%) scale(1) !important;
    }
}

/* =========================================================
   7. RESPONSIVE - LAPTOP (max-width: 1200px)
========================================================== */

@media (max-width: 1200px) {
    .group-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================================
   8. RESPONSIVE - TABLET (max-width: 991px)
========================================================== */

@media (max-width: 991px) {
    .gallery-hero {
        padding: 150px 0 60px;
    }

    .group-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .specialisation-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .specialisation-banner i {
        font-size: 2rem;
    }

    .specialisation-banner p {
        font-size: 0.95rem;
    }

    .project-group {
        padding: 20px;
    }

    .group-heading {
        font-size: 1.5rem;
    }

    .instagram-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
}

/* =========================================================
   9. RESPONSIVE - MOBILE (max-width: 767px)
========================================================== */

@media (max-width: 767px) {
    .gallery-hero {
        padding: 100px 0 50px;
    }

    .gallery-hero h1 {
        font-size: 42px;
    }

    .gallery-hero p {
        font-size: 1rem;
    }

    .gallery-section {
        padding: 40px 0 60px;
    }

    .gallery-filters {
        gap: 8px;
        margin-bottom: 30px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Group Toggle for Mobile */
    .group-toggle-btn {
        display: flex;
    }

    .group-heading {
        display: none;
    }

    .group-gallery {
        max-height: 0;
        overflow: hidden;
        margin-top: 0;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        transition: max-height 0.5s ease, margin-top 0.3s ease;
    }

    .group-gallery.open {
        max-height: none;
        overflow: visible;
        margin-top: 15px;
    }

    .project-group {
        padding: 15px;
        border-radius: 15px;
    }

    .gallery-item-inner {
        border-radius: 12px;
    }

    .gallery-info h4 {
        font-size: 0.95rem;
    }

    .gallery-info span {
        font-size: 0.7rem;
        padding: 3px 10px;
    }

    .specialisation-banner {
        padding: 20px;
        border-radius: 15px;
    }

    .specialisation-banner p {
        font-size: 0.9rem;
    }

    .specialisation-banner i {
        font-size: 1.8rem;
    }

    .instagram-cta-inner {
        padding: 20px;
        gap: 15px;
    }

    .instagram-cta-inner i.fa-instagram {
        font-size: 2rem;
    }

    .instagram-cta-inner p {
        font-size: 0.9rem;
    }

    .btn-instagram {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
}

/* =========================================================
   10. RESPONSIVE - SMALL MOBILE (max-width: 575px)
========================================================== */

@media (max-width: 575px) {
    .gallery-hero {
        padding: 80px 0 40px;
    }

    .gallery-hero h1 {
        font-size: 36px;
    }

    .gallery-hero p {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .gallery-divider .line {
        width: 50px;
    }

    .gallery-filters {
        gap: 6px;
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
        gap: 5px;
    }

    .group-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item-inner {
        border-radius: 10px;
    }

    .gallery-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        top: 10px;
        right: 10px;
    }

    .gallery-info h4 {
        font-size: 0.85rem;
        margin-bottom: 3px;
    }

    .gallery-info span {
        font-size: 0.65rem;
        padding: 3px 8px;
    }

    .gallery-overlay {
        padding: 10px;
    }

    .specialisation-banner {
        padding: 15px 18px;
        border-radius: 12px;
    }

    .specialisation-banner p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .specialisation-banner i {
        font-size: 1.5rem;
    }

    .project-group {
        padding: 12px;
    }

    .group-toggle-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .custom-modal-image {
        max-height: 38vh;
    }

    .custom-modal-info {
        padding: 12px 14px 16px;
    }

    .custom-modal-title {
        font-size: 0.95rem;
    }

    .custom-modal-tag {
        font-size: 0.65rem;
        padding: 3px 12px;
    }
}

/* =========================================================
   11. RESPONSIVE - EXTRA SMALL MOBILE (max-width: 380px)
========================================================== */

@media (max-width: 380px) {
    .gallery-hero {
        padding: 70px 0 30px;
    }

    .gallery-hero h1 {
        font-size: 30px;
    }

    .gallery-hero-badge {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .gallery-filters {
        gap: 5px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }

    .group-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-item-inner {
        border-radius: 8px;
    }

    .gallery-info h4 {
        font-size: 0.8rem;
    }

    .gallery-info span {
        font-size: 0.6rem;
        padding: 2px 6px;
    }

    .gallery-icon {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }

    .specialisation-banner p {
        font-size: 0.8rem;
    }

    .group-toggle-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .custom-modal-arrow {
        font-size: 1rem;
    }


    .btn-instagram {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
}

/* =========================================================
   12. REDUCE MOTION (Accessibility)
========================================================== */

@media (prefers-reduced-motion: reduce) {
    .gallery-item,
    .gallery-item-inner,
    .gallery-item-inner img,
    .gallery-item-inner video,
    .gallery-icon,
    .gallery-overlay,
    .filter-btn,
    .project-group,
    .group-gallery,
    .custom-modal-arrow,
    .custom-modal-close,
    .custom-modal-card,
    .btn-instagram {
        transition: none !important;
        animation: none !important;
    }

    .gallery-item-inner:hover,
    .gallery-item-inner:hover img,
    .gallery-item-inner:hover video,
    .gallery-icon:hover,
    .filter-btn:hover,
    .custom-modal-arrow:hover,
    .btn-instagram:hover {
        transform: none !important;
        box-shadow: none !important;
    }

    .custom-modal-card {
        animation: none !important;
    }
}

/* =========================================================
   13. FOCUS STATES (Accessibility)
========================================================== */

.filter-btn:focus-visible,
.group-toggle-btn:focus-visible,
.custom-modal-close:focus-visible,
.custom-modal-arrow:focus-visible,
.btn-instagram:focus-visible {
    outline: 3px solid rgba(255, 198, 0, 0.6);
    outline-offset: 4px;
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .gallery-item-inner {
        aspect-ratio: 4 / 5;  /* Mobile mein bhi vertical */
    }
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
    .gallery-item-inner {
        aspect-ratio: 4 / 5;
    }
}


/* =========================================================
   MODAL IMAGE - 1081px Breakpoint
========================================================== */

/* Screens larger than 1081px (Desktop Large) */
@media (min-width: 1082px) {
    .custom-modal-image {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        max-height: 75vh;
        object-fit: contain;
        display: block;
        background: #1a1a1a;
    }
    
    .custom-modal-card {
        max-width: 550px;
        max-height: 90vh;
    }
}

/* Screens smaller than 1081px (Laptop, Tablet, Mobile) */
@media (max-width: 1081px) {
    .custom-modal-image {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        max-height: 65vh;
        min-height: 300px;
        object-fit: contain;
        display: block;
        background: #1a1a1a;
    }
    
    .custom-modal-card {
        max-width: 90%;
        max-height: 92vh;
    }
}

/* Exactly above 1081px */
@media (min-width: 1082px) {
    .custom-modal-close {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        top: 30px;
        right: 40px;
    }
    .custom-modal-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .custom-modal-prev {
        left: 230px;
    }
    .custom-modal-next {
        right: 230px;
    }
}

/* Exactly at 1081px and below */
@media (max-width: 1081px) {
    .custom-modal-close {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
        top: 22px;
        right: 25px;
    }
    .custom-modal-arrow {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
    .custom-modal-prev {
        left: -8px;
    }
    .custom-modal-next {
        right: -8px;
    }
}




/* =========================================================
   TABLET 768px TO 990px - CONTENT UPAR, SLIDER NICHE (UPDATED)
   ========================================================= */

@media (min-width: 768px) and (max-width: 990px) {
    /* === CAROUSEL VISIBILITY === */
    #heroCarousel,
    .carousel,
    .carousel-inner,
    .carousel-item {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        min-height: auto !important;
        position: relative !important;
        overflow: visible !important;
    }

    .carousel-item {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: auto !important;
        height: auto !important;
        position: relative !important;
    }

    .carousel-item.active {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* === SLIDE BG - BACKGROUND IMAGE === */
    .carousel-item .slide-bg {
        display: block !important;
        visibility: visible !important;
        opacity: 0.3 !important;
        min-height: 100% !important;
        height: 100% !important;
        background-size: cover !important;
        background-position: center !important;
        position: absolute !important;
        inset: 0 !important;
        z-index: 0 !important;
    }

    .hero-slider-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: auto !important;
        height: auto !important;
        overflow: visible !important;
        /* Niche laane ke liye padding badhai hai */
        padding: 60px 0 60px !important; 
        position: relative !important;
    }

    /* === SLIDE CONTENT - PEHLE CONTENT, PHIR IMAGE === */
    .slide-content {
        /* Content ko niche laane ke liye padding-top badhaya */
        padding: 40px 20px 20px !important; 
        min-height: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        z-index: 5 !important;
        flex-direction: column !important;
        height: auto !important;
        background: transparent !important;
    }

    .slide-content .row {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 25px !important;
        width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        position: relative !important;
        z-index: 2 !important;
    }

    /* === CONTENT - UPAR === */
    .slide-content .col-lg-7 {
        order: 1 !important;
        text-align: center !important;
        padding: 30px 25px !important; /* Padding adjust ki hai */
        flex: 0 0 100% !important;
        max-width: 100% !important;
        display: block !important;
        position: relative !important;
        z-index: 3 !important;
        background: rgba(33, 25, 20, 0.85) !important;
        border-radius: 16px !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(255, 198, 0, 0.15) !important;
    }

    /* === IMAGE - NICHE (Shifted down) === */
    .slide-content .col-lg-5 {
        order: 2 !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
        z-index: 3 !important;
        /* Image ko aur niche laane ke liye margin-top */
        margin-top: 20px !important; 
    }

    /* === IMAGE SIZE (Badhi hui aur Text ke barabar) === */
    .slide-image-wrapper {
        /* Image ko bada karne ke liye width badhai */
        max-width: 450px !important; 
        padding: 10px !important;
        margin: 0 auto !important;
        display: block !important;
    }

    .slide-image-box {
        aspect-ratio: 1 / 1 !important;
        border-radius: 18px !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
        overflow: hidden !important;
        display: block !important;
        width: 100% !important;
        /* === OUTLINE / BORDER HATA DIYA GAYA HAI === */
        border: none !important; 
    }

    .slide-image-box img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        
    }

    /* === TEXT STYLES === */
    .slide-content h1 {
        font-size: 32px !important;
        line-height: 1.1 !important;
        max-width: 100% !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        display: block !important;
        color: #ffffff !important;
        /* Agar aapko text ko aur niche karna hai toh ye badhayein */
        margin-top: 10px !important; 
    }

    .slide-content p {
        font-size: 15px !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        display: block !important;
        color: rgba(255, 255, 255, 0.8) !important;
    }

    .badge-slide {
        font-size: 11px !important;
        padding: 8px 16px !important;
        margin-bottom: 15px !important;
        display: inline-flex !important;
        margin-left: auto !important;
        margin-right: auto !important;
        background: rgba(255, 198, 0, 0.15) !important;
        border: 1px solid rgba(255, 198, 0, 0.4) !important;
        color: var(--cc-gold) !important;
        backdrop-filter: blur(10px) !important;
    }

    /* === BUTTONS === */
    .slide-content .d-flex {
        gap: 12px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        display: flex !important;
    }

    .slide-content .btn {
        padding: 12px 24px !important;
        font-size: 14px !important;
        max-width: 200px !important;
        width: auto !important;
        display: inline-flex !important;
    }

    /* === CAROUSEL CONTROLS - SHOW === */
    .carousel-control-prev,
    .carousel-control-next {
        display: flex !important;
        width: 8% !important;
        opacity: 1 !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 15 !important;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 40px !important;
        height: 40px !important;
        background-size: 100% !important;
    }

    /* === CAROUSEL INDICATORS === */
    .carousel-indicators {
        bottom: 10px !important;
        display: flex !important;
        justify-content: center !important;
        gap: 8px !important;
        z-index: 15 !important;
        position: relative !important;
        margin-top: 20px !important;
        padding-bottom: 10px !important;
    }

    .carousel-indicators button {
        width: 25px !important;
        height: 3px !important;
        margin: 0 4px !important;
        border-radius: 999px !important;
        background: rgba(255, 255, 255, 0.4) !important;
        border: none !important;
    }

    .carousel-indicators button.active {
        width: 45px !important;
        background: var(--cc-gold) !important;
    }

    /* === FLOATING CAKE === */
    .floating-cake {
        max-height: 350px !important;
        max-width: 100% !important;
    }
}

/* =========================================================
   CREAM CORNER - INSTAGRAM FEED COMPLETE CSS (UPDATED)
   ========================================================= */

.instagram-feed {
    background-color: #1a1512; /* Dark Brown Background */
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Section Header */
.instagram-feed .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.instagram-feed .section-header h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.instagram-feed .section-header h2 span {
    color: #ffc600; /* Cream Corner Gold */
}

.instagram-feed .subtitle {
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 0;
}

.instagram-feed .subtitle a {
    color: #ffc600;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.instagram-feed .subtitle a:hover {
    color: #ffffff;
}

/* Grid & Cards */
.instagram-grid {
    margin-top: 20px;
}

.instagram-grid .col-4 {
    padding: 0 10px;
    margin-bottom: 25px;
}

/* Card Structure */
.insta-card {
    display: block;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    background-color: #2a211c;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.insta-card-image {
    position: relative;
    width: 100%;
    height: 280px; /* Default height for Desktop */
    overflow: hidden;
}

.insta-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-card:hover .insta-card-image img {
    transform: scale(1.1);
}

/* Instagram Badge (Top Right) */
.insta-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 198, 0, 0.9); /* Gold */
    color: #1a1512;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Hover Overlay */
.insta-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 21, 18, 0.92);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 20px;
    color: #ffffff;
    z-index: 1;
}

.insta-card:hover .insta-card-overlay {
    opacity: 1;
}

.insta-card-overlay > i {
    font-size: 30px;
    color: #ffc600;
    margin-bottom: 15px;
}

.insta-title {
    font-weight: bold;
    font-size: 18px;
    color: #ffc600;
    margin-bottom: 10px;
    display: block;
    line-height: 1.2;
}

.insta-subtitle {
    font-size: 13px;
    color: #ffffff;
    line-height: 1.5;
    display: block;
}

/* Buttons (Single Button) */
.instagram-btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-instagram {
    display: inline-block;
    padding: 14px 30px;
    background-color: #ffc600;
    color: #1a1512;
    font-weight: bold;
    font-size: 16px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ffc600;
}

.btn-instagram i {
    margin-right: 8px;
}

.btn-instagram:hover {
    background-color: #ffffff;
    color: #1a1512;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 198, 0, 0.3);
}

/* =========================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================= */

/* Tablet (768px to 991px) - 2 Cards per row */
@media (min-width: 768px) and (max-width: 991px) {
    .instagram-feed .section-header h2 {
        font-size: 30px;
    }

    .instagram-grid .col-4 {
        flex: 0 0 50%; /* 2 cards per row */
        max-width: 50%;
    }

    .insta-card-image {
        height: 250px;
    }
}

/* Mobile (Less than 768px) - 1 Card per row */
@media (max-width: 767px) {
    .instagram-feed {
        padding: 40px 0;
    }

    .instagram-feed .section-header h2 {
        font-size: 26px;
    }

    .instagram-feed .subtitle {
        font-size: 14px;
    }

    .instagram-grid .col-4 {
        flex: 0 0 100%; /* 1 card per row */
        max-width: 100%;
        padding: 0 15px;
    }

    .insta-card-image {
        height: 270px; /* Optimized for mobile */
    }

    .insta-title {
        font-size: 16px;
    }

    .insta-subtitle {
        font-size: 12px;
    }

    .instagram-btn-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-instagram {
        width: 100%;
        max-width: 300px;
        margin: 0;
    }
}



/* =========================================================
   CERTIFICATION SECTION - UPDATED (DARK CHARCOAL THEME)
   ========================================================= */

.certification-section {
    /* Journey section se alag dikhne ke liye Dark Charcoal Gray */
    background: linear-gradient(135deg, #232020 0%, #2e2a2a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Decorative Glow (Aur Premium look ke liye) */
.certification-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 198, 0, 0.1), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.certification-section .container {
    position: relative;
    z-index: 1;
}

.certification-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.certification-section .section-header h2 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.certification-section .section-header h2 span {
    color: #ffc600; /* Gold */
}

.certification-section .section-header .subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.certification-section .title-border {
    width: 80px;
    height: 3px;
    background: #ffc600;
    margin: 15px auto;
    border-radius: 50px;
}

/* Grid Layout (Image Left, Text Right) */
.certification-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT: Image */
.certification-image-col {
    position: relative;
}

.certification-img-wrapper {
    position: relative;
    max-width: 550px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 198, 0, 0.4); /* Gold Border */
    background: #000;
}

.certification-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: auto;
    transition: transform 0.5s ease;
}

.certification-img-wrapper:hover img {
    transform: scale(1.05);
}

/* RIGHT: Text */
.certification-text-col {
    max-width: 600px;
}

.certification-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.15);
    border: 1px solid rgba(255, 198, 0, 0.4);
    color: #ffc600;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.certification-title {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 10px;
}

.certification-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffc600; /* Gold */
    margin-bottom: 20px;
}

.certification-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Meta Details (Date, Instructor, Location) */
.certification-meta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.08); /* Thoda bright background */
    border: 1px solid rgba(255, 198, 0, 0.2); /* Gold Border */
    border-radius: 10px;
}

.meta-item i {
    font-size: 24px;
    color: #ffc600;
}

.meta-item div {
    display: flex;
    flex-direction: column;
}

.meta-item strong {
    font-size: 15px;
    color: #ffffff;
}

.meta-item span {
    font-size: 13px;
    color: var(--cc-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

/* Footer Checks */
.certification-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.certification-footer p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.certification-footer p i {
    color: #ffc600;
}

/* =========================================================
   RESPONSIVE DESIGN (LAPTOP, TABLET, MOBILE)
   ========================================================= */

/* Laptop (max-width: 1200px) */
@media (max-width: 1200px) {
    .certification-grid {
        gap: 40px;
    }
    
    .certification-img-wrapper {
        max-width: 480px;
    }
    
    .certification-title {
        font-size: 34px;
    }
}

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .certification-section {
        padding: 60px 0;
    }
    
    .certification-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .certification-text-col {
        margin: 0 auto;
        max-width: 100%;
    }
    
    .certification-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .certification-title {
        font-size: 32px;
    }
    
    .certification-meta {
        justify-content: center;
        align-items: center;
    }
    
    .meta-item {
        justify-content: center;
        text-align: left;
        width: 100%;
        max-width: 400px;
    }
    
    .certification-footer {
        justify-content: center;
    }
    
    .certification-img-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .certification-section {
        padding: 50px 0;
    }
    
    .certification-section .section-header h2 {
        font-size: 32px;
    }
    
    .certification-subtitle {
        font-size: 16px;
    }
    
    .certification-img-wrapper {
        max-width: 100%;
        width: 100%;
        border-radius: 15px;
    }
    
    .certification-img-wrapper img {
        height: auto;
        object-fit: contain;
    }
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
    .certification-section {
        padding: 40px 0;
    }
    
    .certification-section .section-header h2 {
        font-size: 28px;
    }
    
    .certification-title {
        font-size: 26px;
    }
    
    .certification-subtitle {
        font-size: 14px;
    }
    
    .certification-desc {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .certification-badge {
        font-size: 0.8rem;
        padding: 8px 14px;
    }
    
    .certification-meta {
        display: flex;
        flex-direction: column;
    }
    
    .meta-item {
        width: 100%;
        justify-content: flex-start;
        text-align: left;
        padding: 10px 12px;
    }
    
    .meta-item i {
        font-size: 20px;
    }
    
    .certification-footer {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .certification-footer p {
        font-size: 13px;
    }
}

/* Extra Small (max-width: 380px) */
@media (max-width: 380px) {
    .certification-title {
        font-size: 22px;
    }
    
    .certification-subtitle {
        font-size: 13px;
    }
    
    .meta-item {
        gap: 10px;
    }
    
    .meta-item i {
        font-size: 18px;
    }
}


/* Universal fix to kill horizontal scrollbar without breaking sticky */
html, body {
    overflow-x: clip !important; /* 'clip' sticky ko preserve karta hai, 'hidden' se zyada safe hai */
    width: 100% !important;
    max-width: 100% !important;
}

/* Mobile par kuch extra safety */
@media (max-width: 767px) {
    body, html {
        overflow-x: clip !important;
    }
    
    /* Ensure no child element is exceeding width (like carousel) */
    .carousel-inner, .carousel-item, .hero-slider-section {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
}


/* =========================================================
   CERTIFICATE SHOWCASE SECTION - COMPLETE
   ========================================================= */

.certificate-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1512 0%, #2a201b 100%);
    position: relative;
    overflow: hidden;
}

.certificate-showcase::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 198, 0, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.certificate-showcase .container {
    position: relative;
    z-index: 1;
}

.certificate-showcase .section-header h2 {
    color: #ffffff;
}

.certificate-showcase .section-header h2 span {
    color: var(--cc-gold);
}

.certificate-showcase .section-header .subtitle {
    color: rgba(255, 255, 255, 0.75);
}

/* Certificate Grid */
.certificate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 20px;
}

/* Left - Certificate Image */
.certificate-image-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.certificate-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    border: 3px solid rgba(255, 198, 0, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.certificate-image-wrapper:hover img {
    transform: scale(1.02);
    box-shadow: 0 40px 80px rgba(255, 198, 0, 0.15);
}

/* Tablet */
@media (max-width: 991px) {
    .certificate-image-wrapper {
        max-width: 450px;
    }

    .certificate-image-wrapper img {
        border-radius: 14px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .certificate-image-wrapper {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    .certificate-image-wrapper img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        border-width: 2px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .certificate-image-wrapper {
        max-width: 100%;
    }

    .certificate-image-wrapper img {
        width: 100%;
        border-radius: 10px;
        border-width: 2px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
}

/* Certificate Badge on Image */
.certificate-badge-float {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: var(--cc-brown-dark);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(255, 198, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.certificate-badge-float i {
    font-size: 1.2rem;
}

/* Right - Certificate Info */
.certificate-info {
    color: #ffffff;
}

.certificate-info .cert-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.15);
    border: 1px solid rgba(255, 198, 0, 0.4);
    color: var(--cc-gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.certificate-info h2 {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 10px;
}

.certificate-info h2 span {
    color: var(--cc-gold);
}

.certificate-info .cert-subtitle {
    font-size: 1.1rem;
    color: var(--cc-gold);
    font-weight: 500;
    margin-bottom: 15px;
}

.certificate-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Certificate Features List */
.cert-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 25px;
}

.cert-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cert-feature-item:hover {
    background: rgba(255, 198, 0, 0.1);
    border-color: rgba(255, 198, 0, 0.2);
}

.cert-feature-item i {
    color: var(--cc-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.cert-feature-item span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

/* Certificate CTA */
.cert-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.cert-cta-buttons .btn-gold-cta {
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: var(--cc-brown-dark) !important;
    border: none;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 198, 0, 0.25);
}

.cert-cta-buttons .btn-gold-cta:hover {
    background: #ffffff !important;
    color: var(--cc-brown-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.cert-cta-buttons .btn-outline-white {
    background: transparent !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 999px;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cert-cta-buttons .btn-outline-white:hover {
    background: #ffffff !important;
    color: var(--cc-brown-dark) !important;
    border-color: #ffffff !important;
    transform: translateY(-3px);
}

/* =========================================================
   CERTIFICATE SECTION - RESPONSIVE
   ========================================================= */

/* Tablet */
@media (max-width: 991px) {
    .certificate-showcase {
        padding: 60px 0;
    }
    
    .certificate-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .certificate-info {
        text-align: center;
    }
    
    .certificate-info .cert-tag {
        margin-left: auto;
        margin-right: auto;
    }
    
    .cert-features {
        justify-content: center;
        text-align: left;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cert-cta-buttons {
        justify-content: center;
    }
    
    .certificate-image-wrapper {
        max-width: 420px;
    }
    
    .certificate-badge-float {
        bottom: -10px;
        right: -10px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .certificate-showcase {
        padding: 50px 0;
    }
    
    .certificate-info h2 {
        font-size: 30px;
    }
    
    .certificate-info .cert-subtitle {
        font-size: 1rem;
    }
    
    .certificate-info p {
        font-size: 0.95rem;
    }
    
    .cert-features {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 100%;
    }
    
    .cert-feature-item {
        padding: 10px 14px;
    }
    
    .cert-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cert-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .certificate-image-wrapper {
        max-width: 340px;
    }
    
    .certificate-badge-float {
        bottom: -8px;
        right: -8px;
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .certificate-showcase {
        padding: 40px 0;
    }
    
    .certificate-info h2 {
        font-size: 26px;
    }
    
    .certificate-info .cert-subtitle {
        font-size: 0.9rem;
    }
    
    .certificate-info p {
        font-size: 0.9rem;
    }
    
    .certificate-image-wrapper {
        max-width: 280px;
    }
    
    .certificate-badge-float {
        bottom: -5px;
        right: -5px;
        padding: 6px 12px;
        font-size: 0.65rem;
        border-radius: 8px;
    }
    
    .certificate-badge-float i {
        font-size: 0.9rem;
    }
}

/* =========================================================
   WEDDING CAKES SECTION - MENU PAGE STYLE (COVER STYLE)
   ========================================================= */

.wedding-cakes-section {
    padding: 80px 0;
    background: var(--cc-cream);
    position: relative;
    overflow: hidden;
}

.wedding-cakes-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 198, 0, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.wedding-cakes-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.wedding-cakes-section .section-tagline {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cc-orange);
    margin-bottom: 10px;
}

.wedding-cakes-section .section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: var(--cc-brown-dark);
    margin-bottom: 10px;
}

.wedding-cakes-section .section-title span {
    color: var(--cc-orange);
}

.wedding-cakes-section .section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.wedding-cakes-section .section-divider .line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cc-gold), transparent);
}

.wedding-cakes-section .section-divider i {
    color: var(--cc-gold);
    font-size: 1.2rem;
}

.wedding-cakes-section .section-subtitle {
    color: var(--cc-muted);
    font-size: 1.05rem;
}

.wedding-cakes-section .section-subtitle strong {
    color: var(--cc-orange);
    font-weight: 600;
}

/* =========================================================
   WEDDING CAKE CARD - SAME AS MENU ITEM CARD (COVER STYLE)
   ========================================================= */

.wedding-cake-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07), 0 4px 14px rgba(85, 71, 62, 0.07);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: cardStagger 0.6s ease forwards;
}

/* Stagger animation */
.wedding-cake-card:nth-child(1) { animation-delay: 0.05s; }
.wedding-cake-card:nth-child(2) { animation-delay: 0.10s; }
.wedding-cake-card:nth-child(3) { animation-delay: 0.15s; }
.wedding-cake-card:nth-child(4) { animation-delay: 0.20s; }
.wedding-cake-card:nth-child(5) { animation-delay: 0.25s; }
.wedding-cake-card:nth-child(6) { animation-delay: 0.30s; }

@keyframes cardStagger {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Thin foil rim that lights up on hover */
.wedding-cake-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: var(--foil-gradient);
    background-size: 220% 220%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
    z-index: 4;
}

.wedding-cake-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--luxury-shadow);
}

.wedding-cake-card:hover::after {
    opacity: 1;
    animation: foilShift 4s ease-in-out infinite;
}

/* Shine sweep */
.wedding-cake-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 198, 0, 0.18), transparent);
    transition: left 0.8s;
    z-index: 3;
    pointer-events: none;
}

.wedding-cake-card:hover::before {
    left: 140%;
}

/* Image */
.wedding-cake-img-wrap {
    position: relative;
    height: 290px;
    padding: 0;
    display: block;
    background: linear-gradient(180deg, #ffffff, var(--cc-cream-dark));
    overflow: hidden;
    flex-shrink: 0;
}

.wedding-cake-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(47, 36, 31, 0.06),
        transparent 45%
    );
    pointer-events: none;
    z-index: 2;
}

.wedding-cake-img-wrap img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover !important;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wedding-cake-card:hover .wedding-cake-img-wrap img {
    transform: scale(1.06);
}

/* Badge - Same as menu item badge */
.wedding-cake-badge {
    position: absolute;
    top: 13px;
    right: 13px;
    padding: 6px 17px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
    animation: badgePulse 2.2s ease-in-out infinite;
    color: #fff;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.wedding-cake-badge.popular {
    background: linear-gradient(135deg, #2980B9, #3498DB);
    color: #fff;
    box-shadow: 0 5px 16px rgba(52, 152, 219, 0.4);
}

.wedding-cake-badge.premium {
    background: linear-gradient(135deg, var(--cc-brown), #8B6914);
    color: #fff;
    box-shadow: 0 5px 16px rgba(85, 71, 62, 0.4);
}

.wedding-cake-badge.best-seller {
    background: linear-gradient(135deg, #F4B400, #F39C12);
    color: var(--cc-brown-dark);
    box-shadow: 0 5px 16px rgba(244, 180, 0, 0.4);
}

.wedding-cake-badge.classic {
    background: linear-gradient(135deg, #6C7A89, #95A5A6);
    color: #fff;
    box-shadow: 0 5px 16px rgba(108, 122, 137, 0.4);
}

.wedding-cake-badge.royal {
    background: linear-gradient(135deg, #2C3E50, #8B4513);
    color: #fff;
    box-shadow: 0 5px 16px rgba(44, 62, 80, 0.4);
}

.wedding-cake-badge.custom {
    background: linear-gradient(135deg, #8E44AD, #9B59B6);
    color: #fff;
    box-shadow: 0 5px 16px rgba(142, 68, 173, 0.4);
}

/* Content */
.wedding-cake-content {
    padding: 16px 20px 16px;
    background: rgba(255, 255, 255, 0.97);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wedding-cake-content h3 {
    font-size: 17.5px;
    font-weight: 600;
    color: var(--cc-brown-dark);
    margin-bottom: 5px;
    transition: color 0.3s ease;
    font-family: 'Playfair Display', serif;
}

.wedding-cake-card:hover .wedding-cake-content h3 {
    color: var(--cc-orange);
}

.wedding-cake-content p {
    font-size: 15px;
    color: var(--cc-muted);
    line-height: 1.55;
    margin-bottom: 8px;
    flex: 0 1 auto;
}

/* Footer */
.wedding-cake-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px dashed var(--cc-border);
    margin-top: auto;
}

.wedding-cake-price {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--cc-orange);
    letter-spacing: 0.2px;
}

/* WhatsApp order button - Same as menu */
.wedding-cake-order-btn {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 7px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.22);
}

.wedding-cake-order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.5s ease;
}

.wedding-cake-order-btn:hover::before {
    left: 100%;
}

.wedding-cake-order-btn:hover {
    background: #128C7E;
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.4);
}

.wedding-cake-order-btn:active {
    transform: scale(0.95);
}

.wedding-cake-order-btn i {
    font-size: 14px;
}

/* View All Button */
.wedding-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 35px;
    border-radius: 999px;
    background: var(--cc-brown);
    color: #ffffff !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.wedding-view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.wedding-view-all-btn:hover::before {
    left: 100%;
}

.wedding-view-all-btn:hover {
    background: var(--cc-brown-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(47, 36, 31, 0.2);
    color: #ffffff !important;
}

/* =========================================================
   RESPONSIVE - WEDDING CAKES (SAME AS MENU)
   ========================================================= */

@media (max-width: 1200px) {
    .wedding-cake-img-wrap {
        height: 200px;
    }
}

@media (max-width: 991px) {
    .wedding-cakes-section {
        padding: 60px 0;
    }
    
    .wedding-cake-card {
        height: auto !important;
        min-height: 320px;
        border-radius: 14px;
        overflow: hidden;
    }
    
    .wedding-cake-img-wrap {
        height: 280px;
        padding: 6px;
        background: #f5f0eb;
        flex-shrink: 0;
    }
    
    .wedding-cake-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .wedding-cake-badge {
        font-size: 12px;
        padding: 3px 9px;
        top: 8px;
        right: 8px;
    }
    
    .wedding-cake-content {
        padding: 12px 14px 14px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .wedding-cake-content h3 {
        font-size: 14px;
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .wedding-cake-content p {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 6px;
        min-height: 28px;
        max-height: 40px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        word-break: break-word;
    }
    
    .wedding-cake-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 10px;
        border-top: 1px dashed var(--cc-border);
        margin-top: 8px;
    }
    
    .wedding-cake-price {
        font-size: 14px;
    }
    
    .wedding-cake-order-btn {
        padding: 5px 14px;
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    .wedding-cakes-section {
        padding: 50px 0;
    }
    
    .wedding-cakes-section .section-title {
        font-size: 32px;
    }
    
    .wedding-cake-card {
        min-height: 290px;
        border-radius: 12px;
    }
    
    .wedding-cake-img-wrap {
        height: 140px;
        padding: 5px;
    }
    
    .wedding-cake-content {
        padding: 10px 12px 12px;
    }
    
    .wedding-cake-content h3 {
        font-size: 13px;
        margin-bottom: 3px;
    }
    
    .wedding-cake-content p {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 4px;
        min-height: 24px;
        max-height: 34px;
        -webkit-line-clamp: 2;
    }
    
    .wedding-cake-footer {
        padding-top: 6px;
    }
    
    .wedding-cake-price {
        font-size: 13px;
    }
    
    .wedding-cake-order-btn {
        padding: 4px 12px;
        font-size: 10px;
    }
}

@media (max-width: 575px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding-left: 12px;
        padding-right: 12px;
        overflow-x: hidden;
    }
    
    .wedding-cakes-section {
        padding: 40px 0;
    }
    
    .wedding-cakes-section .section-title {
        font-size: 28px;
    }
    
    .wedding-cakes-section .section-subtitle {
        font-size: 0.95rem;
    }
    
    .wedding-cake-card {
        min-height: 290px;
        max-height: 370px;
        border-radius: 12px;
        overflow: hidden;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .wedding-cake-img-wrap {
        height: 160px;
        padding: 4px;
        background: #f5f0eb;
        flex-shrink: 0;
    }
    
    .wedding-cake-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .wedding-cake-content {
        padding: 8px 10px 10px;
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 75px;
    }
    
    .wedding-cake-content h3 {
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: var(--cc-brown-dark);
    }
    
    .wedding-cake-content p {
        font-size: 12px;
        line-height: 1.3;
        margin-bottom: 6px;
        min-height: 20px;
        max-height: 30px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        word-break: break-word;
        color: var(--cc-muted);
    }
    
    .wedding-cake-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 8px;
        border-top: 1px dashed var(--cc-border);
        margin-top: 6px;
        flex-wrap: wrap;
        gap: 4px;
    }
    
    .wedding-cake-price {
        font-size: 12px;
        font-weight: 700;
        color: var(--cc-orange);
    }
    
    .wedding-cake-order-btn {
        padding: 3px 10px;
        font-size: 9px;
        gap: 3px;
        border-radius: 30px;
        min-width: 40px;
    }
    
    .wedding-cake-order-btn i {
        font-size: 10px;
    }
    
    .wedding-cake-badge {
        font-size: 9px;
        padding: 3px 8px;
        top: 6px;
        right: 6px;
        border-radius: 30px;
        letter-spacing: 0.2px;
        max-width: 100px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .wedding-view-all-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .wedding-cake-card {
        min-height: 230px;
        max-height: 300px;
        border-radius: 10px;
    }
    
    .wedding-cake-img-wrap {
        height: 150px;
        padding: 3px;
    }
    
    .wedding-cake-content {
        padding: 6px 8px 8px;
        min-height: 60px;
    }
    
    .wedding-cake-content h3 {
        font-size: 11px;
    }
    
    .wedding-cake-content p {
        font-size: 10px;
        min-height: 16px;
        max-height: 24px;
        -webkit-line-clamp: 2;
    }
    
    .wedding-cake-price {
        font-size: 11px;
    }
    
    .wedding-cake-order-btn {
        padding: 2px 8px;
        font-size: 8px;
        min-width: 35px;
    }
    
    .wedding-cake-order-btn i {
        font-size: 8px;
    }
}

/* =========================================================
   REDUCE MOTION (Accessibility)
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .wedding-cake-card,
    .wedding-cake-card::before,
    .wedding-cake-card::after,
    .wedding-cake-badge,
    .wedding-cake-order-btn,
    .wedding-view-all-btn {
        animation: none !important;
        transition: none !important;
    }
    
    .wedding-cake-card:hover {
        transform: none !important;
    }
    
    .wedding-cake-card:hover .wedding-cake-img-wrap img {
        transform: none !important;
    }
    
    .wedding-cake-order-btn:hover {
        transform: none !important;
    }
}

/* =========================================================
   FOCUS STATES (Accessibility)
   ========================================================= */

.wedding-cake-order-btn:focus-visible,
.wedding-view-all-btn:focus-visible {
    outline: 3px solid var(--cc-gold);
    outline-offset: 4px;
}



/* =========================================================
   MISSION & VISION SECTION - PREMIUM
   ========================================================= */

.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cc-cream) 0%, var(--cc-cream-dark) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.mission-vision-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 198, 0, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mission-vision-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 126, 0, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mission-vision-section .container {
    position: relative;
    z-index: 1;
}

/* =========================================================
   SECTION HEADER
   ========================================================= */

.mv-header {
    text-align: center;
    margin-bottom: 60px;
}

.mv-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.12);
    border: 1px solid rgba(255, 198, 0, 0.25);
    color: var(--cc-orange);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.mv-tagline i {
    color: var(--cc-gold);
    font-size: 14px;
}

.mv-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: var(--cc-brown-dark);
    margin-bottom: 10px;
}

.mv-title span {
    color: var(--cc-orange);
}

.mv-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mv-divider .line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cc-gold), transparent);
}

.mv-divider i {
    color: var(--cc-gold);
    font-size: 1.2rem;
}

.mv-subtitle {
    color: var(--cc-muted);
    font-size: 1.05rem;
    font-weight: 400;
}

/* =========================================================
   GRID LAYOUT
   ========================================================= */

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 10px;
}

/* =========================================================
   MISSION & VISION CARDS
   ========================================================= */

.mv-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 45px 40px 40px;
    box-shadow: 0 10px 35px rgba(47, 36, 31, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Card Hover Effect */
.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(47, 36, 31, 0.12);
    border-color: var(--cc-gold);
}

/* Gold Foil Rim - On Hover */
.mv-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(120deg, #B8860B 0%, #FFE8A3 22%, #FFC600 45%, #FFF6D8 60%, #D99E00 78%, #FFC600 100%);
    background-size: 220% 220%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
    z-index: 4;
}

.mv-card:hover::after {
    opacity: 1;
    animation: foilShift 4s ease-in-out infinite;
}

@keyframes foilShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Shine Effect */
.mv-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 198, 0, 0.12), transparent);
    transition: left 0.8s;
    z-index: 3;
    pointer-events: none;
}

.mv-card:hover::before {
    left: 140%;
}

/* =========================================================
   CARD ICON
   ========================================================= */

.mv-card-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 2rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

/* Mission Card Icon - Gold Gradient */
.mission-card .mv-card-icon {
    background: linear-gradient(135deg, rgba(255, 198, 0, 0.15), rgba(255, 126, 0, 0.15));
    color: var(--cc-orange);
}

.mission-card:hover .mv-card-icon {
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: var(--cc-brown-dark);;
    box-shadow: 0 10px 30px rgba(255, 126, 0, 0.3);
}

/* Vision Card Icon - Brown Gradient */
.vision-card .mv-card-icon {
    background: linear-gradient(135deg, rgba(255, 198, 0, 0.15), rgba(255, 126, 0, 0.15));
    color: var(--cc-orange);
}

.vision-card:hover .mv-card-icon {
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: var(--cc-orange);
    box-shadow: 0 10px 30px rgba(255, 126, 0, 0.3);
}

/* =========================================================
   CARD TITLE
   ========================================================= */

.mv-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--cc-brown-dark);
    margin-bottom: 20px;
}

.mv-card-title span {
    color: var(--cc-orange);
}

.vision-card .mv-card-title span {
    color: var(--cc-orange);
}

/* =========================================================
   CARD CONTENT
   ========================================================= */

.mv-card-content {
    flex: 1;
}

.mv-card-content p {
    color: var(--cc-text);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.mv-card-content p:last-child {
    margin-bottom: 0;
}

.mv-card-content p strong {
    color: var(--cc-brown-dark);
    font-weight: 600;
}

.mv-card-content p strong.gold {
    color: var(--cc-orange);
}

/* =========================================================
   CARD FEATURES / BADGES
   ========================================================= */

.mv-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed rgba(85, 71, 62, 0.1);
}

.mv-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(85, 71, 62, 0.08);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cc-text);
    transition: all 0.3s ease;
}

.mv-feature i {
    color: var(--cc-gold);
    font-size: 0.8rem;
}

.mv-card:hover .mv-feature {
    background: rgba(255, 198, 0, 0.06);
    border-color: rgba(255, 198, 0, 0.15);
}

.mv-feature:hover {
    background: rgba(255, 198, 0, 0.12);
    border-color: var(--cc-gold);
    transform: translateY(-2px);
}

/* =========================================================
   RESPONSIVE - LAPTOP (max-width: 1200px)
   ========================================================= */

@media (max-width: 1200px) {
    .mission-vision-section {
        padding: 80px 0;
    }
    
    .mv-card {
        padding: 35px 30px 30px;
    }
    
    .mv-card-title {
        font-size: 26px;
    }
}

/* =========================================================
   RESPONSIVE - TABLET (max-width: 991px)
   ========================================================= */

@media (max-width: 991px) {
    .mission-vision-section {
        padding: 70px 0;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .mv-card {
        padding: 35px 30px 30px;
        text-align: center;
    }
    
    .mv-card-icon {
        margin-left: auto;
        margin-right: auto;
    }
    
    .mv-card-features {
        justify-content: center;
    }
    
    .mv-header {
        margin-bottom: 45px;
    }
    
    .mv-title {
        font-size: 36px;
    }
}

/* =========================================================
   RESPONSIVE - MOBILE (max-width: 767px)
   ========================================================= */

@media (max-width: 767px) {
    .mission-vision-section {
        padding: 60px 0;
    }
    
    .mv-header {
        margin-bottom: 35px;
    }
    
    .mv-tagline {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .mv-title {
        font-size: 30px;
    }
    
    .mv-subtitle {
        font-size: 0.95rem;
    }
    
    .mv-divider .line {
        width: 40px;
    }
    
    .mv-grid {
        gap: 25px;
        max-width: 100%;
    }
    
    .mv-card {
        padding: 30px 22px 25px;
        border-radius: 20px;
    }
    
    .mv-card-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        margin-bottom: 18px;
    }
    
    .mv-card-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .mv-card-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 12px;
    }
    
    .mv-card-features {
        gap: 8px;
        margin-top: 20px;
        padding-top: 16px;
    }
    
    .mv-feature {
        font-size: 0.8rem;
        padding: 5px 14px;
    }
}

/* =========================================================
   RESPONSIVE - SMALL MOBILE (max-width: 575px)
   ========================================================= */

@media (max-width: 575px) {
    .mission-vision-section {
        padding: 50px 0;
    }
    
    .mv-header {
        margin-bottom: 30px;
    }
    
    .mv-tagline {
        font-size: 10px;
        padding: 5px 14px;
        letter-spacing: 1px;
    }
    
    .mv-tagline i {
        font-size: 11px;
    }
    
    .mv-title {
        font-size: 26px;
    }
    
    .mv-subtitle {
        font-size: 0.9rem;
    }
    
    .mv-divider {
        gap: 10px;
    }
    
    .mv-divider .line {
        width: 35px;
    }
    
    .mv-divider i {
        font-size: 0.9rem;
    }
    
    .mv-grid {
        gap: 20px;
    }
    
    .mv-card {
        padding: 25px 18px 20px;
        border-radius: 18px;
    }
    
    .mv-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .mv-card-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .mv-card-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 10px;
    }
    
    .mv-card-features {
        gap: 6px;
        margin-top: 16px;
        padding-top: 14px;
        flex-direction: column;
        align-items: center;
    }
    
    .mv-feature {
        font-size: 0.75rem;
        padding: 4px 12px;
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* =========================================================
   RESPONSIVE - EXTRA SMALL MOBILE (max-width: 380px)
   ========================================================= */

@media (max-width: 380px) {
    .mission-vision-section {
        padding: 40px 0;
    }
    
    .mv-title {
        font-size: 22px;
    }
    
    .mv-card {
        padding: 20px 14px 18px;
        border-radius: 16px;
    }
    
    .mv-card-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .mv-card-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .mv-card-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 8px;
    }
    
    .mv-card-features {
        gap: 5px;
        margin-top: 12px;
        padding-top: 12px;
    }
    
    .mv-feature {
        font-size: 0.7rem;
        padding: 3px 10px;
        max-width: 100%;
    }
}

/* =========================================================
   REDUCE MOTION (Accessibility)
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .mv-card,
    .mv-card::before,
    .mv-card::after,
    .mv-card-icon,
    .mv-feature {
        animation: none !important;
        transition: none !important;
    }
    
    .mv-card:hover {
        transform: none !important;
        box-shadow: 0 10px 35px rgba(47, 36, 31, 0.06) !important;
    }
    
    .mv-card:hover::after {
        opacity: 0 !important;
    }
    
    .mv-card:hover .mv-card-icon {
        transform: none !important;
    }
}

/* =========================================================
   FOCUS STATES (Accessibility)
   ========================================================= */

.mv-card:focus-visible {
    outline: 3px solid rgba(255, 198, 0, 0.6);
    outline-offset: 4px;
}

/* =========================================================
   DARK MODE SUPPORT
   ========================================================= */

@media (prefers-color-scheme: dark) {
    .mission-vision-section {
        background: linear-gradient(135deg, #1a1512 0%, #2a201b 100%);
    }
    
    .mission-vision-section::before {
        background: radial-gradient(circle, rgba(255, 198, 0, 0.05), transparent 70%);
    }
    
    .mv-card {
        background: rgba(30, 26, 23, 0.92);
        border-color: rgba(255, 255, 255, 0.06);
    }
    
    .mv-card:hover {
        border-color: rgba(255, 198, 0, 0.3);
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    }
    
    .mv-title {
        color: #f5ede5;
    }
    
    .mv-subtitle {
        color: #b8a89a;
    }
    
    .mv-card-title {
        color: #f5ede5;
    }
    
    .mv-card-content p {
        color: #d1c7c0;
    }
    
    .mv-card-content p strong {
        color: #f5ede5;
    }
    
    .mv-feature {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.06);
        color: #d1c7c0;
    }
    
    .mv-card:hover .mv-feature {
        background: rgba(255, 198, 0, 0.08);
        border-color: rgba(255, 198, 0, 0.15);
    }
    
    .mission-card .mv-card-icon {
        background: linear-gradient(135deg, rgba(255, 198, 0, 0.15), rgba(255, 126, 0, 0.1));
    }
    
    .vision-card .mv-card-icon {
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    }
    
    .vision-card .mv-card-title span {
        color: var(--cc-gold);
    }
}



/* =========================================================
   OUR WORK SECTION - INSTAGRAM REELS
   ========================================================= */

.our-work-section {
    padding: 100px 0;
    background: var(--cc-cream);
    position: relative;
    overflow: hidden;
}

.our-work-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 198, 0, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Header */
.section-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cc-orange);
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.section-tagline i {
    color: #E1306C;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    color: var(--cc-brown-dark);
    margin-bottom: 10px;
}

.section-title span {
    color: var(--cc-orange);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.section-divider .line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cc-gold), transparent);
}

.section-divider i {
    color: var(--cc-gold);
    font-size: 1.2rem;
}

.section-subtitle {
    color: var(--cc-muted);
    font-size: 1.05rem;
}

/* =========================================================
   WORK CARD - PREMIUM
   ========================================================= */

.work-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(47, 36, 31, 0.06);
    border: 1px solid rgba(85, 71, 62, 0.06);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.work-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(47, 36, 31, 0.12);
    border-color: rgba(255, 198, 0, 0.2);
}

/* Card Image */
.work-card-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--cc-brown-dark);
}

.work-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.work-card:hover .work-card-image img {
    transform: scale(1.05);
}

/* Overlay with Play Button */
.work-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(33, 25, 20, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    cursor: pointer;
}

.work-card:hover .work-card-overlay {
    opacity: 1;
}

.work-play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 198, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--cc-brown-dark);
    box-shadow: 0 10px 30px rgba(255, 198, 0, 0.4);
    transition: all 0.4s ease;
    transform: scale(0.8);
}

.work-card:hover .work-play-btn {
    transform: scale(1);
}

.work-play-btn:hover {
    background: #ffffff;
    transform: scale(1.1) !important;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Badge */
.work-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #405DE6, #E1306C);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Card Content */
.work-card-content {
    padding: 25px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.work-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--cc-brown-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.work-card-content p {
    font-size: 14px;
    color: var(--cc-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

/* Tags */
.work-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.work-tag {
    padding: 4px 14px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.1);
    border: 1px solid rgba(255, 198, 0, 0.15);
    color: var(--cc-orange);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* View Button */
.work-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #405DE6, #E1306C);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    border: none;
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.25);
}

.work-view-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.35);
    color: #ffffff !important;
}

.work-view-btn i {
    font-size: 16px;
}

/* View All Button */
.work-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 999px;
    background: linear-gradient(135deg, #405DE6, #E1306C);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.25);
}

.work-view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(225, 48, 108, 0.35);
    color: #ffffff !important;
}

.work-view-all-btn i {
    font-size: 1.2rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {
    .our-work-section {
        padding: 70px 0;
    }
    
    .work-card-image {
        height: 280px;
    }
    
    .work-card-content {
        padding: 20px 22px 24px;
    }
}

@media (max-width: 767px) {
    .our-work-section {
        padding: 60px 0;
    }
    
    .work-card-image {
        height: 240px;
    }
    
    .work-card-content h3 {
        font-size: 16px;
    }
    
    .work-card-content p {
        font-size: 13px;
    }
    
    .work-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
}

@media (max-width: 575px) {
    .our-work-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .work-card-image {
        height: 200px;
    }
    
    .work-card-content {
        padding: 16px 18px 20px;
    }
    
    .work-card-content h3 {
        font-size: 15px;
    }
    
    .work-card-content p {
        font-size: 12px;
    }
    
    .work-play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .work-badge {
        font-size: 9px;
        padding: 4px 12px;
        top: 10px;
        right: 10px;
    }
    
    .work-view-btn {
        padding: 8px 18px;
        font-size: 12px;
    }
    
    .work-tag {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .work-view-all-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* =========================================================
   REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    .work-card,
    .work-card-image img,
    .work-card-overlay,
    .work-play-btn,
    .work-view-btn,
    .work-view-all-btn {
        transition: none !important;
    }
    
    .work-card:hover {
        transform: none !important;
    }
    
    .work-card:hover .work-card-image img {
        transform: none !important;
    }
    
    .work-card:hover .work-card-overlay {
        opacity: 0 !important;
    }
    
    .work-play-btn:hover {
        transform: none !important;
    }
}


/* =========================================================
   INDEX GALLERY PREVIEW - COMPLETE CSS
   Fully Responsive: Desktop, Tablet, Mobile
========================================================== */

/* =============================================
   BASE SECTION STYLES
============================================== */
.index-gallery-preview {
    padding: 80px 0;
    background: var(--cc-cream);
    overflow: hidden;
}

/* =============================================
   SECTION HEADER
============================================== */
.index-gallery-preview .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.index-gallery-preview .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.15);
    border: 1px solid rgba(255, 198, 0, 0.3);
    color: var(--cc-orange);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    backdrop-filter: blur(4px);
}

.index-gallery-preview .section-badge i {
    color: var(--cc-gold);
}

.index-gallery-preview .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    color: var(--cc-brown-dark);
    margin-bottom: 8px;
}

.index-gallery-preview .section-header h2 span {
    color: var(--cc-orange);
    position: relative;
}

.index-gallery-preview .section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 198, 0, 0.3);
    border-radius: 2px;
}

.index-gallery-preview .section-subtitle {
    color: var(--cc-muted);
    font-size: 1.1rem;
    margin-top: 5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.index-gallery-preview .section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 18px;
}

.index-gallery-preview .section-divider .line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cc-gold), transparent);
}

.index-gallery-preview .section-divider i {
    color: var(--cc-gold);
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 6px rgba(255, 198, 0, 0.3));
}

/* =============================================
   GALLERY GRID - DESKTOP (Default)
============================================== */
.index-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 10px;
}

/* =============================================
   GALLERY ITEM - BASE
============================================== */
.index-gallery-item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    background: var(--cc-brown-dark);
    box-shadow: 0 8px 25px rgba(47, 36, 31, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.index-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 45px rgba(47, 36, 31, 0.15);
}

/* ---- Image ---- */
.index-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.index-gallery-item:hover img {
    transform: scale(1.08);
}

/* ---- Overlay ---- */
.index-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(33, 25, 20, 0.88) 0%,
        rgba(33, 25, 20, 0.3) 40%,
        transparent 70%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 25px;
}

.index-gallery-item:hover .index-gallery-overlay {
    opacity: 1;
}

/* ---- Icon (Zoom / Search) ---- */
.index-gallery-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 198, 0, 0.3);
    transform: scale(0.8);
}

.index-gallery-item:hover .index-gallery-icon {
    transform: scale(1);
}

.index-gallery-icon i {
    color: var(--cc-brown-dark);
    font-size: 1.3rem;
}

/* ---- Info Text ---- */
.index-gallery-info {
    text-align: center;
    color: #ffffff;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.index-gallery-item:hover .index-gallery-info {
    transform: translateY(0);
    opacity: 1;
}

.index-gallery-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #ffffff;
}

.index-gallery-info span {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--cc-gold-light);
    font-weight: 500;
}

/* ---- Gold Border Effect on Hover ---- */
.index-gallery-item::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 2px solid rgba(255, 198, 0, 0);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 2;
}

.index-gallery-item:hover::after {
    border-color: rgba(255, 198, 0, 0.4);
}

/* =============================================
   VIEW ALL BUTTON
============================================== */
.index-gallery-preview .text-center.mt-5 {
    margin-top: 50px !important;
    text-align: center;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 38px;
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: var(--cc-brown-dark);
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 198, 0, 0.25);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    background: var(--cc-brown-dark);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(47, 36, 31, 0.3);
}

.btn-gold i {
    transition: transform 0.3s ease;
}

.btn-gold:hover i {
    transform: translateX(4px);
}

/* =============================================
   RESPONSIVE - TABLET (max-width: 991px)
============================================== */
@media (max-width: 991px) {
    .index-gallery-preview {
        padding: 60px 0;
    }

    .index-gallery-preview .section-header {
        margin-bottom: 35px;
    }

    .index-gallery-preview .section-header h2 {
        font-size: 32px;
    }

    .index-gallery-preview .section-subtitle {
        font-size: 1rem;
    }

    .index-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .index-gallery-icon {
        width: 48px;
        height: 48px;
    }

    .index-gallery-icon i {
        font-size: 1.1rem;
    }

    .index-gallery-info h4 {
        font-size: 1rem;
    }

    .btn-gold {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

/* =============================================
   RESPONSIVE - MOBILE LANDSCAPE (max-width: 767px)
============================================== */
@media (max-width: 767px) {
    .index-gallery-preview {
        padding: 50px 0;
    }

    .index-gallery-preview .section-header {
        margin-bottom: 28px;
    }

    .index-gallery-preview .section-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .index-gallery-preview .section-header h2 {
        font-size: 28px;
    }

    .index-gallery-preview .section-subtitle {
        font-size: 0.95rem;
    }

    .index-gallery-preview .section-divider .line {
        width: 40px;
    }

    .index-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .index-gallery-item {
        border-radius: 14px;
    }

    .index-gallery-item::after {
        inset: 3px;
        border-radius: 11px;
    }

    .index-gallery-overlay {
        padding: 18px;
    }

    .index-gallery-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 8px;
    }

    .index-gallery-icon i {
        font-size: 1rem;
    }

    .index-gallery-info h4 {
        font-size: 0.9rem;
    }

    .index-gallery-info span {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    .index-gallery-preview .text-center.mt-5 {
        margin-top: 35px !important;
    }

    .btn-gold {
        padding: 10px 26px;
        font-size: 0.9rem;
    }
}

/* =============================================
   RESPONSIVE - MOBILE PORTRAIT (max-width: 575px)
============================================== */
@media (max-width: 575px) {
    .index-gallery-preview {
        padding: 40px 0;
    }

    .index-gallery-preview .section-header {
        margin-bottom: 22px;
    }

    .index-gallery-preview .section-badge {
        font-size: 0.65rem;
        padding: 5px 14px;
        gap: 5px;
    }

    .index-gallery-preview .section-header h2 {
        font-size: 24px;
    }

    .index-gallery-preview .section-subtitle {
        font-size: 0.85rem;
    }

    .index-gallery-preview .section-divider {
        gap: 10px;
        margin-top: 12px;
    }

    .index-gallery-preview .section-divider .line {
        width: 30px;
    }

    .index-gallery-preview .section-divider i {
        font-size: 1rem;
    }

    .index-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .index-gallery-item {
        border-radius: 12px;
        aspect-ratio: 1 / 1;
    }

    .index-gallery-item::after {
        inset: 2px;
        border-radius: 10px;
    }

    .index-gallery-item:hover {
        transform: translateY(-3px);
    }

    .index-gallery-item:hover img {
        transform: scale(1.04);
    }

    .index-gallery-overlay {
        padding: 12px;
    }

    .index-gallery-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 6px;
        box-shadow: 0 4px 15px rgba(255, 198, 0, 0.25);
    }

    .index-gallery-icon i {
        font-size: 0.85rem;
    }

    .index-gallery-info h4 {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }

    .index-gallery-info span {
        font-size: 0.55rem;
        letter-spacing: 0.3px;
    }

    .index-gallery-preview .text-center.mt-5 {
        margin-top: 28px !important;
    }

    .btn-gold {
        padding: 9px 22px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .btn-gold i {
        font-size: 0.8rem;
    }
}

/* =============================================
   RESPONSIVE - EXTRA SMALL (max-width: 400px)
============================================== */
@media (max-width: 400px) {
    .index-gallery-preview {
        padding: 30px 0;
    }

    .index-gallery-preview .section-header h2 {
        font-size: 20px;
    }

    .index-gallery-grid {
        gap: 8px;
    }

    .index-gallery-item {
        border-radius: 10px;
    }

    .index-gallery-item::after {
        inset: 2px;
        border-radius: 8px;
        border-width: 1.5px;
    }

    .index-gallery-icon {
        width: 30px;
        height: 30px;
        margin-bottom: 4px;
    }

    .index-gallery-icon i {
        font-size: 0.7rem;
    }

    .index-gallery-info h4 {
        font-size: 0.65rem;
    }

    .index-gallery-info span {
        font-size: 0.5rem;
        letter-spacing: 0.2px;
    }

    .btn-gold {
        padding: 7px 18px;
        font-size: 0.75rem;
        gap: 5px;
    }
}

/* =============================================
   DARK MODE SUPPORT
============================================== */
@media (prefers-color-scheme: dark) {
    .index-gallery-preview {
        background: #2a201b;
    }

    .index-gallery-preview .section-header h2 {
        color: #f5ede5;
    }

    .index-gallery-preview .section-subtitle {
        color: #b8a89a;
    }

    .index-gallery-item {
        background: #1a1512;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .index-gallery-item:hover {
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    }

    .btn-gold:hover {
        background: #ffffff;
        color: var(--cc-brown-dark);
    }
}

/* =============================================
   REDUCED MOTION (Accessibility)
============================================== */
@media (prefers-reduced-motion: reduce) {
    .index-gallery-item,
    .index-gallery-item img,
    .index-gallery-overlay,
    .index-gallery-icon,
    .index-gallery-info,
    .btn-gold,
    .btn-gold::before {
        transition: none !important;
        animation: none !important;
    }

    .index-gallery-item:hover {
        transform: none !important;
    }

    .index-gallery-item:hover img {
        transform: none !important;
    }

    .index-gallery-item:hover .index-gallery-overlay {
        opacity: 1;
    }

    .index-gallery-item:hover .index-gallery-icon {
        transform: scale(1);
    }

    .index-gallery-item:hover .index-gallery-info {
        transform: translateY(0);
        opacity: 1;
    }

    .btn-gold:hover {
        transform: none !important;
    }

    .btn-gold:hover::before {
        left: -100%;
    }
}

/* =============================================
   FOCUS STATES (Accessibility)
============================================== */
.index-gallery-item:focus-visible,
.btn-gold:focus-visible {
    outline: 3px solid var(--cc-gold);
    outline-offset: 4px;
}

.index-gallery-item:focus-visible .index-gallery-overlay {
    opacity: 1;
}

.index-gallery-item:focus-visible .index-gallery-icon {
    transform: scale(1);
}

.index-gallery-item:focus-visible .index-gallery-info {
    transform: translateY(0);
    opacity: 1;
}

/* =============================================
   PRINT STYLES
============================================== */
@media print {
    .index-gallery-preview {
        padding: 40px 0;
        background: #ffffff !important;
    }

    .index-gallery-item {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd;
    }

    .index-gallery-overlay {
        opacity: 1 !important;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 50%);
    }

    .index-gallery-icon {
        display: none;
    }

    .btn-gold {
        background: #333 !important;
        color: #fff !important;
        box-shadow: none !important;
    }
}


/* =========================================================
   INDEX ABOUT PREVIEW - ENHANCED PREMIUM DESIGN
========================================================== */

/* =============================================
   BASE SECTION
============================================== */
.index-about-preview {
    padding: 100px 0;
    background: var(--cc-cream);
    overflow: hidden;
    position: relative;
}

/* Background Decorative Elements */
.index-about-preview::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 198, 0, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.index-about-preview::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 126, 0, 0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* =============================================
   GRID LAYOUT
============================================== */
.index-about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* =============================================
   LEFT - IMAGE WITH PREMIUM EFFECTS
============================================== */
.index-about-image {
    position: relative;
}

.index-about-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(47, 36, 31, 0.15),
        0 0 0 1px rgba(255, 198, 0, 0.1);
    background: var(--cc-brown-dark);
    aspect-ratio: 1 / 1.1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.index-about-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 80px rgba(47, 36, 31, 0.2),
        0 0 0 2px rgba(255, 198, 0, 0.2);
}

.index-about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.index-about-img-wrapper:hover img {
    transform: scale(1.05);
}

/* ---- Decorative Gold Ring ---- */
.index-about-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid rgba(255, 198, 0, 0.15);
    border-radius: 30px;
    pointer-events: none;
    animation: ringRotate 20s linear infinite;
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.index-about-ring::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 20px;
    height: 4px;
    background: var(--cc-gold);
    border-radius: 2px;
    transform: translateX(-50%);
}

/* ---- Floating Badges ---- */
.index-about-float-badge {
    position: absolute;
    padding: 10px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 2;
}

.index-about-float-badge.left {
    bottom: 20px;
    left: -10px;
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: var(--cc-brown-dark);
}

.index-about-float-badge.right {
    top: 20px;
    right: -10px;
    background: var(--cc-brown-dark);
    color: #ffffff;
    animation-delay: 1.5s;
}

.index-about-float-badge i {
    font-size: 1rem;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* =============================================
   RIGHT - CONTENT
============================================== */
.index-about-content {
    padding: 10px 0;
}

/* ---- Badge ---- */
.index-about-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.12);
    border: 1px solid rgba(255, 198, 0, 0.25);
    color: var(--cc-orange);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.index-about-badge:hover {
    background: rgba(255, 198, 0, 0.2);
    border-color: rgba(255, 198, 0, 0.4);
    transform: translateX(5px);
}

.index-about-badge i {
    color: var(--cc-gold);
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--cc-gold);
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

/* ---- Title ---- */
.index-about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 3.8vw, 48px);
    font-weight: 700;
    color: var(--cc-brown-dark);
    margin-bottom: 12px;
    line-height: 1.15;
}

.index-about-content h2 span {
    color: var(--cc-orange);
}

.title-underline {
    position: relative;
    display: inline-block;
}

.title-underline::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 198, 0, 0.3);
    border-radius: 2px;
}

/* ---- Meta ---- */
.index-about-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 15px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--cc-muted);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--cc-gold);
    font-size: 0.9rem;
}

.meta-sep {
    color: var(--cc-border);
}

/* ---- Description ---- */
.index-about-desc-wrapper {
    position: relative;
    padding: 15px 0 15px 30px;
    margin-bottom: 25px;
}

.quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    color: rgba(255, 198, 0, 0.15);
    font-size: 2.5rem;
}

.index-about-desc {
    font-size: 1rem;
    color: var(--cc-text);
    line-height: 1.8;
    margin: 0;
}

.index-about-desc strong {
    color: var(--cc-orange);
}

/* ---- Stats ---- */
.index-about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 2px solid rgba(255, 198, 0, 0.1);
    border-bottom: 2px solid rgba(255, 198, 0, 0.1);
    position: relative;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item .stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--cc-orange);
    line-height: 1.1;
}

.stat-item .stat-label {
    font-size: 0.8rem;
    color: var(--cc-muted);
    font-weight: 500;
}

.stat-bar {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--cc-gold), var(--cc-orange));
    border-radius: 2px;
    margin: 6px auto 0;
    transition: width 0.5s ease;
}

.stat-item:hover .stat-bar {
    width: 45px;
}

/* ---- Buttons ---- */
.index-about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    color: var(--cc-brown-dark);
    border: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 198, 0, 0.25);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    background: var(--cc-brown-dark);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(47, 36, 31, 0.3);
}

.btn-gold .arrow-icon {
    transition: transform 0.3s ease;
}

.btn-gold:hover .arrow-icon {
    transform: translateX(5px);
}

.btn-outline-brown {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: transparent;
    color: var(--cc-brown);
    border: 2px solid var(--cc-brown);
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-brown .arrow-icon {
    transition: transform 0.3s ease;
}

.btn-outline-brown:hover {
    background: var(--cc-brown);
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-outline-brown:hover .arrow-icon {
    transform: translateX(5px);
}

/* =============================================
   RESPONSIVE - TABLET (max-width: 991px)
============================================== */
@media (max-width: 991px) {
    .index-about-preview {
        padding: 70px 0;
    }

    .index-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .index-about-image {
        max-width: 450px;
        margin: 0 auto;
    }

    .index-about-img-wrapper {
        aspect-ratio: 1 / 1;
    }

    .index-about-content {
        text-align: center;
    }

    .index-about-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .index-about-meta {
        justify-content: center;
    }

    .index-about-desc-wrapper {
        padding: 15px 0;
    }

    .quote-icon {
        display: none;
    }

    .index-about-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .index-about-buttons {
        justify-content: center;
    }

    .index-about-float-badge.left {
        left: 5px;
        bottom: 15px;
    }

    .index-about-float-badge.right {
        right: 5px;
        top: 15px;
    }
}

/* =============================================
   RESPONSIVE - MOBILE (max-width: 767px)
============================================== */
@media (max-width: 767px) {
    .index-about-preview {
        padding: 50px 0;
    }

    .index-about-grid {
        gap: 30px;
    }

    .index-about-image {
        max-width: 350px;
    }

    .index-about-content h2 {
        font-size: 28px;
    }

    .index-about-meta {
        font-size: 0.85rem;
        gap: 5px 10px;
    }

    .index-about-desc {
        font-size: 0.95rem;
    }

    .index-about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 15px 0;
    }

    .stat-item .stat-number {
        font-size: 1.6rem;
    }

    .stat-item .stat-label {
        font-size: 0.75rem;
    }

    .index-about-float-badge {
        padding: 6px 12px;
        font-size: 0.65rem;
        border-radius: 8px;
    }

    .index-about-float-badge i {
        font-size: 0.8rem;
    }

    .index-about-float-badge.left {
        bottom: 10px;
        left: 0;
    }

    .index-about-float-badge.right {
        top: 10px;
        right: 0;
    }

    .btn-gold,
    .btn-outline-brown {
        padding: 10px 22px;
        font-size: 0.9rem;
    }

    .index-about-ring {
        display: none;
    }
}

/* =============================================
   RESPONSIVE - MOBILE PORTRAIT (max-width: 575px)
============================================== */
@media (max-width: 575px) {
    .index-about-preview {
        padding: 40px 0;
    }

    .index-about-image {
        max-width: 280px;
    }

    .index-about-content h2 {
        font-size: 24px;
    }

    .index-about-badge {
        font-size: 0.7rem;
        padding: 6px 14px;
        gap: 6px;
    }

    .index-about-meta {
        font-size: 0.75rem;
        gap: 4px 8px;
        flex-direction: column;
    }

    .meta-sep {
        display: none;
    }

    .index-about-desc {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .index-about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 12px 0;
    }

    .stat-item .stat-number {
        font-size: 1.3rem;
    }

    .stat-item .stat-label {
        font-size: 0.65rem;
    }

    .stat-bar {
        width: 20px;
        height: 2px;
    }

    .index-about-float-badge {
        padding: 4px 10px;
        font-size: 0.55rem;
        border-radius: 6px;
    }

    .index-about-float-badge i {
        font-size: 0.65rem;
    }

    .index-about-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-gold,
    .btn-outline-brown {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        padding: 10px 18px;
        font-size: 0.8rem;
    }
}

/* =============================================
   DARK MODE SUPPORT
============================================== */
@media (prefers-color-scheme: dark) {
    .index-about-preview {
        background: #2a201b;
    }

    .index-about-preview::before,
    .index-about-preview::after {
        display: none;
    }

    .index-about-content h2 {
        color: #f5ede5;
    }

    .index-about-desc {
        color: #d1c7c0;
    }

    .index-about-meta .meta-item {
        color: #b8a89a;
    }

    .stat-item .stat-label {
        color: #b8a89a;
    }

    .btn-outline-brown {
        color: #d1c7c0;
        border-color: rgba(255, 255, 255, 0.2);
    }

    .btn-outline-brown:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
    }

    .index-about-img-wrapper {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    }

    .index-about-float-badge.left {
        background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
        color: var(--cc-brown-dark);
    }

    .index-about-float-badge.right {
        background: #1a1512;
        color: #f5ede5;
    }
}

/* =============================================
   REDUCED MOTION (Accessibility)
============================================== */
@media (prefers-reduced-motion: reduce) {
    .index-about-float-badge,
    .index-about-ring,
    .badge-pulse {
        animation: none !important;
    }

    .index-about-img-wrapper,
    .index-about-img-wrapper img,
    .btn-gold,
    .btn-outline-brown,
    .stat-bar,
    .index-about-badge {
        transition: none !important;
    }

    .index-about-img-wrapper:hover {
        transform: none !important;
    }

    .index-about-img-wrapper:hover img {
        transform: none !important;
    }

    .btn-gold:hover,
    .btn-outline-brown:hover {
        transform: none !important;
    }

    .btn-gold::before {
        display: none;
    }
}

/* =============================================
   FOCUS STATES (Accessibility)
============================================== */
.btn-gold:focus-visible,
.btn-outline-brown:focus-visible,
.index-about-img-wrapper:focus-visible {
    outline: 3px solid var(--cc-gold);
    outline-offset: 4px;
}


/* =============================================================
   CUSTOM PRICING NOTE SECTION
============================================================== */
.custom-pricing-note {
    padding: 80px 0;
    background: var(--cc-cream);
    position: relative;
}

.custom-pricing-note::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 198, 0, 0.05), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.custom-pricing-box {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 45px;
    box-shadow: 0 15px 50px rgba(47, 36, 31, 0.08);
    border: 1px solid rgba(255, 198, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.custom-pricing-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cc-gold), var(--cc-orange), var(--cc-gold));
}

.custom-pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 198, 0, 0.12), rgba(255, 126, 0, 0.12));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-pricing-icon i {
    font-size: 2.2rem;
    color: var(--cc-orange);
}

.custom-pricing-content {
    flex: 1;
}

.custom-pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.12);
    border: 1px solid rgba(255, 198, 0, 0.2);
    color: var(--cc-orange);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.custom-pricing-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: var(--cc-brown-dark);
    margin-bottom: 8px;
}

.custom-pricing-content h3 span {
    color: var(--cc-orange);
}

.custom-pricing-desc {
    color: var(--cc-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* ---- Pricing Factors Grid ---- */
.custom-pricing-factors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 25px;
}

.pricing-factor {
    display: flex;
    gap: 14px;
    padding: 14px 18px;
    background: var(--cc-cream);
    border-radius: 14px;
    border: 1px solid var(--cc-border);
    transition: all 0.3s ease;
}

.pricing-factor:hover {
    background: rgba(255, 198, 0, 0.05);
    border-color: rgba(255, 198, 0, 0.3);
    transform: translateY(-2px);
}

.pricing-factor .factor-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pricing-factor .factor-icon i {
    color: var(--cc-brown-dark);
    font-size: 1rem;
}

.pricing-factor .factor-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cc-brown-dark);
    margin-bottom: 2px;
}

.pricing-factor .factor-info p {
    font-size: 0.8rem;
    color: var(--cc-muted);
    line-height: 1.4;
    margin: 0;
}

/* ---- CTA Buttons ---- */
.custom-pricing-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

/* ---- Bottom Note ---- */
.custom-pricing-note-bottom {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 198, 0, 0.06);
    border-radius: 12px;
    border-left: 4px solid var(--cc-gold);
}

.custom-pricing-note-bottom i {
    color: var(--cc-gold);
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.custom-pricing-note-bottom p {
    font-size: 0.9rem;
    color: var(--cc-text);
    line-height: 1.6;
    margin: 0;
}

.custom-pricing-note-bottom p strong {
    color: var(--cc-orange);
}

/* =============================================================
   RESPONSIVE - CUSTOM PRICING
============================================================== */
@media (max-width: 991px) {
    .custom-pricing-box {
        grid-template-columns: 1fr;
        padding: 35px 25px;
        gap: 15px;
        text-align: center;
    }
    
    .custom-pricing-icon {
        margin: 0 auto;
    }
    
    .custom-pricing-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .custom-pricing-factors {
        grid-template-columns: 1fr 1fr;
    }
    
    .custom-pricing-cta {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .custom-pricing-note {
        padding: 50px 0;
    }
    
    .custom-pricing-box {
        padding: 28px 18px;
    }
    
    .custom-pricing-content h3 {
        font-size: 26px;
    }
    
    .custom-pricing-factors {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .pricing-factor {
        padding: 12px 14px;
    }
    
    .custom-pricing-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .custom-pricing-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .custom-pricing-note-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 14px 16px;
    }
}

@media (max-width: 575px) {
    .custom-pricing-note {
        padding: 40px 0;
    }
    
    .custom-pricing-box {
        padding: 20px 14px;
        border-radius: 16px;
    }
    
    .custom-pricing-content h3 {
        font-size: 22px;
    }
    
    .custom-pricing-desc {
        font-size: 0.9rem;
    }
    
    .pricing-factor .factor-info h4 {
        font-size: 0.85rem;
    }
    
    .pricing-factor .factor-info p {
        font-size: 0.75rem;
    }
}


/* ============================================= */
/* WHATSAPP ENQUIRY SECTION - RESPONSIVE CSS (CREAM CORNER THEME) */
/* ============================================= */

.whatsapp-enquiry-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Decorative background elements (Theme ke hisaab se Gold) */
.whatsapp-enquiry-section::before,
.whatsapp-enquiry-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: var(--cc-gold); /* Aapka Gold theme */
}

.whatsapp-enquiry-section::before {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
}

.whatsapp-enquiry-section::after {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

.enquiry-box {
    background: #ffffff;
    border: 1px solid rgba(85, 71, 62, 0.12); /* Brown border theme */
    border-radius: var(--cc-radius-md); /* 20px radius */
    box-shadow: var(--cc-shadow-lg); /* Brown shadow */
    position: relative;
    z-index: 1;
    padding: 50px;
    transition: all 0.3s ease;
}

.enquiry-box:hover {
    border-color: rgba(255, 198, 0, 0.3);
    box-shadow: 0 30px 80px rgba(47, 36, 31, 0.15);
}

/* Icon Animation */
.enquiry-icon {
    animation: float 3s ease-in-out infinite;
    margin-bottom: 20px;
}

.enquiry-icon i {
    color: #25D366; /* WhatsApp green */
    filter: drop-shadow(0 4px 10px rgba(37, 211, 102, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Headings & Paragraphs (Theme colors) */
.enquiry-box h2 {
    font-family: "Playfair Display", serif;
    color: var(--cc-brown-dark); /* Dark Brown */
    margin-bottom: 15px;
}

.enquiry-box p {
    color: var(--cc-muted); /* Muted Brown */
    line-height: 1.7;
}

/* WhatsApp Button */
.enquiry-box .btn-success {
    background-color: #25D366;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.enquiry-box .btn-success:hover {
    background-color: #1ebe5b;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Phone and Email links */
.enquiry-box p a {
    color: var(--cc-brown);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.enquiry-box p a:hover {
    color: var(--cc-orange); /* Theme Orange on hover */
    text-decoration: underline;
}

/* ============================================= */
/* RESPONSIVE MEDIA QUERIES (Mobile, Tablet, Desktop) */
/* ============================================= */

/* Desktop & Laptop (Min-width: 992px) */
@media (min-width: 992px) {
    .enquiry-box {
        max-width: 800px;
        margin: 0 auto;
        padding: 3rem 4rem !important;
    }
    
    .enquiry-box h2 {
        font-size: 2.4rem;
    }
    
    .enquiry-box p {
        font-size: 1.05rem;
    }
}

/* Tablet (Min-width: 768px and Max-width: 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .enquiry-box {
        max-width: 700px;
        margin: 0 auto;
        padding: 2.5rem 3rem !important;
    }
    
    .enquiry-box h2 {
        font-size: 2rem;
    }
    
    .enquiry-box p {
        font-size: 1rem;
    }
}

/* Mobile (Max-width: 767px) */
@media (max-width: 767px) {
    .whatsapp-enquiry-section {
        padding: 50px 0;
    }
    
    .enquiry-box {
        padding: 2rem 1.5rem !important;
        border-radius: var(--cc-radius-sm) !important;
    }
    
    .enquiry-box h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .enquiry-box p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .enquiry-box .btn-success {
        width: 100%;
        font-size: 1rem;
        padding: 1rem 1.5rem !important;
    }
    
    .enquiry-icon i {
        font-size: 3rem;
    }
    
    /* Mobile contact info */
    .enquiry-box p.mt-4 {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        font-size: 0.85rem;
    }
    
    .enquiry-box p.mt-4 i {
        margin-right: 5px;
    }
    
    .enquiry-box p.mt-4 span {
        display: none; /* Hide the "|" separator on mobile */
    }
}

/* Small Mobile (Max-width: 480px) */
@media (max-width: 480px) {
    .enquiry-box {
        padding: 1.5rem 1rem !important;
    }
    
    .enquiry-box h2 {
        font-size: 1.3rem;
    }
    
    .enquiry-box p {
        font-size: 0.85rem;
    }
    
    .enquiry-box .btn-success {
        font-size: 0.9rem;
        padding: 0.9rem 1.2rem !important;
    }
}


/* =========================================================
   CAKE CARE SECTION - PREMIUM EDITION
   ========================================================= */

.cake-care-section {
    padding: 100px 0;
    background: var(--cc-cream);
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.cake-care-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 198, 0, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cake-care-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 126, 0, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cake-care-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.cake-care-section .section-header h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--cc-brown-dark);
    margin-bottom: 10px;
}

.cake-care-section .section-header h2 span {
    color: var(--cc-orange);
}

.cake-care-section .section-header .subtitle {
    color: var(--cc-muted);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Individual Care Card - Premium Glassmorphism */
.cake-care-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 35px 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(47, 36, 31, 0.06);
}

/* Shine Effect */
.cake-care-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 198, 0, 0.15), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.cake-care-card:hover::before {
    left: 140%;
}

/* Golden Border on Hover */
.cake-care-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid rgba(255, 198, 0, 0);
    transition: border-color 0.4s ease;
    pointer-events: none;
}

.cake-care-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(47, 36, 31, 0.15);
    border-radius: 20px;
}

.cake-care-card:hover::after {
    border-color: rgba(255, 198, 0, 0.5);
}

/* Icon Container */
.cake-care-card .icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 198, 0, 0.12), rgba(255, 126, 0, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.cake-care-card i {
    display: block;
    font-size: 32px;
    color: var(--cc-orange);
    transition: transform 0.4s ease, color 0.4s ease;
}

/* Hover Effects on Icon */
.cake-care-card:hover .icon-wrapper {
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    box-shadow: 0 10px 25px rgba(255, 126, 0, 0.3);
}

.cake-care-card:hover i {
    color: var(--cc-brown-dark);
    transform: scale(1.1) ;
}

/* Text */
.cake-care-card p {
    font-size: 14px;
    color: var(--cc-muted);
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
    padding: 0 10px;
    transition: color 0.3s ease;
}

.cake-care-card:hover p {
    color: var(--cc-brown-dark);
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */

/* LAPTOP & DESKTOP (Above 992px) */
@media (min-width: 992px) {
    .cake-care-card {
        padding: 40px 25px;
    }
    
    .cake-care-card .icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .cake-care-card i {
        font-size: 38px;
    }
    
    .cake-care-card p {
        font-size: 15px;
    }
}

/* TABLET (768px - 991px) */
@media (max-width: 991px) {
    .cake-care-section {
        padding: 70px 0;
    }
    
    .cake-care-card {
        padding: 30px 15px;
        border-radius: 16px;
    }
    
    .cake-care-card .icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }
    
    .cake-care-card i {
        font-size: 28px;
    }
    
    .cake-care-card p {
        font-size: 13px;
    }
}

/* MOBILE (max-width: 767px) */
@media (max-width: 767px) {
    .cake-care-section {
        padding: 50px 0;
    }
    
    .cake-care-section .section-header h2 {
        font-size: 32px;
    }
    
    .cake-care-section .section-header .subtitle {
        font-size: 0.95rem;
    }
    
    .cake-care-card {
        padding: 20px 10px;
        border-radius: 14px;
    }
    
    .cake-care-card .icon-wrapper {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }
    
    .cake-care-card i {
        font-size: 24px;
    }
    
    .cake-care-card p {
        font-size: 12px;
        line-height: 1.5;
        padding: 0 5px;
    }
}

/* SMALL MOBILE (max-width: 575px) */
@media (max-width: 575px) {
    .cake-care-section {
        padding: 40px 0;
    }
    
    .cake-care-section .section-header h2 {
        font-size: 28px;
    }
    
    .cake-care-card {
        padding: 18px 8px;
        border-radius: 12px;
    }
    
    .cake-care-card .icon-wrapper {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
        border-radius: 50%;
    }
    
    .cake-care-card i {
        font-size: 20px;
    }
    
    .cake-care-card p {
        font-size: 11px;
        padding: 0;
        line-height: 1.4;
    }
}

/* EXTRA SMALL MOBILE (max-width: 380px) */
@media (max-width: 380px) {
    .cake-care-section {
        padding: 30px 0;
    }
    
    .cake-care-section .section-header h2 {
        font-size: 24px;
    }
    
    .cake-care-card {
        padding: 15px 5px;
        border-radius: 10px;
    }
    
    .cake-care-card .icon-wrapper {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .cake-care-card i {
        font-size: 16px;
    }
    
    .cake-care-card p {
        font-size: 10px;
        line-height: 1.3;
    }
}

/* =========================================================
   REDUCED MOTION (Accessibility)
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    .cake-care-card,
    .cake-care-card::before,
    .cake-care-card::after,
    .cake-care-card i,
    .cake-care-card .icon-wrapper,
    .cake-care-card p {
        transition: none !important;
        animation: none !important;
    }
    
    .cake-care-card:hover {
        transform: none !important;
    }
    
    .cake-care-card:hover i {
        transform: none !important;
    }
    
    .cake-care-card:hover::before {
        left: -120%;
    }
}

/* =========================================================
   FOCUS STATES (Accessibility)
   ========================================================= */
.cake-care-card:focus-visible {
    outline: 3px solid rgba(255, 198, 0, 0.6);
    outline-offset: 4px;
}


/* =========================================================
   SPECIALIZATION SECTION - MENU (FIXED FOR LIGHT BACKGROUND)
   ========================================================= */

.specialization-section {
    padding: 100px 0;
    background: var(--cc-cream); /* Cream Background */
    position: relative;
    overflow: hidden;
}

.specialization-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 198, 0, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.specialization-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 126, 0, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.specialization-section .container {
    position: relative;
    z-index: 1;
}

.specialization-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE: TEXT (Now properly visible on light background) */
.specialization-text {
    max-width: 600px;
}

.specialization-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 198, 0, 0.15);
    border: 1px solid rgba(255, 198, 0, 0.4);
    color: var(--cc-orange);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.specialization-badge i {
    color: var(--cc-gold);
}

.specialization-text h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 700;
    color: var(--cc-brown-dark);
    margin-bottom: 12px;
}

.specialization-text h2 span {
    color: var(--cc-orange);
}

.specialization-text .highlight-text {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cc-orange);
    margin-bottom: 15px;
}

.specialization-text > p {
    color: var(--cc-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.specialization-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.specialization-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #ffffff;
    border: 1px solid rgba(85, 71, 62, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.specialization-feature:hover {
    background: rgba(255, 198, 0, 0.1);
    border-color: rgba(255, 198, 0, 0.3);
}

.specialization-feature i {
    color: var(--cc-gold);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.specialization-feature span {
    color: var(--cc-text);
    font-size: 0.85rem;
    font-weight: 500;
}

.specialization-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* RIGHT SIDE: PROCESS (Fixed - Now visible on light background) */
.specialization-process {
    background: #ffffff;
    border: 1px solid rgba(85, 71, 62, 0.1);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(47, 36, 31, 0.08);
}

.process-header {
    text-align: center;
    margin-bottom: 30px;
}

.process-header h3 {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    color: var(--cc-brown-dark);
    margin-bottom: 8px;
}

.process-header h3 span {
    color: var(--cc-orange);
}

.process-header p {
    color: var(--cc-muted);
    font-size: 0.9rem;
    margin: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.process-step {
    background: var(--cc-cream);
    border: 1px solid rgba(85, 71, 62, 0.08);
    border-radius: 16px;
    padding: 25px 20px;
    position: relative;
    transition: all 0.4s ease;
}

.process-step:hover {
    background: rgba(255, 198, 0, 0.08);
    border-color: rgba(255, 198, 0, 0.25);
    transform: translateY(-5px);
}

.process-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 126, 0, 0.15);
    line-height: 1;
}

.process-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.process-icon i {
    color: var(--cc-brown-dark);
    font-size: 1.2rem;
}

.process-info h4 {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cc-brown-dark);
    margin-bottom: 8px;
}

.process-info p {
    font-size: 0.8rem;
    color: var(--cc-muted);
    line-height: 1.5;
    margin: 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .specialization-section {
        padding: 70px 0;
    }
    
    .specialization-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .specialization-text {
        max-width: 100%;
        text-align: center;
    }
    
    .specialization-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .specialization-features {
        justify-content: center;
        text-align: left;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .specialization-cta {
        justify-content: center;
    }
    
    .specialization-process {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Mobile (max-width: 767px) */
@media (max-width: 767px) {
    .specialization-section {
        padding: 50px 0;
    }
    
    .specialization-text h2 {
        font-size: 32px;
    }
    
    .specialization-text > p {
        font-size: 0.95rem;
    }
    
    .specialization-features {
        grid-template-columns: 1fr;
    }
    
    .specialization-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .specialization-cta .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        padding: 20px 15px;
    }
}

/* Small Mobile (max-width: 575px) */
@media (max-width: 575px) {
    .specialization-section {
        padding: 40px 0;
    }
    
    .specialization-text h2 {
        font-size: 26px;
    }
    
    .specialization-process {
        padding: 20px;
    }
    
    .process-header h3 {
        font-size: 22px;
    }
}

/* =========================================================
   WHATSAPP ENQUIRY SECTION - CREAM CORNER THEME
   ========================================================= */

.whatsapp-enquiry-section {
    /* Background ab Brown-Gold gradient hoga */
    background: linear-gradient(135deg, var(--cc-brown-dark) 0%, var(--cc-brown) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

/* Decorative Elements */
.whatsapp-enquiry-section::before,
.whatsapp-enquiry-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.whatsapp-enquiry-section::before {
    width: 300px;
    height: 300px;
    background: var(--cc-gold);
    top: -50px;
    left: -50px;
}

.whatsapp-enquiry-section::after {
    width: 200px;
    height: 200px;
    background: var(--cc-orange);
    bottom: -50px;
    right: -50px;
}

.enquiry-box {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    position: relative;
    z-index: 1;
}

/* Icon (Orange/Gold Gradient) */
.enquiry-icon i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 15px rgba(255, 126, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Heading (Dark Brown) */
.enquiry-box h2 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    color: var(--cc-brown-dark);
}

/* Text (Muted Brown) */
.enquiry-box > p {
    color: var(--cc-muted);
}

/* Enquiry Cards (Cream Background, Gold Border) */
.enquiry-card {
    background: var(--cc-cream);
    border: 1px solid rgba(255, 198, 0, 0.3);
    transition: all 0.3s ease;
    text-align: left;
    padding: 20px;
    border-radius: 16px;
}

.enquiry-card:hover {
    background: #ffffff;
    border-color: var(--cc-gold);
    box-shadow: 0 12px 30px rgba(255, 198, 0, 0.2);
}

.enquiry-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cc-gold), var(--cc-orange));
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquiry-card-icon i {
    font-size: 1.5rem;
    color: var(--cc-brown-dark);
}

.enquiry-card h5 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    color: var(--cc-brown-dark);
}

.enquiry-card p {
    color: var(--cc-muted);
}

/* WhatsApp Button (Green friendly, but rounded) */
.enquiry-box .btn-success {
    background-color: #25D366;
    border: none;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.enquiry-box .btn-success:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(18, 140, 126, 0.4);
}

/* Contact Details */
.contact-details span {
    color: var(--cc-muted);
}

.contact-details span i {
    font-size: 0.9rem;
    color: var(--cc-orange);
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */

/* LAPTOP & DESKTOP (Min-width: 992px) */
@media (min-width: 992px) {
    .enquiry-box {
        padding: 4rem 5rem !important;
    }
    
    .enquiry-box h2 {
        font-size: 2.5rem;
    }
    
    .enquiry-card {
        padding: 25px;
    }
}

/* TABLET (768px - 991px) */
@media (max-width: 991px) {
    .whatsapp-enquiry-section {
        padding: 60px 0;
    }
    
    .enquiry-box {
        padding: 2.5rem 3rem !important;
    }
    
    .enquiry-box h2 {
        font-size: 2rem;
    }
}

/* MOBILE (Max-width: 767px) */
@media (max-width: 767px) {
    .whatsapp-enquiry-section {
        padding: 50px 0;
    }
    
    .enquiry-box {
        padding: 2rem 1.5rem !important;
        border-radius: 16px !important;
    }
    
    .enquiry-box h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .enquiry-box p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Cards ko mobile par stack karna */
    .enquiry-card {
        text-align: center;
        padding: 15px;
    }
    
    .enquiry-card-icon {
        margin: 0 auto;
    }
    
    /* WhatsApp Button Full Width */
    .enquiry-box .btn-success {
        width: 100%;
        font-size: 0.95rem;
        padding: 1rem 1.5rem !important;
    }
    
    .enquiry-icon i {
        font-size: 3rem;
    }
    
    /* Contact Info - Column Layout */
    .contact-details {
        flex-direction: column;
        gap: 5px !important;
        align-items: center;
    }
    
    .contact-details span {
        display: block;
        font-size: 0.8rem;
    }
}

/* SMALL MOBILE (Max-width: 575px) */
@media (max-width: 575px) {
    .whatsapp-enquiry-section {
        padding: 40px 0;
    }
    
    .enquiry-box {
        padding: 1.5rem 1rem !important;
    }
    
    .enquiry-box h2 {
        font-size: 1.2rem;
    }
    
    .enquiry-box p {
        font-size: 0.8rem;
    }
    
    .enquiry-card {
        border-radius: 10px;
        padding: 12px;
    }
    
    .enquiry-card-icon {
        width: 38px;
        height: 38px;
    }
    
    .enquiry-card-icon i {
        font-size: 1.1rem;
    }
    
    .enquiry-box .btn-success {
        font-size: 0.8rem;
        padding: 0.8rem 1rem !important;
    }
}

/* EXTRA SMALL MOBILE (Max-width: 380px) */
@media (max-width: 380px) {
    .whatsapp-enquiry-section {
        padding: 30px 0;
    }
    
    .enquiry-box {
        padding: 1rem 0.8rem !important;
    }
    
    .enquiry-box h2 {
        font-size: 1rem;
    }
    
    .enquiry-icon i {
        font-size: 2.5rem;
    }
    
    .enquiry-box .btn-success {
        font-size: 0.7rem;
        padding: 0.6rem 0.8rem !important;
    }
}