/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --primary: #D4A017;
    /* Sunahri Gold */
    --primary-dark: #B8860B;
    --secondary: #2C5F2D;
    /* Deep Agricultural Green */
    --accent: #E9C46A;
    --background: #FDFBF7;
    /* Warm Cream */
    --surface: #FFFFFF;
    --text: #1A1A1A;
    --muted: #6B7280;
    --border: rgba(255, 255, 255, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.12);
    --radius: 24px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text);
}

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

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

/* =========================================
   2. GLASSMORPHISM UTILITIES
   ========================================= */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius);
    transition: var(--transition);
}

.glass-card:hover {
    box-shadow: var(--shadow-hover);
    /* transform: translateY(-5px); */
}

.glass-header {
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 160, 23, 0.1);
    transition: var(--transition);
}

.glass-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* =========================================
   3. TYPOGRAPHY & COMPONENTS
   ========================================= */
.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
}

.btn-premium:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 160, 23, 0.3);
    color: white;
}

.btn-outline-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text);
    font-weight: 600;
    border-radius: 50px;
    border: 1.5px solid var(--text);
    transition: var(--transition);
}

.btn-outline-premium:hover {
    background: var(--text);
    color: white;
}

/* =========================================
   4. TOP ANNOUNCEMENT BAR & HEADER UI
   ========================================= */
.top-announcement-bar {
    background: rgba(12, 22, 14, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.8rem;
    z-index: 1001;
    position: relative;
}

.announcement-pill {
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.3);
    padding: 3px 14px;
    border-radius: 20px;
    color: #F3C649;
    font-weight: 500;
}

.glass-header {
    background: rgba(16, 29, 18, 0.88) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 160, 23, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    position: sticky;
    z-index: 1000;
    padding: 0.15rem 0;
}

.glass-header.scrolled {
    background: rgba(12, 24, 14, 0.96) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.logo-img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(212, 160, 23, 0.2));
    transition: transform 0.3s ease;
}

.navbar-custom .navbar-brand:hover .logo-img {
    transform: scale(1.04);
}

.navbar-custom .nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0.4rem;
    padding: 0.5rem 1rem !important;
    border-radius: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-custom .nav-link.active,
.navbar-custom .nav-link:hover {
    color: #F3C649 !important;
    background: rgba(255, 255, 255, 0.08);
}

.navbar-custom .nav-link::after {
    display: none;
}

.header-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.header-contact-link:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 160, 23, 0.4);
}

.contact-icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-header-enquiry {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #D4A017 0%, #B8860B 100%);
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-header-enquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 160, 23, 0.5);
}

.fs-7 {
    font-size: 0.85rem;
}

.fs-8 {
    font-size: 0.75rem;
}

/* =========================================
   5. NEW BANNER / HERO SECTION
   ========================================= */
.hero-banner-section {
    position: relative;
    min-height: 90vh;
    padding-top: 1px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 24, 12, 0.94) 0%, rgba(20, 34, 18, 0.88) 50%, rgba(38, 24, 8, 0.90) 100%);
    z-index: 1;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.4);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    color: #F3C649;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.18;
}

.hero-title .highlight-gold {
    color: #F3C649;
    background: linear-gradient(135deg, #F3C649 0%, #E9C46A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 580px;
}

.hero-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

h4#heroProdTitle {
    font-size: 20px;
}

small#heroProdSubtitle {
    font-size: 12px;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    padding: 8px 16px;
    border-radius: 30px;
    color: #FFFFFF;
    font-size: 0.88rem;
    font-weight: 500;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, #D4A017 0%, #B8860B 100%);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(212, 160, 23, 0.35);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 160, 23, 0.5);
    color: #FFFFFF;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* =========================================
   3D HERO STAGE & HERO-VISUAL-COL UI
   ========================================= */
.hero-stage-container {
    position: relative;
    padding: 30px 15px;
}

.stage-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.35) 0%, rgba(44, 95, 45, 0.2) 60%, transparent 80%);
    filter: blur(50px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.stage-rotating-ring {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 410px;
    height: 410px;
    border: 2px dashed rgba(212, 160, 23, 0.3);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    animation: rotateRing 30s linear infinite;
    display: none !important;
}

@keyframes rotateRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Product Selector Tabs */
.hero-product-tabs {
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(16px);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
}

.prod-tab-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 11;
}

.prod-tab-btn * {
    pointer-events: none;
}

.prod-tab-btn.active,
.prod-tab-btn:hover {
    background: linear-gradient(135deg, #D4A017 0%, #B8860B 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.4);
}

/* Main Glass Stage */
.glass-stage {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 32px;
    padding: 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s ease;
}

.glass-stage:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 160, 23, 0.4);
}

.stage-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.stage-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: #F3C649;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stage-badge-cert {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFF;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
}

.stage-spotlight-box {
    width: 100%;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 0;
}

.stage-main-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.45));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stage-info-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.spec-pill {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFF;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 15px;
}

/* Floating Micro Cards */
.stage-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: rgba(16, 32, 18, 0.90);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 22px;
    z-index: 4;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.card-top-left {
    top: 65px;
    left: -35px;
    animation: stageFloat1 6s ease-in-out infinite alternate;
}

.card-bottom-right {
    bottom: 30px;
    right: -30px;
    animation: stageFloat2 7s ease-in-out infinite alternate;
}

.card-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.bg-success-subtle {
    background: rgba(44, 95, 45, 0.35);
}

.bg-warning-subtle {
    background: rgba(212, 160, 23, 0.35);
}

/* Floating Seal */
.stage-trust-seal {
    position: absolute;
    top: -15px;
    right: 15px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #2C5F2D 0%, #1B401C 100%);
    border: 2px solid rgba(212, 160, 23, 0.6);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.seal-text {
    font-size: 0.6rem;
    font-weight: 700;
    color: #FFF;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.fa-spin-slow {
    animation: fa-spin 12s infinite linear;
}

@keyframes stageFloat1 {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-12px) rotate(-2deg);
    }
}

@keyframes stageFloat2 {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-10px) rotate(2deg);
    }
}

/* Media Queries for Stage & Header */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .card-top-left {
        left: 0;
    }

    .card-bottom-right {
        right: 0;
    }
}

