@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500;1,600&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #c28213;
    --primary-light: #e59f2a;
    --primary-dark: #8c5607;
    --primary-gradient: linear-gradient(135deg, #f5c453 0%, #c28213 50%, #915a07 100%);
    --gold-glow: 0 10px 25px rgba(194, 130, 19, 0.22);
    --accent: #d83a15;
    --accent-hover: #b82b09;
    --accent-gradient: linear-gradient(135deg, #ff5722 0%, #d83a15 50%, #8c1e04 100%);
    --bg-page: #faf6f0;
    --bg-page-alt: #f3ece1;
    --bg-card: #ffffff;
    --text-main: #2b180d;
    --text-heading: #1a0b04;
    --text-muted: #6b5548;
    --border-gold: rgba(194, 130, 19, 0.28);
    --border-gold-bright: rgba(229, 159, 42, 0.6);
    --card-shadow: 0 8px 24px rgba(71, 37, 13, 0.06);
    --card-shadow-hover: 0 18px 40px rgba(71, 37, 13, 0.14);
    --font-heading: 'Marcellus', 'Playfair Display', serif;
    --font-subheading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-fast: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background-color: var(--bg-page);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 12% 18%, rgba(194, 130, 19, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 88% 82%, rgba(216, 58, 21, 0.04) 0%, transparent 40%);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f2e9dc; }
::-webkit-scrollbar-thumb { background: linear-gradient(#c28213, #8c5607); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #e59f2a; }

a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; outline: none; border: none; }
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); letter-spacing: 0.5px; font-weight: 700; color: var(--text-heading); }
.section-tag {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 18px;
    background: rgba(194, 130, 19, 0.12); border: 1px solid var(--border-gold);
    border-radius: 50px; color: var(--primary-dark); font-size: 0.85rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px;
    transition: var(--transition-smooth);
}
.section-tag:hover { background: rgba(194, 130, 19, 0.2); transform: translateY(-2px); }

.section-title { font-size: clamp(2.1rem, 3.8vw, 3.3rem); color: var(--text-heading); line-height: 1.22; margin-bottom: 16px; }
.section-title span.gold-text {
    background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block;
}
.section-subtitle { font-size: 1.08rem; color: var(--text-muted); max-width: 680px; margin: 0 auto; }
.text-center { text-align: center; }

.page-banner {
    background: url('../images/breadcrumb-banner.webp') center center / cover no-repeat;
    padding: 85px 0 75px;
    position: relative;
    border-bottom: 3px solid var(--primary);
    text-align: center;
    color: #1a0b04;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 248, 238, 0.72) 50%, rgba(255, 248, 238, 0.88) 100%);
    pointer-events: none;
    z-index: 1;
}
.page-banner .container {
    position: relative;
    z-index: 2;
}
.page-banner .section-tag {
    background: rgba(194, 130, 19, 0.12) !important;
    color: #a46b0a !important;
    border-color: rgba(194, 130, 19, 0.35) !important;
    font-weight: 800;
}
.page-banner h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: #1a0b04;
    margin-bottom: 12px;
    font-weight: 900;
    text-shadow: 0 1px 15px rgba(255, 255, 255, 0.8);
}
.page-banner p {
    color: #4a382c;
    font-size: 1.12rem;
    max-width: 680px;
    margin: 0 auto 18px;
    font-weight: 500;
    line-height: 1.6;
}
.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.92rem;
    color: #c28213;
    font-weight: 700;
}
.breadcrumb-nav a {
    color: #2b1307;
    text-decoration: none;
    transition: color 0.25s ease;
}
.breadcrumb-nav a:hover {
    color: #c28213;
}
.breadcrumb-nav span {
    color: #8c5b04;
}

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 32px; font-weight: 700; font-size: 1rem; border-radius: 50px;
    cursor: pointer; transition: var(--transition-smooth); position: relative;
    overflow: hidden; z-index: 1; letter-spacing: 0.5px;
}
.btn::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.55s ease; z-index: -1;
}
.btn:hover::before { left: 100%; }
.btn-primary {
    background: var(--primary-gradient); color: #ffffff;
    box-shadow: 0 8px 22px rgba(194, 130, 19, 0.35);
    border: 1px solid rgba(245, 196, 83, 0.5); text-shadow: 0 1px 2px rgba(0,0,0,0.25);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 30px rgba(194, 130, 19, 0.45); color: #ffffff; }
.btn-accent {
    background: var(--accent-gradient); color: #ffffff;
    box-shadow: 0 8px 22px rgba(216, 58, 21, 0.35); border: 1px solid rgba(255, 138, 101, 0.4);
}
.btn-accent:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 30px rgba(216, 58, 21, 0.5); }
.btn-outline {
    background: #ffffff; color: var(--text-heading); border: 1.5px solid var(--primary); box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.btn-outline:hover { background: var(--primary-gradient); color: #ffffff; border-color: transparent; transform: translateY(-3px) scale(1.02); }
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }

/* ================= WhatsApp Dedicated Buttons & Brand Green Hover ================= */
.btn-whatsapp {
    background: #25d366;
    color: #ffffff !important;
    border: 1.5px solid #25d366;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background: #1eb854 !important;
    border-color: #1eb854 !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45) !important;
}

.btn-outline-whatsapp {
    background: #ffffff;
    color: #1a0b04;
    border: 1.5px solid #25d366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.12);
}
.btn-outline-whatsapp i {
    color: #25d366;
    transition: color 0.2s ease;
}
.btn-outline-whatsapp:hover {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4) !important;
}
.btn-outline-whatsapp:hover i {
    color: #ffffff !important;
}

