@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ========== Premium Design Tokens ========== */
:root {
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    --color-obsidian: #0E0E0D;
    --color-charcoal: #1E1E1C;
    --color-alabaster: #FCFAF7;
    --color-saffron: #83be2f;
    --color-saffron-light: rgba(149, 198, 80, 0.08);
    --color-white: #ffffff;
    --color-muted: #666664;
    --color-border: #E8E4DF;
    --color-dark-border: rgba(255, 255, 255, 0.1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    overflow-x: hidden;
    color: var(--color-charcoal);
    -webkit-font-smoothing: antialiased;
}

/* ========== Loading Screen ========== */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background:
        repeating-linear-gradient(45deg,
            transparent,
            transparent 39px,
            rgba(0, 0, 0, 0.02) 39px,
            rgba(0, 0, 0, 0.02) 40px),
        repeating-linear-gradient(-45deg,
            transparent,
            transparent 39px,
            rgba(0, 0, 0, 0.02) 39px,
            rgba(0, 0, 0, 0.02) 40px),
        radial-gradient(ellipse at center,
            rgba(245, 235, 220, 0.85) 0%,
            rgba(250, 245, 238, 0.5) 45%,
            #ffffff 80%),
        #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.loader-logo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-logo img {
    width: 80px;
}

.loader-brand {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--color-obsidian);
    margin-top: 10px;
    line-height: 1;
}

.loader-tagline {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--color-saffron);
    text-transform: uppercase;
}

.loader-bar-track {
    width: 180px;
    height: 2px;
    background: rgba(149, 198, 80, 0.15);
    border-radius: 2px;
    margin-top: 25px;
    overflow: hidden;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--color-saffron);
    border-radius: 2px;
}

html {
    scroll-behavior: smooth;
}

.app-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    background: var(--color-white);
    overflow-x: hidden;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Hero Background Slider */
.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Overlay gradient for readability of white text over different banner backgrounds */
/* .hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(14, 14, 13, 0.7) 0%, rgba(14, 14, 13, 0.35) 45%, rgba(14, 14, 13, 0) 80%);
    z-index: 1;
    pointer-events: none;
} */

/* Premium Slide Text Styles */
.slide-content-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 4%;
    padding-right: 52%;
    /* Keeps the content on the left side to avoid overlapping background visuals */
    z-index: 5;
    box-sizing: border-box;
}

.slide-content-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.slide-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    font-weight: 600;
    letter-spacing: 0.25em;
    color: rgba(252, 250, 247, 0.85);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.slide-title {
    font-family: var(--font-body);
    font-size: 2.5rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.highlight-green {
    color: var(--color-saffron);
}

.leaf-container {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    width: clamp(26px, 3vw, 32px);
    height: clamp(26px, 3vw, 32px);
    margin-left: 6px;
    position: relative;
    top: -2px;
}

.leaf-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(149, 198, 80, 0.3));
}

.slide-line {
    width: 180px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 25px;
    transform-origin: left;
}

.slide-desc {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.05vw, 1.05rem);
    line-height: 1.6;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    letter-spacing: 0.02em;
}

/* .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.65) 100%);
    pointer-events: none;
    z-index: 1;
} */

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 30px 40px;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background: transparent;
    /* Transparent at top of page */
    border-radius: 50%;
    justify-self: start;
    align-self: center;
    box-shadow: none;
    /* No shadow at top of page */
    border: 1px solid transparent;
    /* No border at top of page */
    transition: width 0.3s ease, height 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo img {
    width: 106px;
    transition: width 0.3s ease;
}

/* Sticky Scrolled Header Styles */
.header.scrolled {
    background-color: rgb(0 0 0 / 66%);
    backdrop-filter: blur(10px);
    padding: 15px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.header.scrolled .logo {
    width: 64px;
    height: 64px;
    background: var(--color-white);
    /* White background on scroll */
    border: 1px solid rgba(149, 198, 80, 0.2);
    /* Border on scroll */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    /* Shadow on scroll */
}

.header.scrolled .logo img {
    width: 48px;
}

.nav-links {
    display: flex;
    gap: 5px;
    background: rgba(26, 26, 26, 0.3);
    padding: 6px 10px;
    border-radius: 40px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    justify-self: center;
    align-self: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a:hover,
.nav-links a.active {
    background: var(--color-saffron);
    color: var(--color-obsidian);
    font-weight: 600;
}

.nav-links a .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--color-obsidian);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-links a.active .dot {
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-self: end;
    align-self: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 5px;
}

.inquiry-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--color-saffron);
    color: var(--color-obsidian);
    padding: 6px 6px 6px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.inquiry-btn:hover {
    background: var(--color-white);
    box-shadow: 0 10px 25px rgba(149, 198, 80, 0.35);
    transform: translateY(-2px);
}