@media (max-width: 991.98px) {
    .hero-banner-section {
        padding-top: 30px;
        padding-bottom: 40px;
        text-align: center;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features-list {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .stage-floating-card {
        position: static;
        margin: 12px auto;
        max-width: 300px;
        animation: none;
    }

    .hero-stage-container {
        padding: 20px 0;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.98rem;
    }

    .logo-img {
        height: 38px;
    }

    .glass-stage {
        padding: 16px;
    }

    .stage-spotlight-box {
        height: 210px;
    }
}

/* =========================================
   6. SECTIONS GENERAL
   ========================================= */
section {
    padding: 50px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 600px;
}

/* =========================================
   7. PRODUCT SHOWCASE V2 (REDESIGNED & RESPONSIVE)
   ========================================= */
.products-section {
    background: linear-gradient(180deg, rgba(253, 251, 247, 1) 0%, rgba(245, 240, 230, 0.6) 100%);
}

.product-filter-wrapper {
    background: rgba(0, 0, 0, 0.05);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(212, 160, 23, 0.25);
    display: inline-flex;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #D4A017 0%, #B8860B 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.35);
}

.product-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card-v2 {
    background: #FFFFFF;
    border: 1px solid rgba(212, 160, 23, 0.22);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(212, 160, 23, 0.2);
    border-color: rgba(212, 160, 23, 0.55);
}

.product-badge-bar {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.badge-tag {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.badge-cert {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    color: #2C5F2D;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(44, 95, 45, 0.2);
}

.product-img-wrapper {
    width: 100%;
    height: 240px;
    background: radial-gradient(circle, rgba(248, 244, 233, 0.9) 0%, rgba(255, 255, 255, 1) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 24px 16px 12px;
    overflow: hidden;
}

.product-ambient-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.25) 0%, transparent 70%);
    filter: blur(25px);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.4s ease;
}

.product-ambient-glow.glow-green {
    background: radial-gradient(circle, rgba(44, 95, 45, 0.25) 0%, transparent 70%);
}

.product-ambient-glow.glow-gold {
    background: radial-gradient(circle, rgba(212, 160, 23, 0.3) 0%, transparent 70%);
}

.product-ambient-glow.glow-red {
    background: radial-gradient(circle, rgba(220, 53, 69, 0.2) 0%, transparent 70%);
}

.product-card-v2:hover .product-ambient-glow {
    transform: scale(1.3);
}

.product-img {
    max-height: 190px;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card-v2:hover .product-img {
    transform: scale(1.08) rotate(1deg);
}

.product-meta {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.spec-chip {
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.25);
    color: #4A3B10;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.btn-product-enquire {
    background: linear-gradient(135deg, #2C5F2D 0%, #1B401C 100%);
    color: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(44, 95, 45, 0.25);
    cursor: pointer;
}

.btn-product-enquire:hover {
    background: linear-gradient(135deg, #D4A017 0%, #B8860B 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(212, 160, 23, 0.4);
}

.glass-modal {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

/* Responsive tweaks for Product Section */
@media (max-width: 767.98px) {
    .product-filter-wrapper {
        border-radius: 25px;
        width: 100%;
        justify-content: center;
    }

    .filter-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .product-img-wrapper {
        height: 200px;
    }

    .product-img {
        max-height: 160px;
    }

    .product-title {
        font-size: 1.1rem;
    }
}

/* =========================================
   8. OUR PROCESS (5-Stage Quality Journey)
   ========================================= */
.our-process-section {
    background: var(--background);
    overflow: hidden;
    position: relative;
    padding: 90px 0;
}

/* Background Ambient Glows */
.process-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.process-bg-glow.glow-1 {
    width: 420px;
    height: 420px;
    top: 5%;
    left: -100px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
}

.process-bg-glow.glow-2 {
    width: 500px;
    height: 500px;
    bottom: 5%;
    right: -120px;
    background: radial-gradient(circle, rgba(44, 95, 45, 0.08) 0%, transparent 70%);
}

.process-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(212, 160, 23, 0.1);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(212, 160, 23, 0.25);
}

.process-title-gold {
    background: linear-gradient(90deg, #D4A017, #E9C46A, #B8860B);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Flow Wrapper & Desktop Connecting Track */
.process-flow-wrapper {
    position: relative;
    margin-top: 2.5rem;
}

.process-track-line {
    position: absolute;
    top: 54px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: rgba(212, 160, 23, 0.18);
    z-index: 1;
    display: none !important;
}

.process-track-progress {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(212, 160, 23, 0.2) 0%,
            rgba(44, 95, 45, 0.6) 50%,
            rgba(212, 160, 23, 0.8) 100%);
    background-size: 200% 100%;
    animation: processTrackMove 4s linear infinite;
}

@keyframes processTrackMove {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -100% 0;
    }
}

/* Process Grid 4-Columns */
.process-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}

.process-card-item {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Process Card V4 Surface (Clean, No Para) */
.process-card-v4 {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 22px;
    padding: 1.75rem 1.4rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.process-card-v4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.process-card-v4:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 160, 23, 0.45);
    background: #ffffff;
}

.process-card-v4:hover::before {
    opacity: 1;
}

/* Card Top: Step number & Icon */
.process-v4-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.process-v4-num {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.process-card-v4:hover .process-v4-num {
    color: var(--primary);
}

.process-v4-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: all 0.35s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.process-card-v4:hover .process-v4-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Icon Color Palettes */
.icon-amber {
    background: rgba(212, 160, 23, 0.12);
    color: #D4A017;
    border: 1px solid rgba(212, 160, 23, 0.25);
}

.icon-green {
    background: rgba(44, 95, 45, 0.12);
    color: #2C5F2D;
    border: 1px solid rgba(44, 95, 45, 0.25);
}

.icon-gold {
    background: rgba(233, 196, 106, 0.2);
    color: #B8860B;
    border: 1px solid rgba(233, 196, 106, 0.35);
}

.icon-blue {
    background: rgba(59, 130, 246, 0.12);
    color: #2563EB;
    border: 1px solid rgba(59, 130, 246, 0.25);
}

.icon-emerald {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

/* Process Tags */
.process-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 0.65rem;
    width: fit-content;
}

.tag-amber {
    background: rgba(212, 160, 23, 0.1);
    color: #B8860B;
}

.tag-green {
    background: rgba(44, 95, 45, 0.1);
    color: #2C5F2D;
}

.tag-gold {
    background: rgba(233, 196, 106, 0.2);
    color: #8C6200;
}

.tag-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #1D4ED8;
}

.tag-emerald {
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
}

.process-v4-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.25rem;
    line-height: 1.35;
    flex-grow: 1;
}

.process-v4-highlight {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text);
    display: inline-flex;
    align-items: center;
    padding-top: 0.85rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    margin-top: auto;
}

/* Assurance Banner */
.process-assurance-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(253, 251, 247, 0.9));
    border: 1px solid rgba(212, 160, 23, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.assurance-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.assurance-pill {
    background: rgba(44, 95, 45, 0.06);
    border: 1px solid rgba(44, 95, 45, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
}

.btn-process-action {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.6rem;
    background: linear-gradient(135deg, var(--secondary), #1b3d1c);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(44, 95, 45, 0.2);
}

.btn-process-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(44, 95, 45, 0.35);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/* =========================================
   Responsive Breakpoints for Our Process (4-Columns)
   ========================================= */
/* Desktop / Laptop */
@media (min-width: 992px) {
    .process-grid-4 {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

/* Tablet (768px - 991.98px) */
@media (max-width: 991.98px) and (min-width: 576px) {
    .process-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .our-process-section {
        padding: 60px 0;
    }
}

/* Mobile Devices (< 576px) */
@media (max-width: 575.98px) {
    .our-process-section {
        padding: 50px 0;
    }

    .process-grid-4 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .process-card-v4 {
        padding: 1.4rem 1.2rem;
        border-radius: 18px;
    }

    .process-v4-top {
        margin-bottom: 0.9rem;
    }

    .process-v4-icon {
        width: 46px;
        height: 46px;
        font-size: 1.2rem;
    }

    .process-assurance-banner {
        padding: 1.25rem !important;
    }

    .assurance-pill {
        width: 100%;
        justify-content: center;
    }

    .btn-process-action {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   9. OUR PROMISE (Quality Pledge & 4-Pillar Grid)
   ========================================= */
.promise-v2-section {
    background: linear-gradient(135deg, #09150b 0%, #122214 50%, #0a170c 100%);
    overflow: hidden;
    position: relative;
}

.promise-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
}

.promise-bg-glow.glow-left {
    width: 450px;
    height: 450px;
    top: 10%;
    left: -120px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
}

.promise-bg-glow.glow-right {
    width: 500px;
    height: 500px;
    bottom: 5%;
    right: -100px;
    background: radial-gradient(circle, rgba(44, 95, 45, 0.18) 0%, transparent 70%);
}

.promise-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
}

.promise-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.promise-title {
    font-size: clamp(2rem, 3.8vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.promise-gold-text {
    background: linear-gradient(90deg, #D4A017, #F3C649, #D4A017);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    animation: goldShimmer 3.5s linear infinite;
}

.promise-subtext {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.75;
}

/* Promise Checklist */
.promise-checklist {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.promise-check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.promise-check-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(212, 160, 23, 0.14);
    border: 1px solid rgba(212, 160, 23, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.promise-check-item strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.promise-check-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.83rem;
    line-height: 1.5;
}

/* Buttons */
.btn-promise-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.85rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.25);
}

.btn-promise-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(212, 160, 23, 0.4);
    color: #ffffff;
}

.btn-promise-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.85rem 1.6rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-promise-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 160, 23, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
}

/* 4-Pillar Grid */
.promise-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.promise-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    padding: 1.6rem 1.35rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.promise-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 160, 23, 0.35);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.promise-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
}

.promise-icon-hub {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.promise-card:hover .promise-icon-hub {
    transform: scale(1.1) rotate(4deg);
}

.promise-badge-pill {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.promise-card-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.45rem;
    line-height: 1.3;
}

.promise-card-body-text {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 1.1rem;
    flex-grow: 1;
}

.promise-card-footer-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4ade80;
    display: inline-flex;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

/* Bottom Trust Strip */
.promise-trust-strip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1rem 1.5rem;
}

.trust-metric-item {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.8);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.trust-metric-item strong {
    color: #ffffff;
    font-weight: 700;
}

.trust-metric-item span {
    color: rgba(255, 255, 255, 0.55);
}

/* =========================================
   10. FAQ SECTION (Interactive Accordion)
   ========================================= */
.faq-v2-section {
    background: var(--background);
    overflow: hidden;
    position: relative;
    padding: 90px 0;
}

.faq-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(212, 160, 23, 0.1);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(212, 160, 23, 0.25);
}

.faq-gold-text {
    background: linear-gradient(90deg, #D4A017, #E9C46A, #B8860B);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Accordion Container */
.faq-accordion-v2 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item-v2 {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 160, 23, 0.18);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.faq-item-v2:hover {
    border-color: rgba(212, 160, 23, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.faq-item-v2.active {
    border-color: rgba(212, 160, 23, 0.6);
    background: #ffffff;
    box-shadow: 0 16px 40px rgba(212, 160, 23, 0.1);
}

/* Trigger Button */
.faq-trigger-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.35rem 1.6rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    gap: 1rem;
    transition: var(--transition);
}

.faq-title-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-grow: 1;
}

.faq-step-badge {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(212, 160, 23, 0.12);
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item-v2.active .faq-step-badge {
    background: var(--primary);
    color: #ffffff;
}

.faq-question-text {
    font-size: 1.03rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-item-v2.active .faq-question-text {
    color: #1a1a1a;
    font-weight: 700;
}

.faq-icon-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item-v2.active .faq-icon-circle {
    transform: rotate(45deg);
    background: var(--primary);
    color: #ffffff;
}

/* Collapsible Body */
.faq-collapse-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-content-inner {
    padding: 0 1.6rem 1.4rem 4.3rem;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.75;
}

.faq-pack-list {
    padding-left: 1.2rem;
    margin-bottom: 0.75rem;
}

.faq-pack-list li {
    margin-bottom: 0.35rem;
}

.faq-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 0.85rem;
}

.faq-micro-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.74rem;
    font-weight: 600;
    background: rgba(44, 95, 45, 0.06);
    border: 1px solid rgba(44, 95, 45, 0.15);
    color: var(--secondary);
    padding: 3px 10px;
    border-radius: 50px;
}

/* Help Card */
.faq-help-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(253, 251, 247, 0.95));
    border: 1px solid rgba(212, 160, 23, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.faq-help-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-faq-whatsapp {
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1.4rem;
    background: #ffffff;
    border: 1px solid rgba(37, 211, 102, 0.5);
    color: #1a1a1a !important;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.1);
}

.btn-faq-whatsapp:hover {
    background: #25D366;
    color: #ffffff !important;
    border-color: #25D366;
    transform: translateY(-2px);
}

.btn-faq-whatsapp:hover i {
    color: #ffffff !important;
}

.btn-faq-enquire {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(212, 160, 23, 0.25);
}

.btn-faq-enquire:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(212, 160, 23, 0.4);
    color: #ffffff;
}

/* =========================================
   Responsive Breakpoints for Promise & FAQ
   ========================================= */
/* Tablet (768px - 991.98px) */
@media (max-width: 991.98px) and (min-width: 576px) {

    .promise-v2-section,
    .faq-v2-section {
        padding: 65px 0;
    }

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

/* Mobile Devices (< 576px) */
@media (max-width: 575.98px) {

    .promise-v2-section,
    .faq-v2-section {
        padding: 50px 0;
    }

    .promise-cards-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .promise-trust-strip {
        flex-direction: column;
        gap: 0.75rem;
    }

    .faq-trigger-btn {
        padding: 1.1rem 1.2rem;
    }

    .faq-content-inner {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }

    .faq-question-text {
        font-size: 0.95rem;
    }

    .btn-faq-whatsapp,
    .btn-faq-enquire {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   10. HIGH-IMPACT PARTNERSHIP CTA
   ========================================= */
.partnership-cta-section {
    background: linear-gradient(135deg, #09170b 0%, #142a18 50%, #0a1b0c 100%);
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.cta-master-card {
    background: linear-gradient(135deg, #09170b 0%, #142a18 50%, #0a1b0c 100%);
    /* border: 1px solid rgba(212, 160, 23, 0.3);
    border-radius: 28px;
    padding: 3.8rem 3.2rem; */
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22); */
}

/* Ambient Glows */
.cta-glow-spot {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.cta-glow-spot.glow-top-right {
    width: 380px;
    height: 380px;
    top: -80px;
    right: -80px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.15) 0%, transparent 70%);
}

.cta-glow-spot.glow-bottom-left {
    width: 420px;
    height: 420px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(44, 95, 45, 0.25) 0%, transparent 70%);
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(212, 160, 23, 0.12);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(212, 160, 23, 0.25);
}

.cta-pulsing-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: pulseDot 2s infinite;
}

.cta-main-heading {
    font-size: clamp(1.85rem, 3.4vw, 2.6rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
}

.cta-gold-shimmer {
    background: linear-gradient(90deg, #D4A017, #F3C649, #D4A017);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    animation: goldShimmer 3.5s linear infinite;
}

.cta-lead-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 600px;
}

/* Perk Pills */
.cta-perk-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 6px 14px;
    border-radius: 50px;
}

/* Action Buttons */
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(212, 160, 23, 0.45);
    color: #ffffff;
}

.btn-cta-whatsapp {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 1.8rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.45);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.btn-cta-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.btn-cta-whatsapp:hover i {
    color: #ffffff !important;
}

/* Right Side Quick Enquiry Form Card */
.cta-enquiry-card {
    background: rgba(16, 34, 19, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 160, 23, 0.35);
    border-radius: 24px;
    padding: 1.75rem 1.6rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-form-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-form-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.35);
    color: #F3C649;
}

.form-label-custom {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px;
    display: block;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 14px;
    color: rgba(212, 160, 23, 0.85);
    font-size: 0.88rem;
    pointer-events: none;
    z-index: 2;
}

.textarea-icon {
    top: 12px;
    align-self: flex-start;
}

.cta-input {
    width: 100%;
    padding: 0.62rem 0.9rem 0.62rem 2.4rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    color: #ffffff;
    font-size: 0.86rem;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.cta-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
    color: #ffffff;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cta-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23D4A017' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-5-5h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
}

.cta-select option {
    background: #0f2213;
    color: #ffffff;
}

.cta-textarea {
    padding-left: 2.4rem;
    resize: none;
}

.btn-cta-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    border-radius: 12px;
    border: none;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.35);
}

.btn-cta-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 160, 23, 0.5);
    background: linear-gradient(135deg, #e5b226, var(--primary));
    color: #ffffff;
}

.btn-cta-submit:active {
    transform: translateY(0);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

/* =========================================
   Responsive Breakpoints for Partnership CTA
   ========================================= */
/* Tablet (768px - 991.98px) */
@media (max-width: 991.98px) and (min-width: 576px) {
    .partnership-cta-section {
        padding: 40px 0;
    }

    .cta-master-card {
        /* padding: 2.6rem 2rem; */
    }

    .cta-lead-text {
        max-width: 100%;
    }
}

/* Mobile Devices (< 576px) */
@media (max-width: 575.98px) {
    .partnership-cta-section {
        padding: 45px 0;
    }

    .cta-master-card {
        /* padding: 2rem 1.25rem; */
        border-radius: 20px;
    }

    .cta-eyebrow {
        font-size: 0.72rem;
        padding: 5px 12px;
    }

    .cta-lead-text {
        font-size: 0.92rem;
    }

    .btn-cta-primary,
    .btn-cta-whatsapp {
        width: 100%;
        justify-content: center;
    }

    .cta-enquiry-card {
        padding: 1.35rem 1.15rem;
        border-radius: 18px;
    }
}

/* =========================================
   11. FLOATING WHATSAPP
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-float .tooltip {
    position: absolute;
    right: 70px;
    background: var(--text);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    white-space: nowrap;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    right: 75px;
}

/* =========================================
   11. FOOTER
   ========================================= */
footer {
    background: #111;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 0.8rem;
}

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

footer .social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

footer .social-icons a:hover {
    background: var(--primary);
    color: white;
    padding-left: 0;
}

/* =========================================
   12. ABOUT US SECTION (MODERN & RESPONSIVE)
   ========================================= */
.about-section {
    background: linear-gradient(180deg, var(--background) 0%, rgba(253, 251, 247, 0.8) 100%);
    overflow: hidden;
}

.about-bg-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
    pointer-events: none;
    z-index: 1;
}

.about-bg-glow.glow-gold {
    background: var(--primary);
    top: -100px;
    right: -100px;
}

.about-bg-glow.glow-green {
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
}

.max-w-700 {
    max-width: 720px;
}

/* Showcase Card (Left Column) */
.about-showcase-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(212, 160, 23, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.about-showcase-card:hover {
    border-color: rgba(212, 160, 23, 0.4);
    box-shadow: 0 25px 60px rgba(212, 160, 23, 0.12);
}

.about-img-frame {
    aspect-ratio: 4/3;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.about-img {
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.about-showcase-card:hover .about-img {
    transform: scale(1.04);
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.about-floating-chip {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(18, 38, 20, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.about-quote-box {
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, rgba(44, 95, 45, 0.06) 100%);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-left: 4px solid var(--primary);
}

.quote-icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Principle Cards (Right Column) */
.principle-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(220, 225, 230, 0.8);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: var(--transition);
}

.principle-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 160, 23, 0.4);
    box-shadow: 0 20px 45px rgba(212, 160, 23, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

.principle-card:hover::before {
    opacity: 1;
}

.principle-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.principle-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: var(--transition);
}

.principle-card:hover .principle-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.bg-gold-subtle {
    background: rgba(212, 160, 23, 0.14);
}

.bg-green-subtle {
    background: rgba(44, 95, 45, 0.14);
}

.bg-earth-subtle {
    background: rgba(30, 144, 255, 0.14);
}

.bg-purple-subtle {
    background: rgba(153, 102, 255, 0.14);
}

.principle-number {
    font-family: 'Inter', sans-serif, sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: rgba(0, 0, 0, 0.12);
    letter-spacing: -0.05em;
    transition: var(--transition);
}

.principle-card:hover .principle-number {
    color: var(--primary);
    opacity: 0.6;
}

.principle-title {
    color: #1A1A1A;
    line-height: 1.3;
}

.principle-desc {
    color: #4A5568 !important;
    line-height: 1.65;
}

.border-top-dashed {
    border-top: 1px dashed rgba(200, 200, 200, 0.6);
}

.badge-chip {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--secondary);
    background: rgba(44, 95, 45, 0.08);
    padding: 4px 10px;
    border-radius: 50px;
}

@media (max-width: 991.98px) {
    .about-img-frame {
        aspect-ratio: 16/9;
    }
}

/* =========================================
   ABOUT V2 — Redesigned Section
   ========================================= */

/* Section wrapper */
.about-v2-section {
    background: var(--background);
    overflow: hidden;
    padding-bottom: 0;
}

/* ── PART 1: Dark Hero Strip ── */
.about-v2-hero-strip {
    background: linear-gradient(135deg, #0d1a0f 0%, #142016 50%, #0a1a0c 100%);
    padding: 90px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-v2-strip-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 80% 50%, rgba(212, 160, 23, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 40% 80% at 10% 80%, rgba(44, 95, 45, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.about-v2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.about-v2-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 160, 23, 0.6);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(212, 160, 23, 0);
    }
}

.about-v2-strip-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.about-v2-gold {
    background: linear-gradient(90deg, #D4A017, #E9C46A, #D4A017);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 3s linear infinite;
}

@keyframes goldShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.about-v2-strip-sub {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 440px;
}

.about-v2-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.25);
}

.about-v2-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(212, 160, 23, 0.4);
    color: #fff;
}

/* Stat Grid */
.about-v2-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-v2-stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.6rem 1.4rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-v2-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.04) 0%, transparent 60%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s;
}

.about-v2-stat-card:hover {
    border-color: rgba(212, 160, 23, 0.3);
    transform: translateY(-4px);
}

.about-v2-stat-card:hover::before {
    opacity: 1;
}

.about-v2-stat-card--accent {
    background: rgba(212, 160, 23, 0.06);
    border-color: rgba(212, 160, 23, 0.15);
}

.about-v2-stat-icon {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.6rem;
}

.about-v2-stat-num {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.about-v2-stat-unit {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.about-v2-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

/* ── PART 2: Story Layout ── */
.about-v2-story-wrap {
    padding: 0px 0 60px 0;
    background: var(--background);
}

.about-v2-img-frame {
    position: relative;
    display: inline-block;
    width: 100%;
}

.about-v2-img-accent-ring {
    position: absolute;
    inset: -14px;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.35), rgba(44, 95, 45, 0.2));
    z-index: 0;
    filter: blur(2px);
}

.about-v2-main-img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    aspect-ratio: 4/4;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.about-v2-trust-badge {
    position: absolute;
    bottom: 24px;
    left: -20px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
    animation: floatBadge 3.5s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.about-v2-trust-icon {
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(212, 160, 23, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-v2-trust-badge strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.about-v2-trust-badge span {
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 500;
}

.about-v2-corner-label {
    position: absolute;
    top: 20px;
    right: -14px;
    z-index: 3;
    background: linear-gradient(135deg, #0d1a0f, #1a2f1c);
    color: #D4A017;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
}

/* Text side */
.about-v2-section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(212, 160, 23, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(212, 160, 23, 0.25);
    margin-bottom: 1rem;
}

.about-v2-story-heading {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.about-v2-story-em {
    font-style: italic;
    color: var(--primary);
    font-weight: 700;
}

.about-v2-story-para {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Value list */
.about-v2-value-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-v2-value-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-v2-check {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
}

.about-v2-value-list li strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.about-v2-value-list li p {
    font-size: 0.88rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* ── PART 3: Principles Cards ── */
.about-v2-principles-wrap {
    padding: 0 0 90px;
    background: var(--background);
}

.about-v2-principles-heading {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text);
    margin-top: 0.75rem;
}

.about-v2-principle-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-v2-principle-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-v2-principle-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
    border-color: rgba(212, 160, 23, 0.2);
}

.about-v2-principle-card:hover::after {
    transform: scaleX(1);
}

.about-v2-pc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.4rem;
}

.about-v2-pc-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.about-v2-pc-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: color-mix(in srgb, var(--pc-color) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--pc-color);
}

.about-v2-pc-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.about-v2-pc-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-v2-pc-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--tag-color);
    background: color-mix(in srgb, var(--tag-color) 10%, transparent);
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.02em;
}

.about-v2-pc-tag::before {
    content: '✓';
    font-size: 0.75rem;
}

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .cta-pulsing-dot {
        display: none;
    }

    .prod-tab-btn i {
        display: none;
    }

    .prod-tab-btn {
        padding: 4px 7px;
        font-size: 0.75rem;
    }

    .about-v2-hero-strip {
        padding: 60px 0 50px;
    }

    /* .about-v2-story-wrap {
        padding: 60px 0;
    } */

    .stage-info-footer {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        align-items: center;
    }

    .stage-info-footer .text-start {
        text-align: center !important;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-v2-principles-wrap {
        padding: 0 0 60px;
    }

    .about-v2-trust-badge {
        left: 10px;
        bottom: 16px;
    }

    .about-v2-corner-label {
        right: 10px;
    }
}

@media (max-width: 575.98px) {
    .about-v2-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .about-v2-stat-num {
        font-size: 2rem;
    }
}

/* =========================================
   12. UNIVERSAL ENQUIRY MODAL
   ========================================= */
.modal-backdrop.show {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background-color: rgba(5, 15, 7, 0.75);
}

.enquiry-modal-content {
    background: linear-gradient(135deg, #09170b 0%, #122416 60%, #0a1b0d 100%);
    border: 1px solid rgba(212, 160, 23, 0.35);
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
    overflow: hidden;
    position: relative;
}

.enquiry-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.enquiry-modal-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.enquiry-modal-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: #F3C649;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(212, 160, 23, 0.12);
    padding: 3px 10px;
    border-radius: 50px;
    border: 1px solid rgba(212, 160, 23, 0.25);
    display: inline-block;
}

.enquiry-modal-close {
    opacity: 0.75;
    transition: var(--transition);
    padding: 0.5rem;
}

.enquiry-modal-close:hover {
    opacity: 1;
    transform: scale(1.15) rotate(90deg);
}

/* Modal Responsive Adjustments */
@media (max-width: 575.98px) {
    .enquiry-modal-content {
        border-radius: 20px;
    }

    .enquiry-modal-body {
        padding: 1.25rem 1rem !important;
    }

    .enquiry-modal-header {
        padding: 1.25rem 1rem 0.5rem !important;
    }

    .modal-title {
        font-size: 1.15rem;
    }
}

/* =========================================
   PAGE HERO & BREADCRUMBS (Shared across subpages)
   ========================================= */
.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1574323347407-f5e1ad6d020b?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 24, 12, 0.95) 0%, rgba(20, 34, 18, 0.90) 50%, rgba(38, 24, 8, 0.92) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0;
}

