/* ==========================================================================
   YOUR STYLEZ - Luxury Futuristic Website Stylesheet
   Hero Section (Auto-playing Video) + Flowblox Curved Arc Transformation Showcase
   Hair Replacement Center | Nagercoil
   ========================================================================== */

:root {
    /* Rich, Luxury Dark Forest Green Palette */
    --bg-dark: #0d2117;
    --bg-deeper: #08160f;
    --bg-surface: #122b1f;
    --bg-surface-elevated: #163627;

    /* Luminous Natural Accents */
    --accent-mint: #34d399;
    --accent-emerald: #10b981;
    --accent-gold: #d4af37;
    --accent-glow: rgba(52, 211, 153, 0.26);
    --accent-blue-glow: rgba(52, 211, 153, 0.16);

    /* Elegant Light Beige Typography */
    --text-ivory: #f5eedc;
    --text-pure: #faf6ee;
    --text-secondary: #dcd2bd;
    --text-muted: #b8ab92;

    /* Glassmorphism with Dark Green & Light Beige Undertones */
    --glass-bg: rgba(245, 238, 220, 0.05);
    --glass-bg-hover: rgba(245, 238, 220, 0.09);
    --glass-card: rgba(14, 35, 25, 0.82);
    --glass-border: rgba(245, 238, 220, 0.15);
    --glass-border-subtle: rgba(52, 211, 153, 0.22);
    --glass-shadow: 0 20px 40px -8px rgba(3, 12, 7, 0.75), 0 0 1px rgba(245, 238, 220, 0.2);

    --font-heading: 'Sora', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* --------------------------------------------------------------------------
   CSS Reset & Foundation
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-deeper);
    color: var(--text-ivory);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

svg {
    box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   HERO SECTION (Clean Autoplay, No Overlap / Clipping)
   -------------------------------------------------------------------------- */
.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 74px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 36px 0 44px 0;
}

.hero-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-color: var(--bg-dark);
}

#hero-canvas,
.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(102%) brightness(101%);
    z-index: 1;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 2;
    opacity: 0.6;
}

.glow-left {
    top: 20%;
    left: -10%;
    width: 50vw;
    height: 50vh;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}

.glow-center {
    top: 40%;
    left: 35%;
    width: 45vw;
    height: 45vh;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 65%);
}

.glow-right {
    bottom: 10%;
    right: -5%;
    width: 40vw;
    height: 40vh;
    background: radial-gradient(circle, var(--accent-blue-glow) 0%, transparent 70%);
}

.tech-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0.15;
    background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 80%);
}

.hud-orbit-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110vw;
    height: 110vw;
    max-width: 1300px;
    max-height: 1300px;
    transform: translate(-50%, -50%);
    z-index: 3;
    opacity: 0.45;
    pointer-events: none;
    animation: slowOrbitRotate 120s linear infinite;
}

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

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

/* TOP NAVIGATION - UNIFIED STICKY LUXURY HEADER */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 12px 48px;
    background: rgba(13, 33, 23, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245, 238, 220, 0.12);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.top-nav.scrolled {
    padding: 10px 48px;
    background: rgba(8, 22, 15, 0.96);
    box-shadow: 0 10px 30px rgba(3, 12, 7, 0.7);
    border-bottom-color: rgba(52, 211, 153, 0.25);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-pure);
    transition: opacity 0.2s ease;
}

.brand-logo:hover {
    opacity: 0.92;
}

.brand-logo-img {
    height: 44px;
    max-height: 44px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: all 0.25s ease;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-pure);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-mint);
    box-shadow: 0 0 8px var(--accent-mint);
    border-radius: 2px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-nav-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-mint), var(--accent-emerald));
    color: #08160f;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px var(--accent-glow);
}

.btn-nav-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(52, 211, 153, 0.45);
    filter: brightness(1.06);
}

.btn-nav-outline {
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-pure);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-nav-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 0 16px var(--accent-glow);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border-subtle);
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.2s ease;
}

.menu-toggle:hover {
    background: rgba(52, 211, 153, 0.15);
    border-color: var(--accent-mint);
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background: var(--text-pure);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* HERO MAIN CONTENT */
.hero-main-container {
    position: relative;
    z-index: 10;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 48px;
    flex: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 40px;
}

.hero-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 620px;
}

.eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    margin-bottom: 24px;
}

.pill-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-mint);
    box-shadow: 0 0 10px var(--accent-mint);
    animation: pulseDot 2.2s infinite;
}

@keyframes pulseDot {

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

    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

.pill-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-pure);
    text-transform: uppercase;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(38px, 4.4vw, 68px);
    font-weight: 300;
    line-height: 0.96;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--text-pure);
    margin-bottom: 20px;
}

.headline-line {
    display: block;
}

.highlight-text {
    font-weight: 600;
    background: linear-gradient(90deg, #ffffff 0%, #34d399 25%, #d4af37 50%, #34d399 75%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 20px rgba(52, 211, 153, 0.35));
    animation: textShimmer 6s linear infinite;
    display: inline-block;
}

@keyframes textShimmer {
    0% {
        background-position: 0% 50%;
    }

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

.category-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-mint);
    margin-bottom: 12px;
}