.inquiry-btn .arrow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-obsidian);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.inquiry-btn:hover .arrow-icon {
    transform: translateX(4px);
    background: var(--color-saffron);
    color: var(--color-obsidian);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 20px;
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--color-saffron);
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
}

.main-title {
    font-family: var(--font-heading);
    font-size: clamp(3.2rem, 6.5vw, 6.8rem);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--color-white);
}

/* Bottom Elements Container */
.bottom-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 50px 20px 50px;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.slider-arrows {
    display: flex;
    gap: 12px;
}

.slider-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider-arrow:hover {
    background: var(--color-saffron);
    color: var(--color-obsidian);
    border-color: var(--color-saffron);
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(149, 198, 80, 0.3);
}

.slider-indicators {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slider-indicator {
    width: 32px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: width 0.4s ease;
}

.slider-indicator.active {
    width: 48px;
    background: rgba(255, 255, 255, 0.2);
}

.slider-indicator.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--color-saffron);
    border-radius: 3px;
    animation: indicatorFill 5s linear forwards;
}

@keyframes indicatorFill {
    0% {
        transform: scaleX(0);
        transform-origin: left;
    }

    100% {
        transform: scaleX(1);
        transform-origin: left;
    }
}

.slider-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    letter-spacing: 0.05em;
}

.counter-current {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-saffron);
}

/* Bottom Right */
.bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 420px;
    text-align: right;
    margin-bottom: 30px;
}

.mission-text {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.mandala-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.9;
}

.mandala-icon svg {
    animation: slowSpin 30s linear infinite;
}

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

/* Bottom Cutout Overlay */
.bottom-cutout {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 20;
    pointer-events: none;
}

.cutout-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.scroll-down-btn {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 54px;
    height: 54px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-obsidian);
    font-size: 1.2rem;
    pointer-events: auto;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.scroll-down-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(149, 198, 80, 0.2);
    border-color: var(--color-saffron);
    color: var(--color-saffron);
}

/* ==========================================================================
   GLOBAL SECTION STYLES
   ========================================================================== */
section {
    position: relative;
    padding: 80px 0;
    background: var(--color-alabaster);
    color: var(--color-charcoal);
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-saffron);
    margin-bottom: 18px;
}

.section-badge.light {
    color: var(--color-saffron);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    line-height: 1.15;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 28px;
}

.section-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-muted);
    font-weight: 300;
    max-width: 720px;
    margin-bottom: 56px;
}

.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 72px;
}

.section-header .section-desc {
    margin-bottom: 0;
}

/* ==========================================================================
   ABOUT SECTION (WORLD-CLASS ULTRA-LUXURY BENTO DASHBOARD)
   ========================================================================== */
.about-section {
    padding: 130px 0;
    background: radial-gradient(circle at 50% 0%, #FFFFFF 0%, #FAF9F5 100%);
    position: relative;
    overflow: hidden;
}

/* Ambient Ambient Floating Mesh Glow Orbs */
.about-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    opacity: 0.45;
    z-index: 0;
    animation: floatGlow 14s infinite ease-in-out alternate;
}

.about-glow-orb-1 {
    width: 450px;
    height: 450px;
    top: 5%;
    left: -10%;
    background: radial-gradient(circle, rgba(149, 198, 80, 0.25) 0%, rgba(245, 235, 220, 0) 70%);
}

.about-glow-orb-2 {
    width: 500px;
    height: 500px;
    bottom: 0%;
    right: -10%;
    background: radial-gradient(circle, rgba(212, 163, 89, 0.18) 0%, rgba(245, 235, 220, 0) 70%);
    animation-delay: -7s;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -40px) scale(1.1);
    }

    100% {
        transform: translate(-20px, 30px) scale(0.95);
    }
}

.about-section .section-container {
    position: relative;
    z-index: 1;
}

.about-header-main {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 55px auto;
}

.section-badge-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(149, 198, 80, 0.1);
    border: 1px solid rgba(149, 198, 80, 0.3);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
    box-shadow: 0 4px 15px rgba(149, 198, 80, 0.08);
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-saffron);
    box-shadow: 0 0 12px var(--color-saffron);
    display: inline-block;
    animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.about-header-main .section-badge {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #466914;
    margin: 0;
}