.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.35);
    color: #F3C649;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 1.2rem;
}

.page-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    color: #fff;
    line-height: 1.18;
    margin-bottom: 1rem;
}

.page-hero-title .gold {
    color: #F3C649;
}

.page-hero-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 580px;
    line-height: 1.75;
}

.breadcrumb-nav {
    margin-top: 2rem;
}

.breadcrumb-nav a,
.breadcrumb-nav span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.breadcrumb-nav a:hover {
    color: #F3C649;
}

.breadcrumb-nav .sep {
    margin: 0 8px;
}

.breadcrumb-nav .current {
    color: #F3C649;
}

/* =========================================
   STAT STRIP (About & Subpages)
   ========================================= */
.stat-strip {
    background: linear-gradient(135deg, #0C1A0E 0%, #172B19 100%);
    padding: 30px 0;
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #F3C649;
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 6px;
}

/* =========================================
   ABOUT US PAGE STYLES
   ========================================= */
.about-story-section {
    padding: 90px 0;
    background: var(--background);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.section-eyebrow.justify-center {
    justify-content: center;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text);
    line-height: 1.25;
}

.story-heading {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 1.4rem;
}

.story-heading em {
    color: var(--primary);
    font-style: normal;
}

.story-para {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.story-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.story-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.6s ease;
}

.story-img-wrap:hover img {
    transform: scale(1.03);
}

.story-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(12, 26, 14, 0.92);
    border: 1px solid rgba(212, 160, 23, 0.4);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.story-badge strong {
    color: #fff;
    font-size: 0.9rem;
    display: block;
}

.story-badge span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.story-corner-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212, 160, 23, 0.9);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #F5F3EE;
}