.hero-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 253, 244, 0.9));
    color: #06110a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35), 0 0 20px var(--accent-glow);
    transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45), 0 0 28px rgba(52, 211, 153, 0.45);
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 14px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    color: var(--text-pure);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
}

.hero-bottom-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.meta-tech-matrix {
    display: grid;
    grid-template-columns: repeat(3, 5px);
    grid-gap: 3px;
}

.dot-cell {
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 1px;
}

.dot-cell.active {
    background: var(--accent-mint);
    box-shadow: 0 0 6px var(--accent-mint);
}

.meta-text-block {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-headline {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-pure);
}

.meta-sub {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* RIGHT FLOATING GLASSMORPHISM CARDS */
.hero-right-cards {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    position: relative;
    z-index: 12;
}

.glass-card {
    width: 100%;
    max-width: 320px;
    background: var(--glass-bg);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 22px;
    padding: 18px 20px;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 24px 48px -6px rgba(0, 0, 0, 0.7), 0 0 1px rgba(255, 255, 255, 0.5);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.card-icon-wrap {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-mint);
}

.card-icon-wrap svg {
    width: 15px;
    height: 15px;
}

.card-title {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-pure);
    letter-spacing: 0.02em;
}

.card-text {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.45;
}

.card-intro {
    margin-bottom: 14px;
}

.card-visual-area {
    width: 100%;
    height: 48px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.strand-visualization {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 28px;
}

.strand {
    width: 3px;
    background: linear-gradient(to top, #059669, #34d399);
    border-radius: 999px;
    animation: strandPulse 3s ease-in-out infinite alternate;
}

.s1 {
    height: 14px;
    animation-delay: 0.1s;
}

.s2 {
    height: 22px;
    animation-delay: 0.3s;
}

.s3 {
    height: 28px;
    animation-delay: 0.5s;
}

.s4 {
    height: 20px;
    animation-delay: 0.7s;
}

.s5 {
    height: 26px;
    animation-delay: 0.9s;
}

.s6 {
    height: 16px;
    animation-delay: 1.1s;
}

@keyframes strandPulse {
    0% {
        transform: scaleY(0.7);
        opacity: 0.6;
    }

    100% {
        transform: scaleY(1.1);
        opacity: 1;
    }
}

.inner-subcard {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.subcard-metric-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.subcard-metric-col.align-right {
    text-align: right;
}

.metric-label {
    font-size: 9.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 500;
}

.metric-value {
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-pure);
}

.metric-value.highlight {
    color: var(--accent-mint);
}

.radial-progress-wrap {
    position: relative;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 4;
}

.progress-ring-fill {
    fill: none;
    stroke: var(--accent-mint);
    stroke-width: 4;
    stroke-dasharray: 138;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    filter: drop-shadow(0 0 6px var(--accent-mint));
}

.progress-center-text {
    position: absolute;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-pure);
}

.curve-wave-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 8px 12px;
    margin-bottom: 12px;
}

.curve-wave-svg {
    width: 140px;
    height: 28px;
}

.wave-glow {
    filter: drop-shadow(0 0 4px var(--accent-mint));
    animation: waveShift 4s ease-in-out infinite alternate;
}

@keyframes waveShift {
    0% {
        stroke-dashoffset: 0;
        opacity: 0.7;
    }

    100% {
        stroke-dashoffset: 20;
        opacity: 1;
    }
}

.metric-badge-pill {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-mint);
    background: rgba(52, 211, 153, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.3);
    padding: 4px 8px;
    border-radius: 6px;
}

.float-anim-1 {
    animation: floatCard1 7s ease-in-out infinite alternate;
}

.float-anim-2 {
    animation: floatCard2 8.5s ease-in-out infinite alternate;
}

.float-anim-3 {
    animation: floatCard3 7.8s ease-in-out infinite alternate;
}

@keyframes floatCard1 {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-8px);
    }
}

@keyframes floatCard2 {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(7px);
    }
}

@keyframes floatCard3 {
    0% {
        transform: translateY(0px);
    }

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

/* --------------------------------------------------------------------------
   ==========================================================================
   FLOWBLOX CURVED 3D ARC TRANSFORMATION SECTION
   ==========================================================================
   -------------------------------------------------------------------------- */
.transformation-section {
    position: relative;
    width: 100vw;
    padding: 120px 0 110px 0;
    background-color: var(--bg-deeper);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trans-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

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

.glow-top-left {
    top: -10%;
    left: 10%;
    width: 45vw;
    height: 45vh;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
}

.glow-center-right {
    bottom: 0%;
    right: 5%;
    width: 50vw;
    height: 50vh;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.14) 0%, transparent 70%);
}

.trans-grid {
    opacity: 0.08;
}

.trans-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    max-width: 1200px;
    opacity: 0.25;
}