.about-header-main .section-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--color-obsidian);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.about-header-main .section-subtitle {
    font-size: 1.12rem;
    color: var(--color-muted);
    line-height: 1.65;
    font-weight: 300;
}

/* Glassmorphic Horizontal Pill Track with Animated Glider */
.about-tabs-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.about-tabs-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(220, 215, 202, 0.85);
    padding: 7px;
    border-radius: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02), inset 0 1px 1px rgba(255, 255, 255, 0.9);
    margin: 0 auto 55px auto;
    max-width: 100%;
    position: relative;
    overflow-x: auto;
    scrollbar-width: none;
}

.about-tabs-nav::-webkit-scrollbar {
    display: none;
}

/* Sliding Glider Highlight Element */
.nav-pill-glider {
    position: absolute;
    top: 7px;
    bottom: 7px;
    left: 0;
    width: 0;
    background: var(--color-saffron);
    border-radius: 40px;
    box-shadow: 0 6px 20px rgba(149, 198, 80, 0.35);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    pointer-events: none;
}

.about-tab-btn {
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 22px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-muted);
    cursor: pointer;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.about-tab-btn:hover {
    color: var(--color-obsidian);
}

.about-tab-btn.active {
    color: var(--color-obsidian);
    font-weight: 500;
}

.about-tab-btn .tab-icon {
    font-size: 0.95rem;
    transition: transform 0.3s ease;
}

.about-tab-btn:hover .tab-icon {
    transform: scale(1.15);
}

.about-tab-btn .tab-number {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.65;
    margin-right: 2px;
}

.about-tab-btn.active .tab-number {
    opacity: 1;
}

/* Panels Transition Container */
.about-tab-content {
    position: relative;
    width: 100%;
    min-height: 480px;
}

.about-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(15px);
}

.about-tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   BENTO DASHBOARD LAYOUTS & CARDS
   ========================================================================== */

/* Universal Bento Card */
.bento-card {
    background: #FFFFFF;
    border: 1px solid rgba(225, 220, 210, 0.85);
    border-radius: 28px;
    padding: 38px 34px;
    position: relative;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.03), 0 2px 6px rgba(0, 0, 0, 0.01);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(149, 198, 80, 0.4);
    box-shadow: 0 25px 60px rgba(149, 198, 80, 0.1), 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Panel 1: Master Bento Dashboard (3 Columns / Asymmetric Grid) */
.bento-dashboard-master {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr 0.9fr;
    gap: 24px;
    align-items: stretch;
}

.bento-card-narrative {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(149, 198, 80, 0.12);
    color: #466914;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bento-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(149, 198, 80, 0.08);
    border: 1px solid rgba(149, 198, 80, 0.25);
    color: var(--color-obsidian);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #557e1b;
    box-shadow: 0 0 8px #557e1b;
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    line-height: 1.25;
    font-weight: 500;
    color: var(--color-obsidian);
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}

.panel-desc {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--color-muted);
    font-weight: 300;
    margin-bottom: 14px;
}

.panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.panel-tag {
    background: #FAF8F4;
    border: 1px solid rgba(220, 215, 205, 0.7);
    padding: 7px 14px;
    border-radius: 25px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-charcoal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.panel-tag i {
    color: #557e1b;
    font-size: 0.8rem;
}

/* Dark Obsidian Metrics Bento Card */
.bento-card-metrics-dark {
    background: url(../images/about_us_1.jpg);
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-position-y: -100px;
    background-repeat: no-repeat;
    background-color: #000;
    background-size: 100%;
}

.dark-card-glow-bg {
    position: absolute;
    top: -30%;
    right: -30%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(149, 198, 80, 0.22) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.dark-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-saffron);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stats-grid-master {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.stat-item-master {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px 16px;
    transition: all 0.3s ease;
}

.stat-item-master:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(149, 198, 80, 0.3);
    transform: translateY(-3px);
}

.stat-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(149, 198, 80, 0.18);
    color: var(--color-saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 10px;
}

.stat-item-master h4 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-item-master p {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

.stat-item-master.highlight-accent {
    border-color: rgba(149, 198, 80, 0.4);
    background: linear-gradient(135deg, rgba(149, 198, 80, 0.15) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.stat-item-master.highlight-accent h4 {
    color: var(--color-saffron);
}

/* Visual Media Bento Card */
.bento-card-visual {
    padding: 0;
    min-height: 340px;
}

.visual-media-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.visual-media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-card-visual:hover img {
    transform: scale(1.08);
}

.visual-glass-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 16, 8, 0.9) 100%);
    color: #FFFFFF;
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-saffron);
    color: var(--color-obsidian);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.visual-glass-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: #FFFFFF;
}