.value-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(212, 160, 23, 0.12);
    transition: all 0.35s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(212, 160, 23, 0.12);
    border-color: rgba(212, 160, 23, 0.35);
}

.value-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.15), rgba(212, 160, 23, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
}

.value-card h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* Timeline Section */
.timeline-section {
    padding: 90px 0;
    background: var(--background);
}

.timeline-side-img {
    border-radius: 18px;
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-top: 1.8rem;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), rgba(212, 160, 23, 0.1));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 24px;
}

.timeline-dot {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--background);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
}

.timeline-year {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 4px;
}

.timeline-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.timeline-text {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

/* Certifications Section */
.cert-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #0C1A0E 0%, #172B19 100%);
}

.cert-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.cert-card:hover {
    background: rgba(212, 160, 23, 0.08);
    border-color: rgba(212, 160, 23, 0.5);
    transform: translateY(-4px);
}

.cert-icon {
    font-size: 2.2rem;
    color: #F3C649;
    margin-bottom: 1rem;
}

.cert-card h6 {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.cert-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    margin: 0;
}

/* Subpage Common CTA */
.about-cta,
.products-cta,
.faq-cta {
    padding: 30px 0;
    background: var(--background);
}

.products-cta,
.faq-cta {
    background: #F5F3EE;
}