.trans-container {
    position: relative;
    z-index: 10;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header */
.trans-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 56px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trans-heading {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--text-pure);
    margin-bottom: 18px;
}

.heading-row {
    display: block;
}

.trans-subheading {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 600px;
}

/* --------------------------------------------------------------------------
   THE 3D CURVED CAROUSEL RIBBON (Flowblox Arc Layout)
   -------------------------------------------------------------------------- */
.arc-carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto 60px auto;
    perspective: 1400px;
    perspective-origin: 50% 40%;
}

.arc-ribbon-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-height: 420px;
    padding: 20px 0 40px 0;
    transform-style: preserve-3d;
}

/* Base Card Styles */
.arc-card {
    position: relative;
    width: 210px;
    height: 330px;
    flex-shrink: 0;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.75s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
    will-change: transform, width, height, opacity;
}

.arc-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--glass-card);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.7), 0 0 1px rgba(255, 255, 255, 0.25);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.arc-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    z-index: 5;
}

.arc-client-id {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-pure);
    background: rgba(255, 255, 255, 0.08);
    padding: 3px 8px;
    border-radius: 999px;
    border: 1px solid var(--glass-border-subtle);
}

.arc-tag {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--accent-mint);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Image Wrapper */
.arc-img-wrapper {
    position: relative;
    width: 100%;
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-deeper);
    display: flex;
    gap: 2px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.arc-slot {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.arc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Badges */
.arc-badge {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.badge-before {
    background: rgba(18, 14, 12, 0.88);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.4);
}

.badge-after {
    background: rgba(13, 33, 23, 0.92);
    color: #6ee7b7;
    border: 1px solid rgba(52, 211, 153, 0.45);
}

/* Divider Arrow (Only active in center) */
.arc-divider {
    display: none;
    width: 22px;
    height: 22px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(7, 12, 9, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--accent-mint);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.arc-divider svg {
    width: 11px;
    height: 11px;
}

/* Card Footer */
.arc-card-footer {
    display: none;
    margin-top: 14px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 10px;
}

.arc-title {
    font-family: var(--font-heading);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-pure);
    margin-bottom: 2px;
}

.arc-desc {
    font-size: 11.5px;
    line-height: 1.4;
    color: var(--text-secondary);
}

.arc-pill-spec {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--accent-mint);
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.3);
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

/* --------------------------------------------------------------------------
   NORMAL (NON-CENTER) CARDS: ONLY SHOW AFTER IMAGES
   -------------------------------------------------------------------------- */
.arc-card:not(.is-center) .before-slot {
    display: none !important;
}

.arc-card:not(.is-center) .arc-divider {
    display: none !important;
}

.arc-card:not(.is-center) .after-slot {
    width: 100% !important;
    flex: 1 !important;
}

.arc-card:not(.is-center) .arc-tag {
    display: none;
}

.arc-card:not(.is-center) .arc-card-footer {
    display: none !important;
}

/* --------------------------------------------------------------------------
   CENTER CARD: EXPANDS & REVEALS BEFORE HAIR FIXING IMAGE LAYOUT
   -------------------------------------------------------------------------- */
.arc-card.is-center {
    width: 460px;
    height: 380px;
    z-index: 30 !important;
    transform: translateZ(70px) scale(1.06) !important;
    opacity: 1 !important;
}

.arc-card.is-center .arc-card-inner {
    padding: 20px;
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.9), 0 0 35px var(--accent-glow);
}

.arc-card.is-center .before-slot {
    display: block !important;
    flex: 1;
}

.arc-card.is-center .after-slot {
    display: block !important;
    flex: 1;
}

.arc-card.is-center .arc-divider {
    display: flex !important;
}

.arc-card.is-center .arc-card-footer {
    display: flex !important;
}

/* --------------------------------------------------------------------------
   3D ARC ROTATION POSITIONS (Along Flowblox Curved Horizon)
   -------------------------------------------------------------------------- */
.arc-card.pos-left-1 {
    transform: translateX(10px) translateY(14px) rotateY(16deg) scale(0.92);
    z-index: 15;
    opacity: 0.88;
}

.arc-card.pos-left-2 {
    transform: translateX(20px) translateY(36px) rotateY(28deg) scale(0.82);
    z-index: 8;
    opacity: 0.65;
}

.arc-card.pos-left-3 {
    transform: translateX(25px) translateY(65px) rotateY(38deg) scale(0.72);
    z-index: 2;
    opacity: 0.35;
}

.arc-card.pos-right-1 {
    transform: translateX(-10px) translateY(14px) rotateY(-16deg) scale(0.92);
    z-index: 15;
    opacity: 0.88;
}

.arc-card.pos-right-2 {
    transform: translateX(-20px) translateY(36px) rotateY(-28deg) scale(0.82);
    z-index: 8;
    opacity: 0.65;
}

.arc-card.pos-right-3 {
    transform: translateX(-25px) translateY(65px) rotateY(-38deg) scale(0.72);
    z-index: 2;
    opacity: 0.35;
}