.visual-glass-overlay p {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Panel 2 & 5: Two Column Bento Dashboard */
.bento-dashboard-two-col {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: stretch;
}

/* Journey Timeline Flow */
.journey-timeline-flow {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.timeline-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #FAF8F4;
    border: 1px solid rgba(220, 215, 205, 0.7);
    padding: 18px 20px;
    border-radius: 18px;
    transition: all 0.3s ease;
}

.timeline-step:hover {
    background: #FFFFFF;
    border-color: rgba(149, 198, 80, 0.35);
    transform: translateX(6px);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-obsidian);
    background: var(--color-saffron);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(149, 198, 80, 0.3);
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-obsidian);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin: 0;
}

/* Dark Quote Bento Card */
.bento-card-quote-dark {
    background: var(--color-obsidian);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 44px 36px;
}

.quote-icon-bg {
    font-size: 2.2rem;
    color: rgba(149, 198, 80, 0.2);
    position: absolute;
    top: 25px;
    right: 30px;
}

.journey-quote-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 20px 0;
}

.quote-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.q-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #FFFFFF;
    display: block;
}

.q-title {
    font-size: 0.82rem;
    color: var(--color-saffron);
    display: block;
}

.q-tags {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.q-tags span {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 12px;
}

/* Panel 3: What We Do (4 Bento Grid Cards) */
.bento-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-bento-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.fb-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(149, 198, 80, 0.12);
    color: #466914;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.feature-bento-card h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-obsidian);
    margin-bottom: 10px;
}

.feature-bento-card p {
    font-size: 0.92rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.fb-pill {
    background: #FAF8F4;
    border: 1px solid rgba(220, 215, 205, 0.7);
    color: var(--color-charcoal);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.fb-pill i {
    color: #466914;
}

/* Panel 4: Manufacturing Pipeline */
.bento-dashboard-pipeline {
    width: 100%;
}

.pipeline-card-master {
    padding: 48px 40px;
}

.pipeline-header {
    text-align: center;
    margin-bottom: 40px;
}

.pipeline-flow-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pipeline-flow-step {
    background: #FAF8F4;
    border: 1px solid rgba(220, 215, 205, 0.8);
    border-radius: 22px;
    padding: 30px 24px;
    flex: 1;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
}

.pipeline-flow-step:hover {
    background: #FFFFFF;
    border-color: rgba(149, 198, 80, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(149, 198, 80, 0.1);
}

.p-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: #466914;
    background: rgba(149, 198, 80, 0.15);
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 14px;
}

.p-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-saffron);
    color: var(--color-obsidian);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0 auto 16px auto;
    box-shadow: 0 6px 20px rgba(149, 198, 80, 0.3);
}

.pipeline-flow-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-obsidian);
    margin-bottom: 8px;
}

.pipeline-flow-step p {
    font-size: 0.86rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin: 0;
}

.pipeline-arrow {
    color: rgba(149, 198, 80, 0.6);
    font-size: 1.4rem;
}

/* Panel 5: Quality & Safety Grid */
.quality-checks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.qc-item {
    background: #FAF8F4;
    border: 1px solid rgba(220, 215, 205, 0.7);
    padding: 18px;
    border-radius: 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.qc-item:hover {
    background: #FFFFFF;
    border-color: rgba(149, 198, 80, 0.35);
    transform: translateY(-3px);
}

.qc-item i {
    font-size: 1.2rem;
    color: #466914;
    margin-top: 2px;
}

.qc-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-obsidian);
    margin-bottom: 4px;
}

.qc-item p {
    font-size: 0.84rem;
    color: var(--color-muted);
    line-height: 1.45;
    margin: 0;
}

.cert-dark-card {
    background: var(--color-obsidian);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.cert-shield-large {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: rgba(149, 198, 80, 0.18);
    color: var(--color-saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.3rem;
    box-shadow: 0 0 30px rgba(149, 198, 80, 0.25);
}

.cert-dark-card h4 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
}

.cert-dark-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
    margin: 0;
}

.cert-tags-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.cert-tags-row span {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-saffron);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 12px;
}

/* Panel 6: Target Industries Bento Matrix */
.bento-dashboard-industries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.industry-bento-item {
    padding: 32px 26px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.industry-bento-item .ind-icon {
    width: 48px;
    height: 48px;
    background: rgba(149, 198, 80, 0.12);
    color: #466914;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.industry-bento-item:hover .ind-icon {
    background: var(--color-saffron);
    color: var(--color-obsidian);
    transform: scale(1.1);
}

.industry-bento-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-obsidian);
    margin-bottom: 8px;
    line-height: 1.35;
}