.cta-inner,
.faq-cta-inner {
    background: linear-gradient(135deg, #0C1A0E 0%, #1D3620 60%, #2C5F2D 100%);
    border-radius: 28px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner::before,
.faq-cta-inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.08);
    pointer-events: none;
}

.cta-inner h2,
.faq-cta-inner h2 {
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 1rem;
}

.cta-inner p,
.faq-cta-inner p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.btn-cta-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #D4A017, #B8860B);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.35);
}

.btn-cta-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(212, 160, 23, 0.5);
    color: #fff;
}

.btn-cta-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

/* =========================================
   PRODUCTS PAGE STYLES
   ========================================= */
.products-section {
    padding: 30px 0;
    background: var(--background);
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1.5px solid rgba(212, 160, 23, 0.25);
    color: var(--muted);
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.3);
}

.product-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(212, 160, 23, 0.12);
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(212, 160, 23, 0.15);
    border-color: rgba(212, 160, 23, 0.4);
}

.product-card-img {
    position: relative;
    background: linear-gradient(135deg, #F5F3EE, #EDE8DF);
    padding: 30px 20px;
    text-align: center;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-img.bg-light-cream {
    background: linear-gradient(135deg, #FDFBF7, #EDE8DF);
}

.product-card-img.bg-light-gold {
    background: linear-gradient(135deg, #FFF8E7, #EDE8DF);
}

.product-icon-placeholder {
    font-size: 6rem;
    color: rgba(212, 160, 23, 0.4);
    line-height: 1;
}

.product-card-img img {
    max-height: 200px;
    width: auto;
    transition: transform 0.5s ease;
    object-fit: contain;
}

.product-card:hover .product-card-img img {
    transform: scale(1.08) translateY(-4px);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, #D4A017, #B8860B);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-badge.green {
    background: linear-gradient(135deg, #2C5F2D, #1e4021);
}

.product-fssai {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 16px;
}

.product-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 6px;
}

.product-card-body h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.product-card-body p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1rem;
    flex: 1;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.2rem;
}

.spec-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    background: #F5F3EE;
    border: 1px solid rgba(212, 160, 23, 0.15);
    padding: 4px 12px;
    border-radius: 20px;
}

.product-packs {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.product-packs strong {
    color: var(--text);
}

.product-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.btn-enquire {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 18px;
    background: linear-gradient(135deg, #D4A017, #B8860B);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-enquire:hover {
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.4);
    transform: translateY(-1px);
    color: #fff;
}

.btn-whatsapp-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.1);
    border: 1.5px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.btn-whatsapp-sm:hover {
    background: #25D366;
    color: #fff;
}

/* Why Sunahri Strip */
.why-strip {
    padding: 30px 0;
    background: linear-gradient(135deg, #0C1A0E 0%, #172B19 100%);
}

.why-item {
    text-align: center;
    padding: 20px 10px;
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #F3C649;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    background: rgba(212, 160, 23, 0.2);
    transform: scale(1.1);
}

.why-item h6 {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.why-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
    margin: 0;
    line-height: 1.65;
}

/* =========================================
   FAQ PAGE STYLES
   ========================================= */
.faq-section {
    padding: 90px 0;
    background: var(--background);
}

.faq-search-wrap {
    position: relative;
    max-width: 540px;
    margin: 0 auto 3rem;
}

.faq-search-input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 1.5px solid rgba(212, 160, 23, 0.25);
    border-radius: 50px;
    font-size: 0.95rem;
    background: #fff;
    color: var(--text);
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.faq-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.15);
}

.faq-search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1rem;
}