/* Controls Bar */
.arc-controls-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.arc-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    color: var(--text-pure);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.arc-nav-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.08);
    box-shadow: 0 0 16px var(--accent-glow);
}

.arc-nav-btn svg {
    width: 18px;
    height: 18px;
}

.arc-counter-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 120px;
}

.arc-counter {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-pure);
    display: flex;
    align-items: center;
    gap: 4px;
}

.arc-current {
    color: var(--accent-mint);
}

.arc-sep {
    color: var(--text-muted);
}

.arc-total {
    color: var(--text-secondary);
}

.arc-progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
}

.arc-progress-glow {
    height: 100%;
    width: 57%;
    background: linear-gradient(90deg, #059669, #34d399);
    border-radius: 999px;
    box-shadow: 0 0 8px var(--accent-mint);
    transition: width 0.4s ease;
}

/* --------------------------------------------------------------------------
   3 FEATURE SUMMARY COLUMNS (Matching Flowblox Reference Layout)
   -------------------------------------------------------------------------- */
.flowblox-features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto 0 auto;
    text-align: center;
    padding: 0 20px;
}

.feature-col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-col-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-pure);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.feature-col-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 340px;
}

/* Bottom Consultation Panel */
.trans-bottom-banner {
    margin-top: 64px;
}

.banner-glass-panel {
    background: linear-gradient(135deg, rgba(18, 43, 31, 0.85), rgba(13, 33, 23, 0.92));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 36px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.65);
}

.banner-badge {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-mint);
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.banner-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-pure);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.banner-desc {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   SCROLL ENTRANCE ANIMATIONS
   -------------------------------------------------------------------------- */
[data-scroll-anim="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}

[data-scroll-anim="fade-up"].in-view {
    opacity: 1;
    transform: translateY(0);
}

@media print,
(prefers-reduced-motion: reduce) {
    [data-scroll-anim="fade-up"] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* --------------------------------------------------------------------------
   RESPONSIVE DESIGN
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .hero-main-container {
        grid-template-columns: 1fr 300px;
        gap: 24px;
        padding: 0 32px;
    }

    .hero-headline {
        font-size: clamp(34px, 4vw, 54px);
    }

    .arc-card {
        width: 170px;
        height: 280px;
    }

    .arc-card.is-center {
        width: 380px;
        height: 320px;
    }

    .flowblox-features-row {
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .hero-wrapper {
        height: auto;
        min-height: 100vh;
        padding-bottom: 40px;
    }

    .top-nav {
        padding: 20px 24px;
    }

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-main-container {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 24px;
    }

    .hero-right-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
        gap: 16px;
        align-items: stretch;
    }

    .glass-card {
        max-width: 100%;
        width: 100%;
    }

    .card-bottom {
        max-width: 100%;
    }

    .trans-container {
        padding: 0 24px;
    }

    .arc-ribbon-stage {
        gap: 10px;
        overflow-x: hidden;
    }

    .arc-card {
        width: 130px;
        height: 230px;
    }

    .arc-card.is-center {
        width: 320px;
        height: 280px;
    }

    .arc-card.pos-left-3,
    .arc-card.pos-right-3 {
        display: none;
    }

    .flowblox-features-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .banner-glass-panel {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
    }
}

@media (max-width: 600px) {
    .top-nav {
        padding: 16px;
    }

    .hero-main-container {
        padding: 0 16px;
    }

    .hero-headline {
        font-size: 34px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

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

    .hero-right-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .glass-card {
        max-width: 100%;
    }

    .trans-container {
        padding: 0 16px;
    }

    .trans-heading {
        font-size: 30px;
    }

    .arc-ribbon-stage {
        min-height: 340px;
    }

    .arc-card {
        width: 80px;
        height: 180px;
    }

    .arc-card.is-center {
        width: 280px;
        height: 260px;
    }

    .arc-card.pos-left-2,
    .arc-card.pos-right-2 {
        display: none;
    }
}

/* ==========================================================================
   SCROLL REVEAL UTILITY
   ========================================================================== */
[data-scroll-anim="fade-up"] {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
    will-change: opacity, transform;
}

[data-scroll-anim="fade-up"].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   3. ABOUT & WHY YOUR STYLEZ SECTION (#why-us)
   ========================================================================== */
.about-why-section {
    position: relative;
    width: 100%;
    padding: 130px 0 110px 0;
    background-color: var(--bg-deeper);
    overflow: hidden;
}

/* Atmospheric Ambient Layers */
.about-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.28;
    mix-blend-mode: screen;
}

.glow-about-1 {
    top: 15%;
    left: -8%;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, var(--accent-mint) 0%, rgba(16, 185, 129, 0.05) 70%, transparent 100%);
}

.glow-about-2 {
    bottom: 20%;
    right: -5%;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, #d67558 0%, rgba(214, 117, 88, 0.08) 65%, transparent 100%);
}

.about-grid {
    opacity: 0.35;
}

.about-orbit {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 1200px;
    pointer-events: none;
    opacity: 0.55;
}

.about-container {
    position: relative;
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 32px;
    z-index: 2;
}

/* --------------------------------------------------------------------------
   SECTION 1: ABOUT SPLIT ROW (Collage Left, Editorial Right)
   -------------------------------------------------------------------------- */
.about-split-row {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    gap: 72px;
    align-items: center;
    margin-bottom: 140px;
}

/* 3-Image Collage Grid (Matching reference layout) */
.about-collage-col {
    position: relative;
}

.collage-grid {
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    gap: 20px;
    align-items: center;
    position: relative;
}

.collage-subcol-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.collage-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    background: var(--bg-surface);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 42px -12px rgba(0, 0, 0, 0.75), 0 0 1px rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-top-left {
    height: 220px;
}

.card-bottom-left {
    height: 220px;
}

.card-tall-right {
    height: 460px;
    border-radius: 30px;
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.collage-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 22, 15, 0) 60%, rgba(8, 22, 15, 0.5) 100%);
    pointer-events: none;
}