.industry-bento-item p {
    font-size: 0.86rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin: 0;
}

.industry-bento-item.highlight-ind {
    grid-column: span 2;
    background: linear-gradient(135deg, #FAF8F4 0%, #F5EFE4 100%);
    border-color: rgba(149, 198, 80, 0.35);
}

.industry-card-bento p {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   Responsive Adaptations for About Section
   ========================================================================== */
@media (max-width: 991px) {
    .about-header-main .section-title {
        font-size: 2.2rem;
    }

    .about-tabs-nav {
        justify-content: flex-start;
        border-radius: 24px;
        padding: 6px;
    }

    .panel-grid {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 32px 24px;
    }

    .industries-grid-bento {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 80px 0;
    }

    .about-header-main .section-title {
        font-size: 1.8rem;
    }

    .stats-grid-bento,
    .bento-features-grid,
    .quality-checks-bento,
    .industries-grid-bento {
        grid-template-columns: 1fr;
    }

    .about-tab-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .panel-title {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.products-section {
    position: relative;
    background-color: #FAF7F2;
    overflow: hidden;
    padding: 120px 0;
}

.products-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
}

.products-header {
    margin-bottom: 50px;
    max-width: 800px;
}

.products-grid-container {
    width: 100%;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.product-card {
    width: 100%;
    height: 380px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-saffron);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 3;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(149, 198, 80, 0.08);
    border-color: rgba(149, 198, 80, 0.3);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f5f5f3;
    position: relative;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
    box-sizing: border-box;
    z-index: 2;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
    margin: 0;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-overlay h3 {
    transform: translateY(0);
}


/* ==========================================================================
   PACKAGERS SECTION
   ========================================================================== */
.packagers-section {
    background: var(--color-alabaster);
}

.packagers-section .about-header-main {
    text-align: center;
    margin-bottom: 3rem;
}

.packagers-section .section-badge-wrapper {
    justify-content: center;
}

.package-list {
    display: flex;
    flex-direction: column;
    gap: 36px;
    margin-top: 40px;
}

.package-item {
    display: flex;
    gap: 28px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 24px;
}

.package-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-number {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-saffron);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-saffron-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-body);
}

.package-item h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 8px;
}

.package-item p {
    font-size: 0.96rem;
    line-height: 1.6;
    color: var(--color-muted);
}

/* Packagers section extensions: Vision, Mission & Values */
.packagers-divider {
    width: 100%;
    height: 1px;
    background: var(--color-border);
    margin: 80px 0;
}

.vision-mission-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.vmv-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.vmv-card:hover {
    transform: translateY(-8px);
    border-color: rgba(149, 198, 80, 0.25);
    box-shadow: 0 20px 40px rgba(149, 198, 80, 0.04);
}

.vmv-icon {
    width: 54px;
    height: 54px;
    background: rgba(149, 198, 80, 0.08);
    color: var(--color-saffron);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.vmv-card:hover .vmv-icon {
    background: var(--color-saffron);
    color: var(--color-obsidian);
}

.vmv-card h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 500;
    color: var(--color-charcoal);
    margin-bottom: 16px;
}

.vmv-card p {
    font-size: 0.96rem;
    line-height: 1.6;
    color: var(--color-muted);
    font-weight: 300;
}

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

.vmv-list li {
    font-size: 0.96rem;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 300;
}

.vmv-list li i {
    color: var(--color-saffron);
    font-size: 1rem;
}

.about-closing-statement {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: var(--color-white);
    border-left: 4px solid var(--color-saffron);
    border-radius: 0 24px 24px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border-top: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.closing-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--color-charcoal);
    font-style: italic;
    font-weight: 400;
}

@media (max-width: 991px) {
    .packagers-divider {
        margin: 50px 0;
    }

    .vision-mission-values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .about-closing-statement {
        padding: 30px 20px;
    }

    .closing-text {
        font-size: 1.15rem;
    }
}

/* ==========================================================================
   GLOBAL REACH / GLOBE SECTION
   ========================================================================== */
.globe-section {
    padding: 120px 0;
    background: var(--color-obsidian);
    position: relative;
    overflow: hidden;
}

.globe-section-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.globe-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
}

.globe-glow-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    left: -5%;
    background: radial-gradient(circle, rgba(149, 198, 80, 0.3) 0%, transparent 70%);
    animation: floatGlow 14s infinite ease-in-out alternate;
}