.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 3rem;
}

.faq-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1.5px solid rgba(212, 160, 23, 0.25);
    color: var(--muted);
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-tab:hover,
.faq-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.faq-accordion {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(212, 160, 23, 0.12);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open {
    border-color: rgba(212, 160, 23, 0.4);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
}

.faq-question-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.45;
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.08);
    border: 1px solid rgba(212, 160, 23, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.35s ease;
}

.faq-item.open .faq-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.8;
    margin: 0;
}

.faq-answer a {
    color: var(--primary);
    font-weight: 600;
}

.faq-cat-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary);
    background: rgba(212, 160, 23, 0.08);
    border: 1px solid rgba(212, 160, 23, 0.2);
    padding: 2px 10px;
    border-radius: 12px;
    margin-bottom: 6px;
    display: inline-block;
}

.faq-stats {
    padding: 60px 0;
    background: linear-gradient(135deg, #0C1A0E 0%, #172B19 100%);
}

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

.faq-stat-num {
    font-family: 'Inter', sans-serif;
    font-size: 2.4rem;
    color: #F3C649;
    font-weight: 700;
}

.faq-stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    display: none;
}

.no-results i {
    font-size: 2.5rem;
    color: var(--muted);
    margin-bottom: 1rem;
}

.no-results p {
    color: var(--muted);
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */
.contact-section {
    padding: 40px 0;
    background: var(--background);
}

.contact-info-card {
    background: linear-gradient(135deg, #0C1A0E 0%, #1A2F1C 100%);
    border-radius: 24px;
    padding: 40px 36px;
    height: 100%;
    border: 1px solid rgba(212, 160, 23, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.05);
    pointer-events: none;
}

.contact-info-card h3 {
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.contact-info-card .subtitle {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #F3C649;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    background: rgba(212, 160, 23, 0.22);
    transform: scale(1.05);
}

.contact-info-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 2px;
}

.contact-info-value {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.55;
}

.contact-info-value a {
    color: #F3C649;
    text-decoration: none;
}

.contact-info-value a:hover {
    text-decoration: underline;
}

.contact-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin: 28px 0;
}

.contact-quick-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-quick-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    text-decoration: none;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-quick-link:hover {
    background: rgba(212, 160, 23, 0.1);
    border-color: rgba(212, 160, 23, 0.3);
    color: #F3C649;
}

.contact-quick-link i:first-child {
    width: 20px;
    text-align: center;
}

.contact-quick-link .arrow {
    margin-left: auto;
    opacity: 0.4;
    font-size: 0.75rem;
}

.social-circle-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-circle-link:hover {
    background: rgba(212, 160, 23, 0.15);
    border-color: rgba(212, 160, 23, 0.35);
    color: #F3C649;
}

.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 36px;
    border: 1px solid rgba(212, 160, 23, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.contact-form-card h3 {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.contact-form-card .subtitle {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.form-label-dark {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    display: block;
}

.form-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid rgba(212, 160, 23, 0.2);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--text);
    background: #FDFBF7;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
    background: #fff;
}

.form-input::placeholder {
    color: var(--muted);
    opacity: 0.7;
}

select.form-input {
    cursor: pointer;
}

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

.input-group-icon {
    position: relative;
}

.input-group-icon .form-input {
    padding-left: 44px;
}

.input-group-icon .inp-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 0.9rem;
    pointer-events: none;
}

.input-group-icon.textarea-group .inp-icon {
    top: 18px;
    transform: none;
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 28px;
    background: linear-gradient(135deg, #D4A017, #B8860B);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.3);
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(212, 160, 23, 0.45);
}

.btn-contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-feedback {
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.88rem;
    margin-top: 12px;
    display: none;
}

.form-feedback.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #16a34a;
}

.form-feedback.error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

.map-section {
    padding: 60px 0;
    background: var(--background);
}

.map-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 160, 23, 0.12);
}