.collage-card:hover {
    transform: translateY(-6px);
    border-color: rgba(52, 211, 153, 0.4);
    box-shadow: 0 28px 55px -14px rgba(0, 0, 0, 0.85), 0 0 25px rgba(52, 211, 153, 0.15);
}

.collage-card:hover .collage-img {
    transform: scale(1.05);
}

/* Floating Experience Badge */
.collage-experience-badge {
    position: absolute;
    bottom: 22px;
    right: 22px;
    background: rgba(13, 33, 23, 0.92);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(52, 211, 153, 0.35);
    border-radius: 18px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.65), 0 0 20px rgba(52, 211, 153, 0.18);
    z-index: 5;
    animation: floatBadge 4s ease-in-out infinite alternate;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0);
    }

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

.badge-num {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--accent-mint);
    line-height: 1;
    text-shadow: 0 0 16px rgba(52, 211, 153, 0.4);
}

.badge-lbl {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-pure);
    line-height: 1.35;
}

/* Editorial Content Column */
.about-content-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Decorative Dotted Path (Matching the playful route marker in reference) */
.decorative-dotted-path {
    position: absolute;
    top: -45px;
    right: 0;
    width: 170px;
    height: 50px;
    pointer-events: none;
    opacity: 0.85;
}

.decorative-dotted-path svg {
    width: 100%;
    height: 100%;
}

.decorative-dotted-path path {
    stroke-dasharray: 4 6;
    animation: dashMove 20s linear infinite;
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -100;
    }
}

.about-heading {
    font-family: var(--font-heading);
    font-size: clamp(34px, 3.8vw, 54px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    color: var(--text-pure);
    margin-top: 14px;
    margin-bottom: 24px;
}

.about-paragraph {
    line-height: 1.68;
    font-weight: 400;
}

.lead-p {
    font-size: 16.5px;
    color: var(--text-pure);
    margin-bottom: 18px;
}

.sub-p {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.about-cta-wrap {
    display: flex;
    align-items: center;
}

/* --------------------------------------------------------------------------
   SECTION 2: WHY CHOOSE YOUR STYLEZ (Centered Heading + 4 Cards)
   -------------------------------------------------------------------------- */
.why-choose-block {
    position: relative;
    width: 100%;
}

.why-header {
    position: relative;
    text-align: center;
    max-width: 740px;
    margin: 0 auto 64px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-dotted-trail {
    position: absolute;
    top: -25px;
    left: -90px;
    width: 130px;
    height: 45px;
    pointer-events: none;
    opacity: 0.75;
}

.why-dotted-trail svg {
    width: 100%;
    height: 100%;
}

.why-heading {
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.4vw, 46px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--text-pure);
    margin-top: 14px;
    margin-bottom: 18px;
}

.why-subheading {
    font-size: 16px;
    line-height: 1.62;
    color: var(--text-secondary);
    font-weight: 400;
    max-width: 620px;
}

/* 4 Highlight Cards Grid */
.why-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.why-card {
    position: relative;
    background: var(--glass-card);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--glass-border-subtle);
    border-radius: 24px;
    padding: 40px 24px 34px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 14px 34px -8px rgba(0, 0, 0, 0.65), 0 0 1px rgba(255, 255, 255, 0.2);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(52, 211, 153, 0.38);
    box-shadow: 0 24px 48px -10px rgba(0, 0, 0, 0.8), 0 0 26px rgba(52, 211, 153, 0.16);
}

/* Card Normalization (Seamless uniform dimensions & elevation) */
.why-card-featured {
    background: var(--glass-card);
    border: 1px solid var(--glass-border-subtle);
    box-shadow: 0 14px 34px -8px rgba(0, 0, 0, 0.65), 0 0 1px rgba(255, 255, 255, 0.2);
}

.why-card-featured:hover {
    transform: translateY(-8px);
    border-color: rgba(52, 211, 153, 0.38);
    box-shadow: 0 24px 48px -10px rgba(0, 0, 0, 0.8), 0 0 26px rgba(52, 211, 153, 0.16);
}

.card-pill-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(52, 211, 153, 0.18);
    color: var(--accent-mint);
    border: 1px solid rgba(52, 211, 153, 0.35);
    padding: 3px 10px;
    border-radius: 999px;
}