.globe-glow-2 {
    width: 450px;
    height: 450px;
    bottom: -15%;
    right: 5%;
    background: radial-gradient(circle, rgba(90, 140, 220, 0.2) 0%, transparent 70%);
    animation: floatGlow 14s infinite ease-in-out alternate;
    animation-delay: -7s;
}

.globe-section .section-container {
    position: relative;
    z-index: 1;
}

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

.globe-text-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.globe-text-content .about-header-main {
    text-align: left;
}

.globe-text-content .about-header-main .section-badge {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.15);
}

.globe-text-content .about-header-main .section-title {
    color: #fff;
}

.globe-text-content .about-header-main .section-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

.globe-text-content .section-badge-wrapper {
    justify-content: flex-start;
}

.globe-stats-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.globe-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.globe-stat-number {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--color-saffron);
    line-height: 1;
}

.globe-stat-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* Globe Canvas Wrapper */
.globe-canvas-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 560px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.globe-ring {
    position: absolute;
    width: 88%;
    height: 88%;
    border-radius: 50%;
    border: 1px solid rgba(149, 198, 80, 0.12);
    box-shadow:
        0 0 60px 10px rgba(149, 198, 80, 0.06),
        inset 0 0 60px 10px rgba(149, 198, 80, 0.03);
    animation: globeRingPulse 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes globeRingPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

#globe-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Globe Section Responsive */
@media (max-width: 991px) {
    .globe-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .globe-text-content .about-header-main {
        text-align: center;
    }

    .globe-text-content .section-badge-wrapper {
        justify-content: center;
    }

    .globe-stats-row {
        justify-content: center;
    }

    .globe-canvas-wrapper {
        max-width: 420px;
    }

    .globe-stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .globe-section {
        padding: 80px 0;
    }

    .globe-stats-row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .globe-stat {
        align-items: center;
    }

    .globe-canvas-wrapper {
        max-width: 320px;
    }
}


/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
    background: var(--color-obsidian);
    color: var(--color-white);
    padding: 120px 60px;
    border: 1px solid rgba(149, 198, 80, 0.15);
}

.contact-section .section-title {
    color: var(--color-white);
}

.contact-section .section-desc {
    color: rgba(255, 255, 255, 0.65);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 48px;
}

.detail-item {
    display: flex;
    gap: 24px;
}

.detail-item i {
    font-size: 1.2rem;
    color: var(--color-saffron);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item:hover i {
    background: var(--color-saffron);
    color: var(--color-obsidian);
    border-color: var(--color-saffron);
    transform: scale(1.08);
}

.detail-item h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 6px;
}

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

.contact-form-panel {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px 48px;
    border-radius: 28px;
    backdrop-filter: blur(30px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-saffron);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 4px;
    border-radius: 0;
    color: var(--color-white);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select {
    cursor: pointer;
    /* Custom select styling support */
}

.form-group select option {
    background: var(--color-obsidian);
    color: var(--color-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--color-saffron);
    background: transparent;
    box-shadow: none;
}

.submit-btn {
    background: var(--color-saffron);
    color: var(--color-obsidian);
    border: none;
    padding: 18px 36px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    margin-top: 15px;
}

.submit-btn:hover {
    background: var(--color-white);
    color: var(--color-obsidian);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(149, 198, 80, 0.3);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--color-obsidian);
    padding: 60px 0;
    border-top: 1px solid rgba(149, 198, 80, 0.10);
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 40px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-saffron);
}

/* ==========================================================================
   RESPONSIVENESS UPDATES
   ========================================================================== */