.map-wrap iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
}

.contact-reasons {
    padding: 40px 0;
    background: #F5F3EE;
}

.reason-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 24px;
    border: 1px solid rgba(212, 160, 23, 0.12);
    text-align: center;
    transition: all 0.35s ease;
    height: 100%;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(212, 160, 23, 0.1);
    border-color: rgba(212, 160, 23, 0.3);
}

.reason-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(212, 160, 23, 0.12), rgba(212, 160, 23, 0.04));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0 auto 1.2rem;
}

.reason-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.reason-card p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

/* =========================================
   TERMS OF USE PAGE STYLES
   ========================================= */
.last-updated-bar {
    background: rgba(212, 160, 23, 0.07);
    border-bottom: 1px solid rgba(212, 160, 23, 0.12);
    padding: 14px 0;
}

.last-updated-bar .badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 160, 23, 0.1);
    border: 1px solid rgba(212, 160, 23, 0.25);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 30px;
}

.terms-section {
    padding: 70px 0 90px;
    background: var(--background);
}

.toc-card {
    background: #fff;
    border: 1px solid rgba(212, 160, 23, 0.15);
    border-radius: 20px;
    padding: 28px 24px;
    position: sticky;
    top: 88px;
}

.toc-title {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 6px;
}

.toc-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: var(--muted);
    text-decoration: none;
    padding: 7px 10px;
    border-radius: 8px;
    transition: all 0.25s ease;
    font-weight: 500;
}