/* Icon Box */
.why-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-mint);
    transition: all 0.4s ease;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.why-icon-box svg {
    width: 30px;
    height: 30px;
    transition: transform 0.4s ease;
}

.why-card:hover .why-icon-box {
    transform: scale(1.1);
    background: rgba(52, 211, 153, 0.15);
    border-color: rgba(52, 211, 153, 0.4);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.3);
}

.icon-highlight {
    background: rgba(52, 211, 153, 0.14);
    border-color: rgba(52, 211, 153, 0.35);
    color: var(--accent-mint);
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-pure);
    margin-bottom: 12px;
}

.why-card-desc {
    font-size: 13.5px;
    line-height: 1.62;
    color: var(--text-secondary);
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   4. SITE FOOTER - UNIFIED LUXURY BRAND FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    position: relative;
    background: var(--bg-deeper);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 80px 0 0 0;
    z-index: 20;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.5;
}

.footer-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px 64px 32px;
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1fr 1.1fr;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-brand-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-logo-img {
    height: 52px;
    max-height: 52px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.7));
}

.footer-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 22px;
    max-width: 320px;
}

.footer-phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.28);
    border-radius: 12px;
    color: var(--accent-mint);
    text-decoration: none;
    font-weight: 600;
    font-size: 13.5px;
    transition: all 0.25s ease;
    width: fit-content;
}

.footer-phone-cta:hover {
    background: rgba(52, 211, 153, 0.2);
    border-color: var(--accent-mint);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px var(--accent-glow);
    color: #ffffff;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-pure);
    margin-bottom: 22px;
    position: relative;
    display: inline-block;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--accent-mint);
    border-radius: 2px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 13.5px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link::before {
    content: '›';
    color: var(--accent-mint);
    font-weight: bold;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.footer-link:hover {
    color: var(--accent-mint);
    transform: translateX(4px);
}

.footer-link:hover::before {
    transform: translateX(2px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.footer-contact-icon {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    max-width: 34px !important;
    max-height: 34px !important;
    border-radius: 8px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-mint);
    flex-shrink: 0;
    margin-top: 2px;
    overflow: hidden;
}

.footer-contact-icon svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    max-width: 18px !important;
    max-height: 18px !important;
    display: block;
    flex-shrink: 0;
}

.footer-contact-item a {
    color: var(--text-ivory);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-item a:hover {
    color: var(--accent-mint);
}

.footer-hours-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    color: var(--accent-mint);
    font-size: 11.5px;
    font-weight: 600;
    margin-top: 6px;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    background: #050e0a;
}

.footer-bottom-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-mint);
}

.footer-tag {
    color: var(--accent-mint);
    letter-spacing: 0.04em;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   5. HOME PAGE - TESTIMONIALS SECTION (GLASSMORPHIC CARDS - IMAGE 4 STYLE)
   -------------------------------------------------------------------------- */
.testimonials-section {
    position: relative;
    background: var(--bg-surface);
    padding: 120px 0;
    overflow: hidden;
    z-index: 5;
}

.test-glow-1 {
    position: absolute;
    top: 10%;
    left: -5%;
    width: 45vw;
    height: 45vh;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.45;
}

.test-glow-2 {
    position: absolute;
    bottom: 5%;
    right: -5%;
    width: 40vw;
    height: 40vh;
    background: radial-gradient(circle, var(--accent-blue-glow) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.4;
}

.testimonials-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.testimonials-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px auto;
}

.testimonials-heading {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-pure);
    margin-top: 14px;
    line-height: 1.25;
}

.testimonials-subheading {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-top: 14px;
}

/* Glassmorphism Testimonial Showcase Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
}

/* Primary Big Testimonial Card (Testimonial 1 Design) */
.testimonial-card-main {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8), 0 0 1px rgba(255, 255, 255, 0.3);
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card-main:hover {
    border-color: rgba(52, 211, 153, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.9), 0 0 25px var(--accent-glow);
}

.testimonial-main-visual {
    position: relative;
    width: 100%;
    height: 290px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

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

.testimonial-card-main:hover .testimonial-main-img {
    transform: scale(1.04);
}

.testimonial-main-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(13, 33, 23, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: var(--accent-mint);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.testimonial-quote-text {
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-ivory);
    font-weight: 400;
    margin-bottom: 24px;
}

.testimonial-author-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-pure);
}

.author-role {
    font-size: 12.5px;
    color: var(--accent-mint);
    margin-top: 3px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fbbf24;
}

.rating-stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.rating-score {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-pure);
    margin-left: 6px;
}

/* Right Side Stacked Overlay Cards (Testimonial 2 Overlay Style) */
.testimonial-overlay-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card-overlay {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.testimonial-card-overlay:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(52, 211, 153, 0.35);
    transform: translateX(6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 20px var(--accent-glow);
}

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

.quote-icon-decor {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(52, 211, 153, 0.12);
    border: 1px solid rgba(52, 211, 153, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-mint);
    font-family: Georgia, serif;
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
}

.overlay-quote {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-ivory);
    margin-bottom: 20px;
}