@media (max-width: 991px) {

    .about-grid,
    .about-grid.reverse,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-grid.reverse .about-text-content {
        order: 1;
    }

    .about-grid.reverse .about-visual {
        order: 2;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-section {
        padding: 80px 30px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .contact-form-panel {
        padding: 40px 24px;
    }
}

/* Bento Dashboard Responsive Tweaks */
@media (max-width: 1100px) {
    .bento-dashboard-master {
        grid-template-columns: 1fr;
    }

    .bento-dashboard-two-col {
        grid-template-columns: 1fr;
    }

    .bento-dashboard-industries {
        grid-template-columns: repeat(2, 1fr);
    }

    .industry-bento-item.highlight-ind {
        grid-column: span 1;
    }

    .pipeline-flow-container {
        flex-direction: column;
        gap: 16px;
    }

    .pipeline-arrow {
        transform: rotate(90deg);
        margin: 4px 0;
    }
}

@media (max-width: 768px) {
    .about-header-main .section-title {
        font-size: 2.1rem;
    }

    .about-tabs-nav {
        justify-content: flex-start;
        padding: 6px;
    }

    .about-tab-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .bento-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid-master {
        grid-template-columns: 1fr;
    }

    .quality-checks-grid {
        grid-template-columns: 1fr;
    }

    .bento-dashboard-industries {
        grid-template-columns: 1fr;
    }

    .bento-card {
        padding: 28px 22px;
    }
}

/* ==========================================================================
   LOGOS / CERTIFICATIONS SECTION
   ========================================================================== */
.logos-section {
    background: var(--color-alabaster);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* Subtle background glowing orbs */
.logos-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(149, 198, 80, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.logos-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.logos-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-saffron);
    margin-bottom: 18px;
    display: inline-block;
}

.logos-heading {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 500;
    color: var(--color-obsidian);
    line-height: 1.25;
    margin-bottom: 70px;
    letter-spacing: -0.025em;
}

.logos-heading strong {
    color: var(--color-saffron);
    font-weight: 500;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    justify-content: center;
    align-items: start;
    margin-top: 20px;
}

.logo-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-cell:hover {
    transform: translateY(-8px);
}

.stamp-wrap {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

/* Spinning outer ring SVG */
.stamp-ring-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation: rotateRing 25s linear infinite;
    transform-origin: center;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reverse animation direction for specific rings */
.stamp-ring-svg.anim-reverse {
    animation: rotateRing 25s linear infinite reverse;
}

/* Speed variation */
.stamp-ring-svg.anim-slow {
    animation-duration: 30s;
}

.logo-cell:hover .stamp-ring-svg {
    transform: scale(1.05);
}

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

    100% {
        transform: rotate(360deg);
    }
}

.stamp-inner-circle {
    width: 126px;
    height: 126px;
    border-radius: 50%;
    background: var(--color-white);
    /* Light white badge backdrop */
    border: 2px solid rgba(149, 198, 80, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(149, 198, 80, 0.05), inset 0 2px 10px rgba(149, 198, 80, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.stamp-inner-circle::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(149, 198, 80, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.logo-cell:hover .stamp-inner-circle {
    border-color: var(--color-saffron);
    background: rgba(149, 198, 80, 0.08);
    box-shadow:
        0 15px 40px rgba(149, 198, 80, 0.12),
        0 0 25px rgba(149, 198, 80, 0.08),
        inset 0 2px 15px rgba(149, 198, 80, 0.05);
    transform: scale(1.05);
}

.logo-cell:hover .stamp-inner-circle::after {
    opacity: 1;
}

.stamp-inner-circle svg {
    width: 82px;
    height: 82px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-cell:hover .stamp-inner-circle svg {
    transform: scale(1.08);
}

.stamp-name {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-obsidian);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.logo-cell:hover .stamp-name {
    color: var(--color-saffron);
}

.stamp-sub {
    font-size: 0.84rem;
    color: var(--color-muted);
    line-height: 1.4;
    max-width: 220px;
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .logos-section {
        padding: 80px 0;
    }

    .logos-heading {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stamp-wrap {
        width: 150px;
        height: 150px;
    }

    .stamp-inner-circle {
        width: 106px;
        height: 106px;
    }

    .stamp-inner-circle svg {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .logos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   CUSTOM LANG DROPDOWN SELECTOR WIDGET
   ========================================================================== */
.custom-lang-selector {
    position: relative;
    font-family: var(--font-body), sans-serif;
    display: inline-flex;
    align-items: center;
}

.custom-lang-trigger {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    padding: 10px 22px;
    border-radius: 30px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.custom-lang-trigger:hover,
.custom-lang-selector.active .custom-lang-trigger {
    background: var(--color-saffron);
    color: var(--color-obsidian);
    font-weight: 600;
}

.custom-lang-trigger .current-flag {
    font-size: 1rem;
    line-height: 1;
}

.custom-lang-trigger .current-lang-code {
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.custom-lang-trigger i {
    font-size: 0.75rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.custom-lang-selector.active .custom-lang-trigger i {
    transform: rotate(180deg);
}

.custom-lang-options {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(11, 21, 21, 0.96);
    /* Slate/dark glass matching user's screenshot */
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 12px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    width: 220px;
    max-height: 380px;
    overflow-y: auto;
    z-index: 10000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

/* Custom Scrollbar for dropdown options */
.custom-lang-options::-webkit-scrollbar {
    width: 6px;
}

.custom-lang-options::-webkit-scrollbar-track {
    background: transparent;
}

.custom-lang-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

.custom-lang-options::-webkit-scrollbar-thumb:hover {
    background: var(--color-saffron);
}

.custom-lang-selector.active .custom-lang-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-lang-options li {
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    text-align: left;
}

.custom-lang-options li:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--color-saffron);
}

/* Hide standard Google Translate widget completely */
#google_translate_element,
.skiptranslate,
.goog-te-banner-frame,
iframe.goog-te-menu-frame {
    display: none !important;
}

body {
    top: 0px !important;
    position: static !important;
}

/* Mobile responsive adjustments for custom-lang-selector inside vertical menu capsule */
@media (max-width: 992px) {
    .custom-lang-selector {
        width: 100%;
        justify-content: center;
    }

    .custom-lang-trigger {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    .custom-lang-options {
        right: 0;
        left: 0;
        width: 100%;
        max-height: 250px;
        top: calc(100% + 4px);
    }

    .custom-lang-options li {
        justify-content: center;
    }
}

/* ========== Floating WhatsApp Button ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.whatsapp-float i {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: rotate(10deg);
}

/* Pulse effect */
.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: #25D366;
    z-index: -1;
    opacity: 0.5;
    animation: waPulse 2s infinite;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Adjust position on small mobile screens */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}

/* ==========================================================================
   LEGAL / CONTENT PAGES
   ========================================================================== */
.legal-section {
    padding: 180px 0 100px 0;
    background: var(--color-alabaster);
    min-height: 80vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 50px 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.legal-header {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 30px;
}

.legal-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-saffron);
    margin-bottom: 12px;
    display: inline-block;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 500;
    color: var(--color-obsidian);
    line-height: 1.15;
    margin-bottom: 16px;
}

.legal-meta {
    font-size: 0.88rem;
    color: var(--color-muted);
    font-weight: 400;
}

.legal-body {
    color: var(--color-charcoal);
    line-height: 1.8;
}

.legal-body h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-obsidian);
    margin-top: 40px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 8px;
}

.legal-body p {
    margin-bottom: 20px;
    font-weight: 400;
}

.legal-body ul, .legal-body ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.legal-body li {
    margin-bottom: 10px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .legal-section {
        padding: 120px 0 60px 0;
    }
    .legal-card {
        padding: 30px 20px;
        border-radius: 12px;
    }
    .legal-title {
        font-size: 2.2rem;
    }
    .legal-body h2 {
        font-size: 1.3rem;
        margin-top: 30px;
    }
}

/* ==========================================================================
   FORM CHECKBOX & CAPTCHA STYLING
   ========================================================================== */
.checkbox-group {
    margin-bottom: 22px;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Hover state */
.checkbox-container:hover input ~ .custom-checkbox {
    border-color: var(--color-saffron);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Checked state */
.checkbox-container input:checked ~ .custom-checkbox {
    background-color: var(--color-saffron);
    border-color: var(--color-saffron);
}

/* Create the checkmark indicator */
.custom-checkbox::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Show checkmark when checked */
.checkbox-container input:checked ~ .custom-checkbox::after {
    display: block;
}

.checkbox-text {
    font-size: 0.92rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

.checkbox-text a {
    color: var(--color-saffron);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.checkbox-text a:hover {
    color: var(--color-white);
}

.captcha-group {
    margin-bottom: 25px;
}

.captcha-group label {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
}

.captcha-group label span {
    color: var(--color-saffron);
    font-weight: 700;
}

.captcha-options-container {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    width: 100%;
}

.captcha-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    padding: 12px 16px;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    outline: none;
}

.captcha-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.captcha-btn.selected {
    background: var(--color-saffron);
    border-color: var(--color-saffron);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(131, 190, 47, 0.25);
    transform: translateY(-2px);
}

.captcha-error-msg {
    display: none;
    font-weight: 500;
    margin-top: 5px;
    color: #ff3b30;
    font-size: 0.85rem;
}

@keyframes shakeInput {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.shake-error {
    animation: shakeInput 0.4s ease-in-out;
}

.shake-error .captcha-btn {
    border-color: #ff3b30 !important;
    box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.15) !important;
}

/* ==========================================================================
   FORM THANK YOU PANEL
   ========================================================================== */
.form-thank-you {
    display: none;
    opacity: 0;
    text-align: center;
    padding: 50px 30px;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thank-you-icon {
    font-size: 4.5rem;
    color: var(--color-saffron);
    margin-bottom: 24px;
    filter: drop-shadow(0 0 15px rgba(131, 190, 47, 0.3));
}

.thank-you-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-white);
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.thank-you-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 420px;
    margin: 0 auto;
    font-weight: 300;
}