.toc-list li a:hover,
.toc-list li a.active {
    background: rgba(212, 160, 23, 0.08);
    color: var(--primary);
}

.toc-list li a .toc-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.1);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

.terms-content {
    max-width: 780px;
}

.terms-section-block {
    margin-bottom: 52px;
    scroll-margin-top: 100px;
}

.terms-section-num {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.terms-section-num::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.terms-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.45rem;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.terms-body {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.9;
}

.terms-body p {
    margin-bottom: 1rem;
}

.terms-body p:last-child {
    margin-bottom: 0;
}

.terms-body a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.terms-body a:hover {
    text-decoration: underline;
}

.terms-body strong {
    color: var(--text);
    font-weight: 600;
}

.terms-body ul {
    padding-left: 0;
    list-style: none;
    margin: 1rem 0;
}

.terms-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.91rem;
    color: var(--muted);
}

.terms-body ul li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
    margin-top: 7px;
}

.terms-divider {
    border: none;
    border-top: 1px solid rgba(212, 160, 23, 0.12);
    margin: 52px 0;
}

.terms-highlight {
    background: rgba(212, 160, 23, 0.06);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 18px 22px;
    margin: 1.2rem 0;
}

.terms-highlight p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text);
}

.terms-warning {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.18);
    border-left: 4px solid #ef4444;
    border-radius: 12px;
    padding: 18px 22px;
    margin: 1.2rem 0;
}

.terms-warning p {
    margin: 0;
    font-size: 0.9rem;
    color: #7f1d1d;
}

.terms-warning strong {
    color: #991b1b;
}

.terms-cta {
    background: linear-gradient(135deg, #0C1A0E 0%, #1D3620 60%, #2C5F2D 100%);
    border-radius: 20px;
    padding: 40px 36px;
    text-align: center;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.terms-cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.07);
    pointer-events: none;
}

.terms-cta h4 {
    font-family: 'Inter', sans-serif;
    color: #fff;
    margin-bottom: 0.6rem;
    font-size: 1.3rem;
}

.terms-cta p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    margin-bottom: 1.4rem;
    line-height: 1.7;
}

/* =========================================
   ENQUIRY PAGE STYLES
   ========================================= */
.enquiry-page-section {
    padding: 50px 0 80px;
    background: var(--background);
}

.enquiry-main-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid rgba(212, 160, 23, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.enquiry-sidebar {
    background: linear-gradient(135deg, #0C1A0E 0%, #172B19 60%, #1F3A22 100%);
    padding: 44px 36px;
    height: 100%;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.enquiry-sidebar::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.06);
    pointer-events: none;
}

.enquiry-sidebar-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 160, 23, 0.15);
    border: 1px solid rgba(212, 160, 23, 0.3);
    color: #F3C649;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 1.2rem;
}

.enquiry-sidebar-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

.enquiry-sidebar-sub {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.enquiry-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.enquiry-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.enquiry-benefit-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid rgba(212, 160, 23, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F3C649;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.enquiry-benefit-item strong {
    display: block;
    color: #fff;
    font-size: 0.88rem;
    margin-bottom: 2px;
}

.enquiry-benefit-item span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    line-height: 1.5;
    display: block;
}

.enquiry-direct-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 160, 23, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-top: 1.5rem;
}

.enquiry-direct-box-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.enquiry-direct-phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: #F3C649;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
}

.enquiry-direct-phone:hover {
    color: #fff;
}

.enquiry-direct-hours {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
}

.enquiry-form-container {
    padding: 44px 40px;
}

.enquiry-type-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 1.8rem;
}

.enquiry-type-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    border: 1.5px solid rgba(212, 160, 23, 0.25);
    color: var(--muted);
    background: #FDFBF7;
    cursor: pointer;
    transition: all 0.25s ease;
}

.enquiry-type-tab:hover,
.enquiry-type-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(212, 160, 23, 0.25);
}

.form-group-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group-title::before {
    content: '';
    width: 16px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.enquiry-perks-section {
    padding: 40px 0;
    background: #F5F3EE;
}


@media (max-width: 991.98px) {}


@media (max-width: 767px) {
    .page-hero {
        padding: 16px 15px;
        min-height: 300px;

    }

    .enquiry-modal-tag {
        display: none;
    }

    footer {
        padding: 30px 0 30px;
    }

    .cta-master-card {
        padding: 0rem 1.25rem
    }

    .stat-number,
    .faq-stat-num {
        font-size: 1.5rem;
    }

    .stat-strip {
        padding: 20px 0
    }

    .about-story-section,
    .faq-section,
    .contact-reasons {
        padding: 30px 0;
    }

    .btn-cta-gold,
    .btn-cta-outline-white {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .faq-stats {
        padding: 20px 0;
    }

    .reason-card {
        padding: 15px 15px;
    }
}