.overlay-author-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.overlay-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-mint);
}

.overlay-author-meta {
    display: flex;
    flex-direction: column;
}

.overlay-author-meta .name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-pure);
}

.overlay-author-meta .place {
    font-size: 12px;
    color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. HOME PAGE - FAQ ACCORDION SECTION
   -------------------------------------------------------------------------- */
.faq-section {
    position: relative;
    background: var(--bg-dark);
    padding: 120px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 5;
}

.faq-container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-heading {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-pure);
    margin-top: 14px;
    line-height: 1.25;
}

.faq-subheading {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-top: 12px;
}

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

.faq-item {
    background: rgba(14, 35, 25, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    border-color: rgba(52, 211, 153, 0.3);
}

.faq-item.active {
    border-color: var(--accent-mint);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
    background: rgba(18, 43, 31, 0.95);
}

.faq-question-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
    color: var(--text-pure);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 18px;
    transition: color 0.2s ease;
}

.faq-question-btn:hover {
    color: var(--accent-mint);
}

.faq-toggle-icon {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-mint);
    flex-shrink: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-toggle-icon svg {
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    max-width: 14px !important;
    max-height: 14px !important;
    display: block;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle-icon {
    background: var(--accent-mint);
    color: #030504;
    transform: rotate(45deg);
}

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

.faq-answer-content {
    padding: 0 28px 26px 28px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--text-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 18px;
}

.faq-answer-content p+p {
    margin-top: 12px;
}

/* --------------------------------------------------------------------------
   7. SUB-PAGE HERO BANNER & BREADCRUMBS
   -------------------------------------------------------------------------- */
.subpage-hero {
    position: relative;
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-deeper) 100%);
    padding: 70px 0 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.subpage-hero-glow {
    position: absolute;
    top: -20%;
    right: 15%;
    width: 50vw;
    height: 40vh;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
    pointer-events: none;
    opacity: 0.5;
}

.subpage-hero-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.breadcrumb-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
    color: var(--accent-mint);
}

.breadcrumb-sep {
    color: var(--accent-mint);
    font-size: 12px;
}

.breadcrumb-nav .active {
    color: var(--accent-mint);
    font-weight: 600;
}

.subpage-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-pure);
    line-height: 1.2;
    margin-bottom: 16px;
}

.subpage-lead {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 680px;
}

/* --------------------------------------------------------------------------
   8. ABOUT US PAGE (VILLAGEX & GROWHUB INSPIRED)
   -------------------------------------------------------------------------- */
.about-page-wrap {
    position: relative;
    background: var(--bg-deeper);
}