/* Any button containing WhatsApp icon turns WhatsApp green on hover */
.btn:has(.fa-whatsapp):hover,
.btn-outline:has(.fa-whatsapp):hover,
.btn-accent:has(.fa-whatsapp):hover,
.btn-primary:has(.fa-whatsapp):hover,
a.btn[href*="wa.me"]:hover {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45) !important;
}
.btn:has(.fa-whatsapp):hover i,
.btn-outline:has(.fa-whatsapp):hover i,
.btn-accent:has(.fa-whatsapp):hover i,
.btn-primary:has(.fa-whatsapp):hover i,
a.btn[href*="wa.me"]:hover i {
    color: #ffffff !important;
}

.topbar { background: #231208; color: #ebdacf; padding: 9px 0; font-size: 0.88rem; border-bottom: 2px solid var(--primary); }
.topbar-wrapper { display: flex; justify-content: space-between; align-items: center; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 24px; }
.topbar-item { display: flex; align-items: center; gap: 8px; }
.topbar-item i { color: var(--primary-light); }
.topbar-badge { background: rgba(216, 58, 21, 0.25); color: #ffab91; padding: 3px 12px; border-radius: 20px; font-size: 0.76rem; font-weight: 700; border: 1px solid rgba(255, 138, 101, 0.4); }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a { color: #d1b8a5; font-size: 0.95rem; transition: var(--transition-fast); }
.topbar-social a:hover { color: #ffffff; transform: translateY(-3px) scale(1.15); }

.site-header {
    position: sticky; top: 0; z-index: 999; background: #ffffff;
    border-bottom: none !important;
    box-shadow: none !important;
    transition: var(--transition-smooth);
}
.navbar { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    height: 84px; 
    position: relative; 
    transition: var(--transition-smooth); 
}
.site-header.scrolled .navbar { height: 72px; }

/* Split Navigation Left & Right */
.nav-menu-left {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-right-cluster {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu-right {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link { 
    font-size: 0.98rem; 
    font-weight: 700; 
    color: #2b170e; 
    position: relative; 
    padding: 6px 0; 
    letter-spacing: 0.2px; 
    transition: var(--transition-fast); 
    text-decoration: none;
}
.nav-link::after { 
    content: ''; 
    position: absolute; 
    bottom: -2px; 
    left: 0; 
    width: 0; 
    height: 2.5px; 
    background: var(--primary-gradient); 
    transition: var(--transition-fast); 
    border-radius: 2px; 
}
.nav-link:hover, .nav-link.active { 
    color: var(--primary); 
}
.nav-link:hover::after, .nav-link.active::after { 
    width: 100%; 
}

/* Center Hanging / Floating Circular Logo Badge (Seamless White Cutout, No Border, No Shadow) */
.center-brand-container {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 25;
    pointer-events: none;
}

.center-brand-disc {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: none !important;
    filter: none !important;
    border: none !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 10px;
    text-decoration: none;
}

.center-brand-disc:hover {
    transform: scale(1.04);
    box-shadow: none !important;
}

.center-brand-logo {
    width: 130px;
    height: 120px;
    object-fit: contain;
    border: none !important;
    box-shadow: none !important;
    filter: none !important;
    background: transparent;
    transition: var(--transition-smooth);
}

.site-header.scrolled .center-brand-disc {
    width: 114px;
    height: 114px;
    margin-top: 8px;
}
.site-header.scrolled .center-brand-logo {
    width: 102px;
    height: 102px;
}

.nav-actions { display: flex; align-items: center; gap: 14px; }
.header-cta-btn {
    padding: 10px 22px !important;
    font-size: 0.92rem !important;
    white-space: nowrap;
}
.menu-toggle { display: none; background: transparent; color: var(--primary); font-size: 1.8rem; cursor: pointer; border: none; }

/* Mobile Drawer Navigation */
.mobile-nav-drawer {
    display: none;
}
.mobile-nav-list {
    list-style: none;
    padding: 20px 20px 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-heading);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition-fast);
}
.mobile-nav-link i {
    color: var(--primary);
    width: 22px;
    font-size: 1.1rem;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
    background: #fff6e8;
    color: var(--primary);
}

.core-categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.core-category-card {
    background: #ffffff; border: 2px solid var(--border-gold); border-radius: 26px; overflow: hidden;
    box-shadow: var(--card-shadow); transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative; display: flex; flex-direction: column;
}
.core-category-card:hover { transform: translateY(-12px) scale(1.02); border-color: var(--primary); box-shadow: var(--card-shadow-hover), var(--gold-glow); }
.core-cat-header { padding: 30px 24px 20px; text-align: center; background: linear-gradient(180deg, #fff9ee 0%, #ffffff 100%); border-bottom: 1px solid rgba(194, 130, 19, 0.15); }
.core-cat-icon {
    width: 70px; height: 70px; border-radius: 50%; background: var(--primary-gradient); color: #ffffff;
    font-size: 1.8rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
    box-shadow: 0 8px 20px rgba(194, 130, 19, 0.3); transition: var(--transition-bounce);
}
.core-category-card:hover .core-cat-icon { transform: scale(1.15) rotate(10deg); }
.core-cat-title { font-size: 1.45rem; color: var(--text-heading); margin-bottom: 6px; }
.core-cat-subtitle { font-size: 0.85rem; color: var(--primary-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.core-cat-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.core-cat-desc { color: var(--text-muted); font-size: 0.94rem; line-height: 1.6; margin-bottom: 20px; }
.core-cat-features { list-style: none; margin-bottom: 24px; }
.core-cat-features li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text-heading); font-weight: 600; margin-bottom: 10px; }
.core-cat-features li i { color: var(--primary); }

.section-padding { padding: 90px 0; position: relative; }
.section-header { margin-bottom: 50px; }
.glass-card { background: #ffffff; border: 1px solid var(--border-gold); border-radius: 20px; box-shadow: var(--card-shadow); transition: var(--transition-smooth); }
.glass-card:hover { border-color: var(--primary); box-shadow: var(--card-shadow-hover), var(--gold-glow); transform: translateY(-6px); }

.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; }
.feature-card { padding: 38px 28px; text-align: center; position: relative; overflow: hidden; transition: var(--transition-smooth); }
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow-hover); }
.feature-icon-wrapper {
    width: 80px; height: 80px; margin: 0 auto 22px; border-radius: 50%;
    background: linear-gradient(135deg, #fff3dc 0%, #fae6c2 100%); border: 1.5px solid var(--border-gold-bright);
    display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--primary-dark);
    transition: var(--transition-bounce); box-shadow: 0 8px 20px rgba(194, 130, 19, 0.15);
}
.feature-card:hover .feature-icon-wrapper { transform: scale(1.15) rotate(8deg); background: var(--primary-gradient); color: #ffffff; box-shadow: 0 10px 25px rgba(194, 130, 19, 0.35); }
.feature-title { font-size: 1.28rem; margin-bottom: 12px; color: var(--text-heading); }
.feature-desc { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

.stats-counter-strip {
    margin-top: 55px; background: linear-gradient(135deg, #261309 0%, #170903 100%);
    border: 1.5px solid var(--primary); border-radius: 24px; padding: 40px;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center;
    box-shadow: 0 15px 40px rgba(36, 18, 8, 0.2);
}
.stat-item .stat-number { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; color: #f7ce68; line-height: 1; margin-bottom: 8px; }
.stat-item .stat-label { font-size: 0.95rem; color: #ebdacf; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

.about-creative-section {
    background: radial-gradient(circle at 20% 50%, rgba(247, 206, 104, 0.1) 0%, rgba(250, 246, 240, 0.6) 60%, var(--bg-page) 100%);
    position: relative;
    overflow: hidden;
    transition: background 0.6s ease;
}

.about-creative-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle 600px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(247, 206, 104, 0.18), transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.about-creative-section:hover::before {
    opacity: 1;
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 65px; align-items: center; position: relative; z-index: 2; }

.about-visual { 
    position: relative; 
    padding: 25px 20px;
    perspective: 1000px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-ambient-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 206, 104, 0.4) 0%, rgba(216, 58, 21, 0.1) 50%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 1;
    transition: transform 0.6s ease, background 0.6s ease;
}

.about-visual:hover .about-ambient-glow {
    transform: translate(-50%, -50%) scale(1.25);
    background: radial-gradient(circle, rgba(247, 206, 104, 0.6) 0%, rgba(216, 58, 21, 0.2) 50%, transparent 70%);
}

.about-img-container {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    border: 2px solid var(--border-gold-bright);
    box-shadow: 0 25px 55px rgba(71, 37, 13, 0.18);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    transform-style: preserve-3d;
}

.about-img-container::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -120%;
    width: 70%;
    height: 200%;
    background: linear-gradient(
        60deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    transition: all 0.85s ease;
    pointer-events: none;
    z-index: 3;
}

.about-visual:hover .about-img-container::after {
    left: 150%;
}

.about-visual:hover .about-img-container {
    box-shadow: 0 30px 65px rgba(71, 37, 13, 0.25), 0 0 30px rgba(194, 130, 19, 0.2);
    border-color: var(--primary);
}

.about-img-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-visual:hover .about-img-container img { 
    transform: scale(1.06); 
}

/* Floating Cards on Visual */
.about-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border: 1.5px solid var(--border-gold-bright);
    border-radius: 20px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 35px rgba(71, 37, 13, 0.14);
    z-index: 3;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.about-floating-card.top-float {
    top: 5px;
    left: -15px;
    animation: floatSlow 4s ease-in-out infinite alternate;
}

.about-floating-card.bottom-float {
    bottom: 5px;
    right: -15px;
    animation: floatSlow 4.5s ease-in-out infinite alternate-reverse;
}

.about-visual:hover .about-floating-card {
    box-shadow: 0 20px 40px rgba(71, 37, 13, 0.22);
}

.about-floating-card:hover {
    transform: translateY(-8px) scale(1.08) !important;
    border-color: var(--primary);
    box-shadow: 0 25px 45px rgba(71, 37, 13, 0.25), 0 0 20px rgba(194, 130, 19, 0.4);
    background: #ffffff;
}

.about-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-floating-card:hover .about-badge-icon {
    transform: rotate(15deg) scale(1.15);
}

.about-badge-text strong {
    display: block;
    color: #1a0b04;
    font-size: 0.95rem;
    font-weight: 800;
}

.about-badge-text span {
    font-size: 0.78rem;
    color: #70584b;
}

@keyframes floatSlow {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.about-lead-text {
    font-size: 1.1rem;
    color: #1a0b04;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 14px;
}

.about-sub-text {
    font-size: 0.98rem;
    color: #5c4538;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* 4 Pillars Grid */
.about-pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.about-pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #ffffff;
    padding: 15px 18px;
    border-radius: 18px;
    border: 1px solid rgba(194, 130, 19, 0.2);
    box-shadow: 0 3px 12px rgba(71, 37, 13, 0.04);
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.about-pillar-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0%;
    background: var(--primary-gradient);
    transition: height 0.35s ease;
    border-radius: 0 2px 2px 0;
}

.about-pillar-item:hover::before {
    height: 100%;
}

.about-pillar-item:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: #c28213;
    box-shadow: 0 12px 30px rgba(71, 37, 13, 0.12), 0 0 18px rgba(194, 130, 19, 0.15);
}

.pillar-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff3dc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c28213;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-pillar-item:hover .pillar-icon {
    background: var(--primary-gradient);
    color: #ffffff;
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 4px 14px rgba(194, 130, 19, 0.35);
}

.about-pillar-item strong {
    display: block;
    color: #1a0b04;
    font-size: 0.94rem;
    margin-bottom: 2px;
}

.about-pillar-item p {
    margin: 0;
    font-size: 0.82rem;
    color: #6b5548;
    line-height: 1.45;
}

.menu-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-bottom: 45px; }
.tab-btn {
    padding: 11px 26px; border-radius: 50px; background: #ffffff;
    border: 1.5px solid var(--border-gold); color: var(--text-main); font-size: 0.95rem;
    font-weight: 700; cursor: pointer; box-shadow: 0 4px 12px rgba(71, 37, 13, 0.05);
    transition: var(--transition-smooth);
}
.tab-btn:hover, .tab-btn.active {
    background: var(--primary-gradient); color: #ffffff; border-color: transparent;
    box-shadow: 0 8px 22px rgba(194, 130, 19, 0.35); transform: translateY(-3px) scale(1.03);
}
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 30px; }
.kulfi-card {
    background: #ffffff; border: 1.5px solid var(--border-gold); border-radius: 24px; overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    box-shadow: var(--card-shadow); display: flex; flex-direction: column;
}
.kulfi-card:hover { transform: translateY(-10px) scale(1.02); border-color: var(--primary); box-shadow: var(--card-shadow-hover), var(--gold-glow); }
.kulfi-img-box { height: 220px; background: #fdfaf5; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.kulfi-img-box .flavor-tag {
    position: absolute; top: 15px; left: 15px; background: var(--accent-gradient); color: #ffffff;
    font-size: 0.75rem; font-weight: 700; text-transform: uppercase; padding: 4px 12px;
    border-radius: 20px; letter-spacing: 0.5px; z-index: 2; box-shadow: 0 4px 10px rgba(216, 58, 21, 0.3);
}
.kulfi-img-box img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.kulfi-card:hover .kulfi-img-box img { transform: scale(1.08); }
.kulfi-info { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.kulfi-title { font-size: 1.25rem; color: var(--text-heading); margin-bottom: 8px; transition: color 0.3s ease; }
.kulfi-card:hover .kulfi-title { color: var(--primary-dark); }
.kulfi-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 18px; line-height: 1.55; }
.kulfi-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px dashed rgba(194, 130, 19, 0.3); }
.kulfi-price { font-family: var(--font-heading); font-size: 1.45rem; font-weight: 900; color: var(--primary-dark); }
.kulfi-order-btn {
    width: 42px; height: 42px; border-radius: 50%; background: var(--primary-gradient); color: #ffffff;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer;
    transition: var(--transition-bounce); box-shadow: 0 4px 12px rgba(194, 130, 19, 0.3);
}
.kulfi-order-btn:hover { transform: scale(1.2) rotate(90deg); box-shadow: var(--gold-glow); }

.process-timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px; }
.process-timeline::before {
    content: ''; position: absolute; top: 55px; left: 10%; width: 80%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--primary-light), transparent); z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; padding: 0 10px; transition: var(--transition-smooth); }
.process-step:hover { transform: translateY(-6px); }
.step-num-circle {
    width: 110px; height: 110px; margin: 0 auto 24px; border-radius: 50%; background: #ffffff;
    border: 2px solid var(--primary); display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative; box-shadow: 0 10px 25px rgba(71, 37, 13, 0.1), var(--gold-glow); transition: var(--transition-bounce);
}
.process-step:hover .step-num-circle { transform: scale(1.1) rotate(5deg); background: var(--primary-gradient); }
.step-num-circle .num { font-size: 0.8rem; color: var(--primary-dark); font-weight: 800; text-transform: uppercase; }
.process-step:hover .step-num-circle .num { color: #ffffff; }
.step-num-circle i { font-size: 1.8rem; color: var(--text-heading); margin-top: 4px; }
.process-step:hover .step-num-circle i { color: #ffffff; }
.step-title { font-size: 1.2rem; color: var(--text-heading); margin-bottom: 10px; }
.step-desc { font-size: 0.9rem; color: var(--text-muted); }

.calculator-section { background: #f4ecdf; border-top: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold); }
.calc-box { background: #ffffff; border: 1.5px solid var(--border-gold); border-radius: 28px; padding: 45px; box-shadow: 0 20px 50px rgba(71, 37, 13, 0.08); }
.calc-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 45px; align-items: center; }
.calc-control-group { margin-bottom: 25px; }
.calc-label { display: block; font-weight: 700; color: var(--text-heading); margin-bottom: 12px; font-size: 1.05rem; }
.range-container { display: flex; align-items: center; gap: 20px; }
.custom-range { flex-grow: 1; -webkit-appearance: none; height: 8px; border-radius: 5px; background: #e6dac8; outline: none; }
.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%;
    background: var(--primary-gradient); cursor: pointer; box-shadow: 0 0 10px rgba(194, 130, 19, 0.6);
    border: 2px solid #ffffff; transition: transform 0.2s ease;
}
.custom-range::-webkit-slider-thumb:hover { transform: scale(1.2); }
.range-val-badge { background: var(--primary-gradient); color: #ffffff; padding: 6px 18px; border-radius: 20px; font-weight: 800; font-size: 1.1rem; min-width: 100px; text-align: center; }
.calc-flavor-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.flavor-chip { padding: 8px 18px; background: #f7f1e6; border: 1px solid var(--border-gold); border-radius: 20px; color: var(--text-main); cursor: pointer; font-size: 0.92rem; font-weight: 600; transition: var(--transition-fast); }
.flavor-chip:hover { border-color: var(--primary); transform: translateY(-2px); }
.flavor-chip.selected { background: var(--primary-gradient); color: #ffffff; font-weight: 700; border-color: transparent; }
.calc-summary-card { background: linear-gradient(135deg, #261309 0%, #170903 100%); border: 2px solid var(--primary); border-radius: 24px; padding: 38px; text-align: center; color: #ffffff; box-shadow: 0 15px 35px rgba(36, 18, 8, 0.25); transition: var(--transition-smooth); }
.calc-summary-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(36, 18, 8, 0.35); }
.calc-summary-card h4 { font-size: 1.2rem; color: #ffffff; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.summary-estimate { font-family: var(--font-heading); font-size: 3rem; font-weight: 900; color: #f7ce68; margin-bottom: 10px; }
.summary-sub { font-size: 0.9rem; color: #ebdacf; margin-bottom: 25px; }

.franchise-card-banner {
    background: radial-gradient(circle at 100% 0%, rgba(216, 58, 21, 0.15) 0%, rgba(255, 255, 255, 0.98) 70%), url('https://images.unsplash.com/photo-1563805042-7684c019e1cb?auto=format&fit=crop&w=1200&q=80') center/cover;
    background-blend-mode: soft-light; border: 2px solid var(--border-gold-bright); border-radius: 30px;
    padding: 60px 50px; position: relative; box-shadow: var(--card-shadow);
}
.franchise-content { max-width: 650px; }
.franchise-perks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 30px 0; }
.perk-item { display: flex; align-items: center; gap: 14px; background: #ffffff; padding: 16px 20px; border-radius: 16px; border: 1px solid var(--border-gold); box-shadow: 0 4px 15px rgba(71, 37, 13, 0.05); transition: var(--transition-smooth); }
.perk-item:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: 0 8px 25px rgba(71, 37, 13, 0.12); }
.perk-item i { font-size: 1.5rem; color: var(--primary); }

.testimonial-card { background: #ffffff; border: 1.5px solid var(--border-gold); border-radius: 24px; padding: 35px 30px; position: relative; box-shadow: var(--card-shadow); transition: var(--transition-smooth); }
.testimonial-card:hover { border-color: var(--primary); transform: translateY(-8px); box-shadow: var(--card-shadow-hover); }
.rating-stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-quote { font-size: 1.05rem; color: var(--text-main); font-style: italic; margin-bottom: 24px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.author-avatar { width: 54px; height: 54px; border-radius: 50%; border: 2px solid var(--primary); overflow: hidden; transition: var(--transition-smooth); }
.testimonial-card:hover .author-avatar { transform: scale(1.1); }
.author-details h5 { font-size: 1.1rem; color: var(--text-heading); margin-bottom: 2px; }
.author-details span { font-size: 0.82rem; color: var(--text-muted); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
.contact-info-card { background: #ffffff; border: 1.5px solid var(--border-gold); border-radius: 28px; padding: 40px; box-shadow: var(--card-shadow); }
.contact-info-list { margin-top: 30px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 26px; transition: var(--transition-smooth); }
.contact-info-item:hover { transform: translateX(6px); }
.contact-info-icon {
    width: 50px; height: 50px; border-radius: 14px; background: #fff3dc; border: 1px solid var(--border-gold);
    display: flex; align-items: center; justify-content: center; color: var(--primary-dark); font-size: 1.3rem;
    flex-shrink: 0; transition: var(--transition-bounce);
}
.contact-info-item:hover .contact-info-icon { background: var(--primary-gradient); color: #ffffff; transform: scale(1.1); }
.contact-info-text h5 { font-size: 1.1rem; color: var(--text-heading); margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: 0.94rem; color: var(--text-muted); }
.contact-form-card { background: #ffffff; border: 1.5px solid var(--border-gold); border-radius: 28px; padding: 45px; box-shadow: var(--card-shadow); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.92rem; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.form-control { width: 100%; padding: 14px 20px; background: #faf6f0; border: 1px solid var(--border-gold); border-radius: 14px; color: var(--text-heading); font-size: 0.95rem; transition: var(--transition-fast); }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 15px rgba(194, 130, 19, 0.25); background: #ffffff; transform: translateY(-1px); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-status { margin-top: 15px; padding: 12px 18px; border-radius: 12px; display: none; font-size: 0.95rem; }
.form-status.success { display: block; background: #e8f5e9; border: 1px solid #4caf50; color: #2e7d32; }
.form-status.error { display: block; background: #ffebee; border: 1px solid #f44336; color: #c62828; }

.site-footer { background: #1a0b04; color: #ebdacf; border-top: 3px solid var(--primary); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 60px; }
.footer-brand { display: flex; flex-direction: column; }
.footer-logo-link { display: inline-block; width: fit-content; text-decoration: none; }
.footer-logo-circle {
    width: 84px;
    height: 84px;
    background: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}
.footer-logo-circle:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 25px rgba(247, 206, 104, 0.35);
}
.footer-logo-circle img {
    height: 74px;
    width: 74px;
    object-fit: contain;
    border-radius: 50%;
}
.footer-brand p { color: #d1b8a5; font-size: 0.94rem; max-width: 320px; line-height: 1.7; }
.footer-col h4 { font-size: 1.2rem; color: #ffffff; margin-bottom: 24px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 2px; background: var(--primary-gradient); }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #d1b8a5; font-size: 0.94rem; transition: var(--transition-fast); display: inline-flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: #f7ce68; transform: translateX(6px); }
.footer-bottom { padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.1); display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; color: #b89c89; }

.floating-actions { position: fixed; bottom: 85px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 990; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; cursor: pointer; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25); transition: var(--transition-bounce); }
.float-whatsapp { background: #25d366; color: #ffffff; }
.float-whatsapp:hover { transform: scale(1.15) rotate(10deg); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5); }
.float-top { background: var(--primary-gradient); color: #ffffff; opacity: 0; visibility: hidden; transform: translateY(20px); }
.float-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.float-top:hover { transform: translateY(-6px) scale(1.1); box-shadow: var(--gold-glow); }

/* ================= Full-Width Google Map Section ================= */
.fullwidth-map-section {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    line-height: 0;
    border-top: 2px solid var(--border-gold-bright);
    box-shadow: 0 -5px 25px rgba(71, 37, 13, 0.05);
}

.fullwidth-map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.map-floating-overlay {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 860px;
    z-index: 5;
    pointer-events: none;
}

.map-overlay-card {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border: 1.5px solid var(--border-gold-bright);
    border-radius: 50px;
    padding: 12px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 35px rgba(71, 37, 13, 0.16);
    flex-wrap: wrap;
    gap: 15px;
}

.map-overlay-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.map-pin-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff3dc;
    border: 1.5px solid var(--border-gold-bright);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d83a15;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.map-overlay-left h4 {
    margin: 0;
    color: #1a0b04;
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.2;
}

.map-overlay-left p {
    margin: 2px 0 0;
    font-size: 0.84rem;
    color: #5c4538;
}

/* ================================================================
   FRANCHISE OFFER INTERACTIVE MARQUEE TICKER (HOVER TO PAUSE)
   ================================================================ */
.franchise-marquee-strip {
    background: linear-gradient(90deg, #130703 0%, #240e06 50%, #130703 100%);
    border-top: 1.5px solid rgba(194, 130, 19, 0.45);
    border-bottom: 1.5px solid rgba(194, 130, 19, 0.45);
    padding: 13px 0;
    overflow: hidden;
    position: relative;
    z-index: 25;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
    cursor: pointer;
}

.franchise-marquee-strip::before,
.franchise-marquee-strip::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.franchise-marquee-strip::before {
    left: 0;
    background: linear-gradient(90deg, #130703 0%, transparent 100%);
}

.franchise-marquee-strip::after {
    right: 0;
    background: linear-gradient(270deg, #130703 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

/* Hover Pause Effect Requested by User */
.franchise-marquee-strip:hover .marquee-track {
    animation-play-state: paused !important;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
    white-space: nowrap;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #ebdacf;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 5px 14px;
    border-radius: 20px;
}

.marquee-item strong {
    color: #f7ce68;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.marquee-item .highlight-badge {
    background: var(--accent-gradient);
    color: #ffffff;
    padding: 3px 11px;
    border-radius: 14px;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 2px 8px rgba(216, 58, 21, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.marquee-item .gold-icon {
    color: #f7ce68;
    font-size: 1.05rem;
}

.marquee-item:hover {
    background: rgba(194, 130, 19, 0.22);
    color: #ffffff;
    transform: scale(1.05);
}

.marquee-item:hover strong {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(247, 206, 104, 0.9);
}

.marquee-separator {
    color: #c28213;
    font-size: 0.75rem;
    opacity: 0.65;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ================================================================
   FRANCHISE FAQ ACCORDION SECTION
   ================================================================ */
.franchise-faq-section {
    background: linear-gradient(180deg, #fffcf7 0%, #fff6ec 100%);
    position: relative;
    border-top: 1px solid rgba(196, 151, 70, 0.15);
    border-bottom: 1px solid rgba(196, 151, 70, 0.15);
}

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

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1.5px solid rgba(196, 151, 70, 0.22);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px rgba(78, 38, 14, 0.04);
}

.faq-item:hover {
    border-color: rgba(216, 58, 21, 0.4);
    box-shadow: 0 6px 22px rgba(216, 58, 21, 0.08);
}

.faq-item.active {
    border-color: #d83a15;
    box-shadow: 0 8px 30px rgba(216, 58, 21, 0.12);
    background: #ffffff;
}

.faq-header {
    width: 100%;
    padding: 18px 24px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.2s ease;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a0b04;
    line-height: 1.45;
    flex: 1;
}

.faq-q-icon {
    color: #d83a15;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.faq-toggle-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fcf4eb;
    color: #8c5607;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-toggle-icon {
    background: #d83a15;
    color: #ffffff;
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-body {
    max-height: 600px;
}

.faq-content {
    padding: 0 24px 22px 54px;
    color: #553e32;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-content strong {
    color: #1a0b04;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.92rem;
    color: #3d281d;
}

.faq-list li i {
    color: #2e7d32;
    margin-top: 4px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-cta-box {
    margin-top: 36px;
    background: linear-gradient(135deg, #1a0b04 0%, #35170a 100%);
    border-radius: 20px;
    padding: 26px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 12px 36px rgba(26, 11, 4, 0.25);
    border: 1px solid rgba(247, 206, 104, 0.3);
}

.faq-cta-info h4 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.faq-cta-info p {
    color: #ebdacf;
    font-size: 0.9rem;
    margin: 0;
}

.faq-cta-btns {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-shrink: 0;
}

/* ================================================================
   MOBILE BOTTOM STICKY FRANCHISE ACTION BAR (BASE)
   ================================================================ */
.mobile-sticky-bar {
    display: none;
}

/* ================================================================
   RESPONSIVE DESIGN SYSTEM (DESKTOP, LAPTOP, TABLET & MOBILE)
   ================================================================ */

/* 1. Laptop Screen Adaptations (1025px - 1280px) */
@media (max-width: 1280px) and (min-width: 1025px) {
    .nav-menu-left { gap: 16px; }
    .nav-menu-right { gap: 14px; }
    .nav-right-cluster { gap: 16px; }
    .nav-link { font-size: 0.9rem; }
    .header-cta-btn { padding: 8px 16px !important; font-size: 0.85rem !important; }
    .center-brand-disc { width: 126px; height: 126px; }
    .center-brand-logo { width: 116px; height: 108px; }
}

/* 2. Tablet & iPad Adaptations (769px - 1024px) */
@media (max-width: 1024px) {
    .nav-menu-left, .nav-menu-right { display: none !important; }
    .nav-right-cluster { margin-left: auto; }
    .menu-toggle { display: flex; align-items: center; justify-content: center; font-size: 1.7rem; }
    .navbar { height: 80px; }
    .center-brand-disc { width: 112px; height: 112px; margin-top: 8px; }
    .center-brand-logo { width: 102px; height: 94px; }
    
    .mobile-nav-drawer { 
        display: flex; 
        position: fixed; 
        top: 80px; 
        left: -100%; 
        width: 100%; 
        height: calc(100vh - 80px); 
        background: #ffffff; 
        flex-direction: column; 
        overflow-y: auto; 
        transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1); 
        border-top: 1.5px solid var(--border-gold); 
        z-index: 998; 
        box-shadow: 0 15px 35px rgba(0,0,0,0.15); 
    }
    .mobile-nav-drawer.open { left: 0; }
    
    .stats-counter-strip { grid-template-columns: repeat(2, 1fr); gap: 20px; padding: 30px; }
    .core-categories-grid { grid-template-columns: 1fr; }
    .about-grid, .calc-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { max-width: 600px; margin: 0 auto; }
    .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .process-timeline::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
}

/* 3. Mobile Device Adaptations (481px - 768px) */
@media (max-width: 768px) {
    .topbar { display: none !important; }
    .navbar { height: 74px; }
    .nav-right-cluster { margin-left: auto; }
    .menu-toggle { display: flex; align-items: center; justify-content: center; font-size: 1.6rem; min-width: 44px; min-height: 44px; }
    .center-brand-disc { width: 92px; height: 92px; margin-top: 2px; }
    .center-brand-logo { width: 84px; height: 76px; }
    .header-cta-btn { display: none !important; }
    .mobile-nav-drawer { top: 74px; height: calc(100vh - 74px); }
    
    .container { padding: 0 16px; width: 100%; max-width: 100vw; box-sizing: border-box; }
    .section-padding { padding: 50px 0; }
    .section-header { margin-bottom: 35px; }
    .section-title { font-size: clamp(1.55rem, 5.2vw, 2rem); }
    .section-desc { font-size: 0.9rem; }
    
    .page-banner { padding: 50px 16px 40px; }
    .page-banner h1 { font-size: clamp(1.8rem, 5.5vw, 2.5rem); }
    .page-banner p { font-size: 0.95rem; }
    
    .about-visual { padding: 10px 0; max-width: 100%; }
    .about-img-container { width: 100%; border-radius: 20px; }
    .about-img-container img { height: 300px; width: 100%; object-fit: cover; }
    .about-floating-card { padding: 8px 12px; gap: 8px; max-width: calc(100% - 24px); }
    .about-badge-icon { width: 32px; height: 32px; font-size: 0.9rem; }
    .about-badge-text strong { font-size: 0.8rem; }
    .about-badge-text span { font-size: 0.68rem; }
    .about-floating-card.top-float { top: 8px; left: 8px; }
    .about-floating-card.bottom-float { bottom: 8px; right: 8px; }
    
    .about-pillars-grid { grid-template-columns: 1fr; gap: 12px; }
    .menu-grid { grid-template-columns: 1fr; gap: 20px; }
    .franchise-card-banner { padding: 30px 18px; border-radius: 20px; }
    .franchise-perks, .form-row, .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .calc-box { padding: 24px 16px; border-radius: 20px; }
    .calc-summary-card { padding: 28px 18px; border-radius: 20px; }
    .stats-counter-strip { grid-template-columns: 1fr 1fr; padding: 22px 14px; gap: 16px; border-radius: 20px; }
    .stat-item .stat-number { font-size: 1.9rem; }
    
    .floating-actions { bottom: 80px; right: 14px; gap: 8px; }
    .float-btn { width: 46px; height: 46px; font-size: 1.2rem; }
    
    .fullwidth-map-section { height: 380px; }
    .map-overlay-box { width: calc(100% - 30px); left: 15px; bottom: 15px; padding: 12px 16px; }

    .franchise-marquee-strip { padding: 9px 0; }
    .marquee-item { font-size: 0.84rem; gap: 8px; padding: 3px 8px; }
    .marquee-item .highlight-badge { font-size: 0.7rem; padding: 2px 8px; }
    .marquee-content { gap: 20px; padding-right: 20px; }
    .marquee-track { animation-duration: 22s; }

    body { padding-bottom: 64px; }
    
    .mobile-sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 990;
        background: rgba(26, 11, 4, 0.96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-top: 1.5px solid rgba(247, 206, 104, 0.45);
        padding: 10px 16px;
        padding-bottom: max(10px, env(safe-area-inset-bottom));
        box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.35);
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .sticky-info {
        display: flex;
        flex-direction: column;
        gap: 2px;
        min-width: 0;
    }

    .sticky-badge {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 0.68rem;
        font-weight: 800;
        color: #ffeb3b;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .sticky-title {
        color: #ffffff;
        font-size: 0.84rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sticky-title strong {
        color: #f7ce68;
        font-weight: 800;
    }

    .sticky-actions {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    .sticky-btn-wa {
        background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
        color: #ffffff !important;
        padding: 8px 14px;
        border-radius: 25px;
        font-size: 0.82rem;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
        white-space: nowrap;
        transition: transform 0.2s ease;
    }

    .sticky-btn-wa:active {
        transform: scale(0.96);
    }

    .sticky-btn-call {
        background: linear-gradient(135deg, #d83a15 0%, #a82304 100%);
        color: #ffffff !important;
        padding: 8px 14px;
        border-radius: 25px;
        font-size: 0.82rem;
        font-weight: 700;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        box-shadow: 0 4px 12px rgba(216, 58, 21, 0.35);
        white-space: nowrap;
        transition: transform 0.2s ease;
    }

    .sticky-btn-call:active {
        transform: scale(0.96);
    }

    .faq-header {
        padding: 16px 18px;
    }

    .faq-question {
        font-size: 0.96rem;
        gap: 10px;
    }

    .faq-content {
        padding: 0 18px 18px 42px;
        font-size: 0.9rem;
    }

    .faq-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 22px 18px;
        gap: 16px;
    }

    .faq-cta-btns {
        width: 100%;
        flex-direction: column;
        gap: 10px;
    }

    .faq-cta-btns .btn {
        width: 100%;
    }

    /* Lift third-party widgets above mobile sticky bar */
    iframe[id*="gallabox"],
    div[id*="gallabox"],
    .gallabox-chat-button,
    #gbx-root,
    [class*="gallabox"] {
        bottom: 70px !important;
    }
}

/* 4. Small Mobile Phones (320px - 480px) */
@media (max-width: 480px) {
    .container { padding: 0 12px; width: 100%; max-width: 100vw; box-sizing: border-box; }
    .navbar { height: 68px; padding: 0 6px; }
    .center-brand-disc { width: 80px; height: 80px; margin-top: 2px; }
    .center-brand-logo { width: 72px; height: 64px; }
    .mobile-nav-drawer { top: 68px; height: calc(100vh - 68px); }
    
    .page-banner { padding: 40px 12px 30px; }
    .page-banner h1 { font-size: 1.7rem; }
    .page-banner p { font-size: 0.88rem; }
    
    .section-padding { padding: 40px 0; }
    .section-header { margin-bottom: 25px; }
    .section-title { font-size: 1.55rem; }
    .section-desc { font-size: 0.85rem; }
    
    .about-img-container img { height: 240px; }
    .about-floating-card { display: none; }
    
    .stats-counter-strip { grid-template-columns: 1fr 1fr; padding: 18px 10px; gap: 12px; }
    .stat-item .stat-number { font-size: 1.6rem; }
    .stat-item .stat-label { font-size: 0.72rem; }
    
    .process-timeline { grid-template-columns: 1fr; gap: 18px; }
    .process-card { padding: 22px 16px; }
    
    .menu-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-bottom: 25px; }
    .tab-btn { padding: 7px 12px; font-size: 0.78rem; }
    .kulfi-card { border-radius: 18px; }
    .kulfi-img-box { height: 180px; }
    .kulfi-info { padding: 16px 14px; }
    .kulfi-title { font-size: 1.15rem; }
    .kulfi-desc { font-size: 0.82rem; margin-bottom: 12px; }
    .kulfi-price { font-size: 1.3rem; }
    .kulfi-order-btn { width: 36px; height: 36px; font-size: 0.95rem; }
    
    .calc-box { padding: 20px 12px; }
    .range-container { flex-direction: column; align-items: stretch; gap: 10px; }
    .range-val-badge { align-self: center; font-size: 0.92rem; padding: 4px 14px; }
    .calc-flavor-chips { gap: 6px; }
    .flavor-chip { padding: 6px 12px; font-size: 0.78rem; }
    .calc-summary-card { padding: 22px 14px; }
    .summary-estimate { font-size: 2.2rem; }
    
    .contact-info-card, .contact-form-card { padding: 22px 14px; border-radius: 18px; }
    .contact-info-item { gap: 12px; }
    .contact-info-icon { width: 42px; height: 42px; font-size: 1.1rem; }
    .form-control { padding: 12px 14px; font-size: 0.88rem; border-radius: 10px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 26px; margin-bottom: 30px; text-align: center; }
    .footer-brand { align-items: center; }
    .footer-brand p { max-width: 100%; font-size: 0.88rem; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-links a { justify-content: center; font-size: 0.88rem; }
    
    .btn { padding: 10px 18px; font-size: 0.86rem; }
    .fullwidth-map-section { height: 320px; }
    .map-overlay-box { display: none; }

    .faq-content { padding: 0 14px 16px 14px; }
    .faq-question { font-size: 0.9rem; }
    .faq-toggle-icon { width: 30px; height: 30px; font-size: 0.75rem; }
    .sticky-title { font-size: 0.76rem; }
    .sticky-btn-wa, .sticky-btn-call { padding: 7px 11px; font-size: 0.76rem; }
}