.about-stats-bar {
    background: rgba(14, 35, 25, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 0;
}

.stats-grid-4 {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.stat-counter-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.stat-counter-card:hover {
    border-color: rgba(52, 211, 153, 0.3);
    transform: translateY(-2px);
    background: rgba(52, 211, 153, 0.05);
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(52, 211, 153, 0.12);
    color: var(--accent-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 22px;
    height: 22px;
}

.stat-meta {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-pure);
    line-height: 1.1;
}

.stat-label {
    font-size: 12.5px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.about-story-section {
    padding: 100px 0;
}

.about-craftsmanship-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.craft-card {
    background: rgba(14, 35, 25, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.craft-card:hover {
    border-color: rgba(52, 211, 153, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px var(--accent-glow);
}

.craft-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(52, 211, 153, 0.12);
    color: var(--accent-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.craft-card-icon svg {
    width: 24px;
    height: 24px;
}

.craft-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 12px;
}

.craft-card-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   9. WHY US PAGE (GROWHUB & COMPARISON MATRIX)
   -------------------------------------------------------------------------- */
.comparison-section {
    padding: 100px 0;
    background: var(--bg-surface);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(13, 33, 23, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    margin-top: 48px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14.5px;
}

.comparison-table th {
    font-family: var(--font-heading);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-pure);
    font-size: 15px;
}

.comparison-table th.col-highlight {
    background: rgba(52, 211, 153, 0.14);
    color: var(--accent-mint);
    border-left: 1px solid rgba(52, 211, 153, 0.3);
    border-right: 1px solid rgba(52, 211, 153, 0.3);
}

.comparison-table td.col-highlight {
    background: rgba(52, 211, 153, 0.06);
    font-weight: 600;
    color: var(--text-pure);
    border-left: 1px solid rgba(52, 211, 153, 0.2);
    border-right: 1px solid rgba(52, 211, 153, 0.2);
}

.comparison-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.02);
}

.badge-check {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-mint);
    font-weight: 600;
}

.badge-cross {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #f87171;
    font-weight: 500;
}

.pillars-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.pillar-box {
    background: rgba(14, 35, 25, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px 26px;
    transition: all 0.3s ease;
}

.pillar-box:hover {
    border-color: rgba(52, 211, 153, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
}

.pillar-num {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    color: var(--accent-mint);
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 12px;
}

.pillar-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   10. BLOG PAGE (MAGZIN INSPIRED EDITORIAL GRID)
   -------------------------------------------------------------------------- */
.blog-editorial-section {
    padding: 80px 0 120px 0;
    background: var(--bg-deeper);
}

.magzin-categories-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 16px;
    margin-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.category-pill-btn {
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.category-pill-btn:hover,
.category-pill-btn.active {
    background: var(--accent-mint);
    border-color: var(--accent-mint);
    color: #030504;
    box-shadow: 0 0 14px var(--accent-glow);
}

/* Magazine Featured Lead Card */
.magzin-featured-story {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    background: rgba(14, 35, 25, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    overflow: hidden;
    padding: 32px;
    margin-bottom: 56px;
    transition: all 0.35s ease;
}

.magzin-featured-story:hover {
    border-color: rgba(52, 211, 153, 0.35);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 25px var(--accent-glow);
}

.featured-story-visual {
    position: relative;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
}

.featured-story-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.magzin-featured-story:hover .featured-story-img {
    transform: scale(1.05);
}

.featured-story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.story-cat-badge {
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(52, 211, 153, 0.15);
    color: var(--accent-mint);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
}

.story-read-time {
    font-size: 12px;
    color: var(--text-muted);
}

.featured-story-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-pure);
    margin-bottom: 16px;
}

.featured-story-excerpt {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Editorial 3-Column Grid */
.magzin-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.magzin-card {
    background: rgba(14, 35, 25, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.35s ease;
}

.magzin-card:hover {
    border-color: rgba(52, 211, 153, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 20px var(--accent-glow);
}

.magzin-card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.magzin-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.magzin-card:hover .magzin-card-img {
    transform: scale(1.05);
}

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

.magzin-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-pure);
    margin-bottom: 12px;
}

.magzin-card-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex: 1;
}

.magzin-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
    font-size: 12.5px;
    color: var(--accent-mint);
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   11. CONTACT US PAGE (INFLUENCA INSPIRED)
   -------------------------------------------------------------------------- */
.contact-influenca-section {
    padding: 80px 0 120px 0;
    background: var(--bg-deeper);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 64px;
}

.contact-info-card {
    background: rgba(14, 35, 25, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(52, 211, 153, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px var(--accent-glow);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(52, 211, 153, 0.12);
    color: var(--accent-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 8px;
}

.contact-card-val {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-mint);
    margin-bottom: 10px;
}

.contact-card-desc {
    font-size: 13px;
    line-height: 1.55;
    color: var(--text-secondary);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: flex-start;
}

.contact-form-card {
    background: rgba(14, 35, 25, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 26px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.contact-form-heading {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 8px;
}

.contact-form-sub {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

.form-status-message {
    display: none;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 22px;
    animation: fadeInStatus 0.35s ease-out;
}

.form-status-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(52, 211, 153, 0.45);
    color: #34d399;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.15);
}

.form-status-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.45);
    color: #fca5a5;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.15);
}

@keyframes fadeInStatus {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--text-pure);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 13px 18px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-pure);
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.25s ease;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent-mint);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 12px var(--accent-glow);
}

.form-select option {
    background: #0d2117;
    color: #faf6ee;
}

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

.contact-sidebar-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.map-embed-card {
    background: rgba(14, 35, 25, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    overflow: hidden;
    height: 320px;
}

.map-embed-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) contrast(110%);
}

.studio-hours-card {
    background: rgba(14, 35, 25, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
}

.studio-hours-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 14px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.hours-row:last-child {
    border-bottom: none;
}

/* --------------------------------------------------------------------------
   12. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .magzin-articles-grid,
    .about-craftsmanship-grid,
    .pillars-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 992px) {
    .top-nav {
        padding: 14px 24px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(8, 22, 15, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(52, 211, 153, 0.2);
        padding: 24px 32px;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .testimonials-grid,
    .magzin-featured-story,
    .contact-main-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .about-split-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .decorative-dotted-path,
    .why-dotted-trail {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-nav {
        padding: 12px 20px;
    }

    .brand-logo-img {
        height: 40px;
    }

    .btn-nav-contact {
        display: none;
    }

    .subpage-title {
        font-size: 32px;
    }

    .testimonials-heading,
    .faq-heading {
        font-size: 28px;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .magzin-articles-grid,
    .about-craftsmanship-grid,
    .pillars-grid-6,
    .stats-grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 0 20px 48px 20px;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 0 20px;
    }

    .transformation-section {
        padding: 60px 0;
    }

    .about-why-section {
        padding: 60px 0;
    }

    .testimonials-section {
        padding: 60px 0;
    }

    .faq-section {
        padding: 60px 0;
    }

    .site-footer {
        padding: 50px 0 0 0;
    }
}

/* Responsive grid for Why Choose Us cards */
@media (max-width: 1024px) {
    .why-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .why-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}