/*
Theme Name: Aartha Setu Child
Theme URI: https://aarthasetu.com
Description: A refined, minimal, high-end child theme for Aartha Setu, based on Astra.
Author: Cipher Stack Private Limited
Author URI: https://cipherstack.in
Template: astra
Version: 1.0.0
Text Domain: aarthasetu
*/

/* =========================================
   1. FONTS & @FONT-FACE
   ========================================= */

/* Fonts are loaded via Google Fonts in functions.php */


:root {
    /* =========================================
     3. COLOR PALETTE
     ========================================= */
    /* Core Colors */
    --color-black: #0D0D0F;
    /* Black Obsidian */
    --color-white: #FDFDFD;
    /* White Porcelain */
    --color-taupe: #D8CFC4;
    /* Taupe Sand */
    --color-gold: #FABE34;
    /* Gold Accent - Vibrant Amber */
    --color-slate-whisper: #A9B0B6;
    /* Slate Whisper */

    /* Semantic Tokens */
    --color-success: #6ABF69;
    --color-error: #D9584E;
    --color-warning: #E09C30;
    --color-info: #5A93B8;

    /* =========================================
     2. TYPOGRAPHY
     ========================================= */
    /* Font Families - Google Fonts Replacements */
    --font-display: 'Outfit', ui-sans-serif, system-ui, sans-serif;
    --font-body: 'Spectral', 'Times New Roman', ui-serif, serif;
    --font-accent: 'Inter', ui-sans-serif, system-ui, sans-serif;

    /* Typographic Scale */
    --type-display: 4.0rem;
    --type-h1: 3.2rem;
    --type-h2: 2.6rem;
    --type-h3: 2.0rem;
    --type-body-lg: 1.25rem;
    --type-body: 1.0rem;
    --type-caption: 0.85rem;

    /* =========================================
     4. SPACING & LAYOUT
     ========================================= */
    --space-xxs: 4px;
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-xxl: 64px;

    /* Layout Containers */
    --container-max: 1440px;
    --container-gutter: 24px;
}



/* =========================================
   UTILITIES
   ========================================= */
.sr-only,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================
   global-styles
   ========================================= */

body {
    background-color: var(--color-white);
    color: var(--color-black);
    font-family: var(--font-body);
    font-size: var(--type-body);
    line-height: 1.6;
    margin: 0 !important;
    padding: 0 !important;
}

/* =========================================
   FIRST PRINCIPLES: FORCE HERO TO TOP
   The header is position:fixed, so it floats.
   The hero must start at viewport top (y=0).
   ========================================= */

/* Nuclear reset for ALL possible wrappers */
html,
body,
#page,
.site,
.ast-container,
.site-content,
.content-area,
.site-main,
.homepage-main,
main,
#primary {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Override Astra's fixed header spacing if any */
.ast-separate-container .site-main,
.ast-plain-container .site-main,
.ast-page-builder-template .site-main,
.ast-separate-container .ast-article-single,
.ast-separate-container article {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* The hero section itself - absolutely no top spacing */
.hero-innovative {
    margin: 0 !important;
    padding: 0 !important;
    /* Force it to the top */
    position: relative;
    top: 0;
}

/* The content inside the hero gets padding for header clearance */
.hero-innovative .hero-container {
    padding-top: 140px;
    /* Space so text doesn't hide under fixed header */
    padding-bottom: 100px;
}

/* WordPress Admin Bar Override - only affects admin, not front-end visitors */
.admin-bar .hero-innovative {
    margin-top: 0 !important;
}

/* If logged in with admin bar, account for it in header */
.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--color-black);
    font-weight: 700;
}

h1 {
    font-size: var(--type-h1);
    line-height: 1.18;
}

h2 {
    font-size: var(--type-h2);
    line-height: 1.24;
}

h3 {
    font-size: var(--type-h3);
    line-height: 1.28;
}

/* =========================================
   7. ELEMENTS
   ========================================= */

/* Buttons */
.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
    font: 700 var(--type-body-lg) var(--font-display);
    /* Using display font for bold feel if suitable, or body */
    padding: var(--space-sm) var(--space-lg);
    border-radius: 0;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 150ms cubic-bezier(0.4, 0.0, 0.2, 1);
}

.btn-primary:hover {
    background: #E5AB2A;
    /* approx 8% darken of #FABE34 */
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--color-slate-whisper);
    color: var(--color-slate-whisper);
    font: 700 var(--type-body-lg) var(--font-display);
    padding: var(--space-sm) var(--space-lg);
    border-radius: 0;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 150ms cubic-bezier(0.4, 0.0, 0.2, 1);
}

.btn-secondary:hover {
    background: var(--color-slate-whisper);
    color: var(--color-white);
}

/* =========================================
   11. COMPONENTS
   ========================================= */

/* Cards */
.card {
    background: var(--color-white);
    border: 1px solid var(--color-slate-whisper);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    padding: var(--space-lg);
}

/* =========================================
   12. HEADER STYLES (INNOVATIVE 2026 REDESIGN)
   =========================================
   First Principles Approach:
   - Spatial depth with ambient layers
   - Asymmetric visual hierarchy
   - Micro-interactions that feel alive
   - Premium minimalism with intentional restraint
   ========================================= */

/* --- Base Header Structure --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    /* Generous vertical breathing room */
    padding: clamp(16px, 2.5vh, 28px) 0;

    /* Initial transparent state */
    background: transparent;

    transition:
        background 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        padding 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        backdrop-filter 0.5s ease;
}

/* Scrolled State - Glassmorphism */
.site-header.scrolled {
    background: rgba(253, 253, 253, 0.72);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    padding: 12px 0;
    box-shadow:
        0 1px 0 rgba(0, 0, 0, 0.03),
        0 8px 32px -8px rgba(0, 0, 0, 0.05);
}

/* --- Ambient Background Layer --- */
.header-ambient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.site-header:hover .header-ambient {
    opacity: 1;
}

.ambient-gradient {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse at center,
            rgba(201, 166, 107, 0.06) 0%,
            transparent 70%);
    filter: blur(40px);
    animation: ambientPulse 8s ease-in-out infinite;
}

@keyframes ambientPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

/* --- Header Frame Container --- */
.header-frame {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 48px);

    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: clamp(24px, 4vw, 48px);
}

/* --- Logo Identity Zone --- */
.header-identity {
    position: relative;
    z-index: 10;
}

.logo-anchor {
    position: relative;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-mark {
    height: clamp(60px, 7.5vh, 78px);
    width: auto;
    display: block;
    transition:
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.4s ease;
    position: relative;
    z-index: 2;
}

.logo-anchor:hover .logo-mark {
    transform: scale(1.02);
}

/* Logo Pulse Effect */
.logo-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(201, 166, 107, 0.12) 0%,
            transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.logo-anchor:hover .logo-pulse {
    opacity: 1;
    animation: logoPulseAnim 2s ease-out infinite;
}

@keyframes logoPulseAnim {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* --- Navigation Spine --- */
.nav-spine {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Desktop Pill Navigation */
.nav-capsule {
    position: relative;
    background: rgba(13, 13, 15, 0.03);
    border-radius: 100px;
    padding: 6px 8px;

    transition:
        background 0.4s ease,
        box-shadow 0.4s ease;
}

.nav-capsule:hover {
    background: rgba(13, 13, 15, 0.05);
    box-shadow:
        inset 0 0 0 1px rgba(13, 13, 15, 0.04),
        0 4px 16px -4px rgba(0, 0, 0, 0.04);
}

.nav-capsule-inner {
    display: flex;
    align-items: center;
}

.nav-capsule ul,
.nav-capsule #primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.nav-capsule li {
    position: relative;
}

.nav-capsule li a {
    display: flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 100px;

    text-decoration: none;
    color: var(--color-black);
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;

    position: relative;
    overflow: hidden;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-label {
    position: relative;
    z-index: 2;
}

/* Nav Link Cursor Indicator */
.nav-cursor {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 4px;
    height: 4px;
    background: var(--color-gold);
    border-radius: 50%;
    opacity: 0;
    transition:
        opacity 0.3s ease,
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-capsule li a:hover {
    color: var(--color-gold);
    background: rgba(201, 166, 107, 0.06);
    transform: translateY(-1px);
}

.nav-capsule li a:hover .nav-cursor {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.nav-capsule li.current-menu-item a {
    color: var(--color-gold);
    background: rgba(201, 166, 107, 0.08);
}

.nav-capsule li.current-menu-item a .nav-cursor {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

/* Capsule Active State Indicator */
.capsule-indicator {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-capsule:hover .capsule-indicator {
    opacity: 0.6;
}

/* --- CTA Action Node --- */
.header-actions {
    display: flex;
    align-items: center;
}

.cta-node {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 28px;

    background: var(--color-gold);
    color: var(--color-black);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-decoration: none;

    border-radius: 100px;
    overflow: hidden;

    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    box-shadow:
        0 4px 12px -2px rgba(201, 166, 107, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-text {
    position: relative;
    z-index: 3;
}

.cta-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border: 1px solid rgba(201, 166, 107, 0.3);
    border-radius: 100px;
    opacity: 0;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
    pointer-events: none;
}

.cta-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.35) 50%,
            transparent 100%);
    z-index: 2;
    transition: left 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-node:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 8px 24px -4px rgba(201, 166, 107, 0.4),
        0 2px 6px rgba(201, 166, 107, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-node:hover .cta-ring {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.cta-node:hover .cta-glow {
    left: 100%;
}

.cta-node:active {
    transform: translateY(0) scale(0.98);
}

/* --- Mobile Navigation Trigger --- */
.nav-trigger {
    display: none;
    position: relative;
    z-index: 1010;

    width: 48px;
    height: 48px;

    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;

    transition: transform 0.3s ease;
}

.nav-trigger:hover {
    transform: scale(1.05);
}

.trigger-lines {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
    height: 100%;
}

.trigger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-black);
    border-radius: 2px;
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.3s ease,
        width 0.3s ease;
}

.trigger-line:first-child {
    transform-origin: center;
}

.trigger-line:last-child {
    width: 16px;
    transform-origin: center;
}

/* Active State - XIcon */
.nav-trigger.active .trigger-line:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav-trigger.active .trigger-line:last-child {
    width: 22px;
    transform: translateY(-4px) rotate(-45deg);
}

/* --- Mobile Navigation Panel --- */
.mobile-nav-panel {
    display: none;
}

/* --- Scroll Progress Indicator --- */
.scroll-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(0, 0, 0, 0.03);
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.site-header.scrolled .scroll-progress {
    opacity: 1;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,
            var(--color-gold) 0%,
            var(--color-taupe) 100%);
    transition: width 0.1s linear;
}

/* =========================================
   RESPONSIVE HEADER STYLES
   ========================================= */

@media (max-width: 1024px) {

    /* Body Lock */
    body.menu-open {
        overflow: hidden;
    }

    .site-header {
        padding: 12px 0;
    }

    .site-header.scrolled {
        padding: 10px 0;
    }

    .header-frame {
        grid-template-columns: auto 1fr auto;
        padding: 0 20px;
    }

    /* Hide Desktop Navigation */
    .nav-capsule {
        display: none;
    }

    .header-actions {
        display: none;
    }

    /* Show Mobile Trigger */
    .nav-trigger {
        display: flex;
    }

    /* Mobile Panel */
    .mobile-nav-panel {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;

        background: var(--color-white);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition:
            opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
            visibility 0.5s;

        z-index: 1005;
    }

    .nav-spine.toggled .mobile-nav-panel {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    .mobile-nav-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding: 100px 32px 60px;
        position: relative;
    }

    /* Mobile Navigation Links */
    .mobile-nav-links {
        text-align: center;
    }

    .mobile-nav-links ul,
    .mobile-nav-links #mobile-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .mobile-nav-links li {
        opacity: 0;
        transform: translateY(24px);
        transition:
            opacity 0.4s ease,
            transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-spine.toggled .mobile-nav-links li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-spine.toggled .mobile-nav-links li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-spine.toggled .mobile-nav-links li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-spine.toggled .mobile-nav-links li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-spine.toggled .mobile-nav-links li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-spine.toggled .mobile-nav-links li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-spine.toggled .mobile-nav-links li {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-nav-links a {
        font-family: var(--font-display);
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        font-weight: 500;
        color: var(--color-black);
        text-decoration: none;
        letter-spacing: -0.01em;

        display: inline-block;
        position: relative;
        padding: 8px 0;

        transition: color 0.3s ease;
    }

    .mobile-nav-links a::after {
        content: '';
        position: absolute;
        bottom: 4px;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--color-gold);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-nav-links a:hover {
        color: var(--color-gold);
    }

    .mobile-nav-links a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .mobile-nav-links li.current-menu-item a {
        color: var(--color-gold);
    }

    .mobile-nav-links li.current-menu-item a::after {
        transform: scaleX(1);
    }

    /* Mobile CTA */
    .mobile-nav-cta {
        margin-top: 48px;
        opacity: 0;
        transform: translateY(20px);
        transition:
            opacity 0.4s ease,
            transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        transition-delay: 0.4s;
    }

    .nav-spine.toggled .mobile-nav-cta {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-enquire-btn {
        display: inline-block;
        padding: 16px 40px;

        background: var(--color-gold);
        color: var(--color-black);
        font-family: var(--font-display);
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        text-decoration: none;

        border-radius: 100px;

        box-shadow: 0 8px 24px -4px rgba(201, 166, 107, 0.3);

        transition:
            transform 0.3s ease,
            box-shadow 0.3s ease;
    }

    .mobile-enquire-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px -4px rgba(201, 166, 107, 0.4);
    }

    /* Mobile Brand Watermark */
    .mobile-nav-brand {
        position: absolute;
        bottom: 32px;
        left: 50%;
        transform: translateX(-50%);

        opacity: 0;
        transition: opacity 0.5s ease;
        transition-delay: 0.5s;
    }

    .nav-spine.toggled .mobile-nav-brand {
        opacity: 1;
    }

    .brand-watermark {
        font-family: var(--font-display);
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.3em;
        color: var(--color-slate-whisper);
    }

    /* Header State When Menu Open */
    body.menu-open .site-header {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
    }

    body.menu-open .header-ambient,
    body.menu-open .scroll-progress {
        display: none;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
    .header-frame {
        padding: 0 16px;
    }

    .logo-mark {
        height: 54px;
    }

    .nav-trigger {
        width: 40px;
        height: 40px;
    }

    .trigger-line {
        width: 20px;
    }

    .nav-trigger.active .trigger-line:last-child {
        width: 20px;
    }
}

/* =========================================
   13. FOOTER STYLES (PREMIUM 2026 REDESIGN)
   ========================================= */

.site-footer {
    background-color: var(--color-black);
    color: var(--color-white);
    padding-top: var(--space-xxl);
    padding-bottom: 0;
    font-family: var(--font-body);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

/* Decorative Background Layers */
.footer-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.footer-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.footer-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-gold) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: orbFloat 20s ease-in-out infinite;
}

.footer-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-taupe) 0%, transparent 70%);
    bottom: 20%;
    left: -100px;
    animation: orbFloat 25s ease-in-out infinite reverse;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -20px) scale(1.05);
    }
}

.footer-noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    mix-blend-mode: overlay;
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-gutter);
    position: relative;
    z-index: 2;
}

/* --- Premium CTA Section --- */
.footer-cta-section {
    padding-bottom: 100px;
    margin-bottom: 80px;
    position: relative;
}

.footer-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: var(--space-xl);
}

.cta-text-wrapper {
    max-width: 700px;
}

.cta-eyebrow {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: 30px;
}

.cta-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background: var(--color-gold);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.1;
    color: var(--color-white);
    margin: 0;
    display: flex;
    flex-direction: column;
}

.heading-line {
    display: block;
}

.footer-heading em {
    font-family: 'Spectral', serif;
    font-style: italic;
    color: var(--color-slate-whisper);
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-heading:hover em {
    color: var(--color-gold);
}

.cta-action-wrapper {
    flex-shrink: 0;
}

.footer-btn {
    padding: 18px 36px;
    font-size: 0.9rem;
    border-radius: 50px;
    background: var(--color-white);
    color: var(--color-black);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
}

.footer-btn .btn-text {
    position: relative;
    z-index: 2;
}

.footer-btn .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-btn:hover {
    background: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 166, 107, 0.3);
}

.footer-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Animated Gradient Divider */
.footer-gradient-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.05) 10%,
            var(--color-gold) 50%,
            rgba(255, 255, 255, 0.05) 90%,
            transparent 100%);
    background-size: 200% 100%;
    animation: gradientSlide 8s linear infinite;
}

@keyframes gradientSlide {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* --- Main Content Area --- */
.footer-main-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

/* Brand Column */
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer-logo-link {
    display: inline-block;
    transition: transform 0.4s ease;
}

.footer-logo-link:hover {
    transform: scale(1.02);
}

.footer-logo .footer-logo-img {
    height: 120px;
    width: auto;
    filter: brightness(1) invert(0);
    transition: filter 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img {
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-family: 'Spectral', serif;
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--color-slate-whisper);
    opacity: 0.9;
    max-width: 300px;
}

.footer-contact-actions {
    display: flex;
    gap: 12px;
    margin-top: var(--space-md);
}

.action-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.action-icon .icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.action-icon svg {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.action-icon:hover {
    color: var(--color-black);
    transform: translateY(-4px);
}

.action-icon:hover .icon-bg {
    background: var(--color-gold);
    border-color: var(--color-gold);
    transform: scale(1);
}

.action-icon:hover svg {
    transform: scale(1.1);
}

/* Links Wrapper */
.footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 40px;
}

/* Footer Links Columns - Premium Styling */
.footer-col h4 {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    margin-bottom: 28px;
    opacity: 1;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul li a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-col ul li a .link-text {
    position: relative;
}

.footer-col ul li a::before {
    content: '';
    position: absolute;
    left: -16px;
    width: 8px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--color-gold);
    transform: translateX(8px);
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Address Column */
.footer-col-address .address {
    font-family: 'Spectral', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.address-icon {
    flex-shrink: 0;
    color: var(--color-gold);
    margin-top: 4px;
}

/* --- Divider Line --- */
.footer-divider-line {
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.08) 20%,
            rgba(255, 255, 255, 0.08) 80%,
            transparent 100%);
    margin-bottom: 32px;
}

/* --- Bottom Bar --- */
.footer-bottom-bar {
    padding: 28px 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.copyright {
    font-family: var(--font-accent);
    letter-spacing: 0.02em;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 16px;
}

.legal-separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-white);
}

.footer-legal a:hover::after {
    width: 100%;
}

/* --- Animated Marquee Brand Anchor --- */
.footer-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.footer-marquee {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}

.footer-marquee:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

.marquee-text {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.footer-marquee:hover .marquee-text {
    -webkit-text-stroke-color: rgba(255, 255, 255, 0.15);
}

.marquee-dot {
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: rgba(201, 166, 107, 0.2);
}

/* Mobile Menu Footer Accent */
.mobile-menu-footer {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    text-align: center;
    pointer-events: none;
}

.footer-accent-text {
    font-family: var(--font-display);
    font-size: 2rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* --- Footer Responsive --- */
@media (max-width: 1024px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-brand-col {
        align-items: flex-start;
    }

    .footer-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Mobile Menu Footer Display */
    .main-navigation .mobile-menu-footer {
        display: block;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease;
    }

    .main-navigation.toggled .mobile-menu-footer {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.5s;
    }
}

@media (max-width: 768px) {
    .footer-cta-section {
        padding-bottom: 60px;
        margin-bottom: 50px;
    }

    .cta-eyebrow {
        font-size: 0.7rem;
    }

    .footer-links-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-col-address {
        grid-column: span 2;
    }

    .footer-bottom-bar {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 8px;
        white-space: nowrap;
        font-size: 0.7rem;
        padding-bottom: 80px;
    }

    .footer-legal {
        gap: 10px;
    }

    .legal-separator {
        display: none;
    }

    .footer-legal a {
        font-size: 0.7rem;
    }

    .copyright {
        font-size: 0.7rem;
    }

    .marquee-text {
        font-size: clamp(3rem, 8vw, 5rem);
    }

    .marquee-content {
        gap: 24px;
        padding-right: 24px;
    }

    .marquee-dot {
        font-size: 1.2rem;
    }
}

/* =========================================
   14. PAGE: CONTACT US
   ========================================= */

/* Common Layout Wrapper for Pages */
.layout-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-gutter);
}

/* Hero Section */
.contact-hero {
    padding: var(--space-xxl) 0;
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Subtle separation */
}

.contact-hero .page-title {
    font-size: var(--type-display);
    /* Huge 4rem font */
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    max-width: 800px;
}

.contact-hero .hero-intro {
    font-size: var(--type-body-lg);
    color: var(--color-black);
    max-width: 600px;
    opacity: 0.8;
}

/* Content Wrapper */
.contact-content-wrapper {
    padding: var(--space-xxl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Equal split */
    gap: var(--space-xxl);
}

/* Left Column: Info */
.contact-info {
    padding-right: var(--space-xl);
}

.info-group {
    margin-bottom: var(--space-xl);
}

.info-group h3 {
    font-family: var(--font-accent);
    font-size: var(--type-h3);
    margin-bottom: var(--space-md);
    color: var(--color-black);
}

.info-group address,
.info-group p {
    font-style: normal;
    font-family: var(--font-body);
    font-size: var(--type-body-lg);
    /* Larger text for readability */
    color: var(--color-black);
    line-height: 1.6;
}

.contact-link {
    color: var(--color-black);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.contact-link:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

/* Right Column: Form */
.contact-form-container h3 {
    font-size: var(--type-h3);
    margin-bottom: var(--space-lg);
    font-family: var(--font-display);
}

/* Form Styles */
.premium-form .form-row {
    margin-bottom: var(--space-lg);
}

.premium-form label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
    color: var(--color-black);
}

.premium-form input[type="text"],
.premium-form input[type="email"],
.premium-form select,
.premium-form textarea {
    width: 100%;
    padding: var(--space-md);
    background: transparent;
    border: 1px solid var(--color-slate-whisper);
    border-radius: 0;
    /* Square edges for premium feel */
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-black);
    transition: all 0.2s ease;
}

/* Focus States */
.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 1px var(--color-gold);
    /* Subtle glow ring */
}

/* Select Styling */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '↓';
    /* Simple arrow, or use an SVG/icon if available */
    position: absolute;
    right: var(--space-md);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-family: sans-serif;
    font-size: 0.8rem;
    color: var(--color-black);
}

.premium-form select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.form-actions {
    margin-top: var(--space-xl);
}

/* Responsive Contact */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile/tablet */
        gap: var(--space-xl);
    }

    .contact-info {
        padding-right: 0;
        margin-bottom: var(--space-lg);
    }

    .contact-hero .page-title {
        font-size: var(--type-h1);
        /* Smaller on mobile */
    }
}

/* =========================================
   15. HOMEPAGE STYLES (INNOVATIVE 2026)
   ========================================= */

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 160px 0 100px;
    background: var(--color-white);
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-gutter);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: var(--space-xxl);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--color-black);
}

.highlight-text {
    color: var(--color-gold);
    font-family: 'Spectral', serif;
    font-style: italic;
    font-weight: 300;
}

.hero-subtitle {
    font-size: var(--type-body-lg);
    color: #555;
    /* Contrast fix */
    max-width: 500px;
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.arrow-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.btn-secondary:hover .arrow-icon {
    transform: translateX(4px);
}

/* Hero Visual - Abstract & Glass */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250, 190, 52, 0.08) 0%, transparent 70%);
    position: absolute;
    animation: breathAnim 8s ease-in-out infinite;
}

@keyframes breathAnim {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.visual-card-glass {
    position: relative;
    width: 280px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.hero-visual:hover .visual-card-glass {
    transform: rotate(0deg) scale(1.05);
}

.glass-icon {
    font-size: 3rem;
    background: var(--color-white);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.glass-text {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--color-black);
}

.hero-background-noise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* --- Services Strip --- */
.services-section {
    padding: var(--space-xxl) 0;
    background: #FAFAFA;
    /* Very light gray */
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xxl);
}

.section-title {
    font-size: var(--type-h2);
    margin-bottom: var(--space-md);
}

.section-desc {
    color: #666;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.service-card {
    background: var(--color-white);
    padding: var(--space-xl);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    border-color: var(--color-gold);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(250, 190, 52, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4A017;
    /* Darker gold for icon */
    margin-bottom: var(--space-lg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-sm);
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.service-link {
    font-family: var(--font-accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--color-black);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding-bottom: 2px;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.service-card:hover .service-link::after {
    width: 100%;
}

/* --- About Section (Asymmetric) --- */
.about-section {
    padding: 120px 0;
    background: var(--color-white);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.logo-abstract {
    position: relative;
    width: 100%;
    height: 400px;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bridge-arch {
    width: 200px;
    height: 100px;
    border-top: 4px solid var(--color-gold);
    border-radius: 200px 200px 0 0;
    position: absolute;
    bottom: 100px;
}

.bridge-arch.delay {
    width: 300px;
    height: 150px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 300px 300px 0 0;
    bottom: 80px;
}

.about-content .subsection-title {
    font-family: 'Spectral', serif;
    font-style: italic;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
    font-weight: 300;
}

.text-content p {
    margin-bottom: var(--space-md);
    font-size: 1.1rem;
    color: #444;
}

.text-link {
    display: inline-block;
    margin-top: var(--space-md);
    font-family: var(--font-accent);
    color: var(--color-black);
    text-decoration: underline;
    text-decoration-color: var(--color-gold);
    text-underline-offset: 4px;
    font-weight: 600;
    transition: color 0.2s;
}

.text-link:hover {
    color: var(--color-gold);
}

/* --- Process Section --- */
.process-section {
    padding: 100px 0;
    background: #0D0D0F;
    color: var(--color-white);
}

.process-section .section-title,
.process-section .section-desc {
    color: var(--color-white);
}

.center-text {
    text-align: center;
}

.process-timeline {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.process-step {
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.step-number {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--color-black);
    -webkit-text-stroke: 1px var(--color-gold);
    margin-bottom: var(--space-md);
    background: #0D0D0F;
    /* Hide line behind number */
    width: max-content;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--color-white);
}

.step-content p {
    font-size: 0.9rem;
    color: #888;
}

/* --- Goals Section --- */
.goals-section {
    padding: 100px 0;
    background: rgb(255, 245, 230);
    /* Very light gold tint */
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.goal-item {
    background: var(--color-white);
    padding: var(--space-lg);
    text-align: center;
    border-radius: 8px;
    transition: transform 0.2s ease;
    cursor: default;
}

.goal-item:hover {
    transform: translateY(-4px);
}

.goal-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: var(--space-sm);
}

.goal-label {
    font-weight: 600;
    font-size: 0.9rem;
}

/* --- CTA Section --- */
.cta-section {
    padding: 120px 0;
    background: var(--color-white);
    text-align: center;
}

.cta-box {
    max-width: 600px;
    margin: 0 auto;
}

.cta-form-preview {
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: #F8F8F8;
    border-radius: 12px;
}

.simple-lead-form {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.simple-lead-form input {
    flex: 1;
    min-width: 200px;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.simple-lead-form button {
    flex: 0 0 auto;
    width: 100%;
}


/* --- Responsive Homepage --- */
@media (max-width: 900px) {

    .hero-container,
    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
        height: 300px;
    }

    .visual-circle {
        width: 300px;
        height: 300px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-timeline::before {
        width: 1px;
        height: 100%;
        left: 36px;
        top: 0;
    }

    .step-number {
        margin-bottom: 8px;
    }
}

/* --- Animations & Interactions --- */
.bridge-arch {
    transform: scale(0);
    transform-origin: bottom center;
    opacity: 0;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1s ease;
}

.bridge-arch.in-view {
    transform: scale(1);
    opacity: 1;
}

.bridge-arch.delay.in-view {
    transition-delay: 0.2s;
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   16. HERO INNOVATION (2026 REDESIGN)
   ========================================= */

.hero-innovative {
    position: relative;
    padding: 0;
    background: #FDFBF7;
    /* Warm off-white */
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Animated Background Mesh --- */
.hero-bg-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: meshFloat 20s ease-in-out infinite;
}

.mesh-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(250, 190, 52, 0.3) 0%, transparent 70%);
    top: -10%;
    right: -10%;
}

.mesh-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(216, 207, 196, 0.4) 0%, transparent 70%);
    bottom: -10%;
    left: -10%;
    animation-delay: -10s;
}

@keyframes meshFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* --- Content Styling --- */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-gutter);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Centered Hero Variant */
.hero-centered .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
}

.hero-centered .hero-subtitle {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Status Pill */
.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 100px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(250, 190, 52, 0.2);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0px rgba(250, 190, 52, 0.4);
    }

    100% {
        box-shadow: 0 0 0 6px rgba(250, 190, 52, 0);
    }
}

/* Hero Typography */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 5.5vw, 5rem);
    line-height: 1.05;
    color: var(--color-black);
    margin-bottom: 32px;
}

.title-line {
    display: block;
}

.serif-italic {
    font-family: 'Spectral', serif;
    font-weight: 300;
    font-style: italic;
    color: var(--color-black);
}

.highlight-innovative {
    position: relative;
    color: var(--color-gold);
    z-index: 1;
    white-space: nowrap;
}

.highlight-innovative::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 20px;
    background: rgba(250, 190, 52, 0.15);
    z-index: -1;
    transform: skewX(-12deg);
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.6;
    max-width: 540px;
    margin-bottom: 48px;
}

/* Innovative Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 56px;
}

.btn-innovative {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Primary Button - Refined Gold Accent */
.btn-primary-inv {
    background: var(--color-gold);
    color: var(--color-black);
    border: 2px solid var(--color-gold);
    box-shadow: 0 4px 16px -4px rgba(250, 190, 52, 0.3);
}

.btn-primary-inv .btn-text {
    position: relative;
    z-index: 1;
}

/* Hide the blob - not using it anymore */
.btn-blob {
    display: none;
}

.btn-primary-inv:hover {
    background: var(--color-black);
    color: var(--color-gold);
    border-color: var(--color-black);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.2);
}

.btn-primary-inv:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.15);
}

/* Secondary Button - Elegant Underline Effect */
.btn-secondary-inv {
    background: transparent;
    color: var(--color-black);
    border: 2px solid var(--color-black);
    gap: 8px;
}

.btn-secondary-inv .arrow-icon {
    transition: transform 0.3s ease;
}

.btn-secondary-inv:hover {
    background: var(--color-black);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.15);
}

.btn-secondary-inv:hover .arrow-icon {
    transform: translateX(4px);
}

.btn-secondary-inv:active {
    transform: translateY(-1px);
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatars {
    display: flex;
    margin-right: 8px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--color-white);
    margin-left: -12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.avatar:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 0.9rem;
    color: #666;
}

.trust-text strong {
    color: var(--color-black);
    font-weight: 700;
}

/* --- 3D Visual Stage --- */
.hero-visual-3d {
    position: relative;
    height: 600px;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-stage {
    position: relative;
    width: 400px;
    height: 500px;
    transform-style: preserve-3d;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease-out;
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 24px 48px -12px rgba(50, 50, 93, 0.18);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    padding: 24px;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

/* Specific Card Styles */
.card-main {
    width: 320px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(40px);
    z-index: 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.card-1 {
    width: 160px;
    height: 160px;
    top: 10%;
    right: -20px;
    transform: translateZ(80px) rotate(10deg);
    z-index: 20;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(250, 190, 52, 0.1);
    border-color: var(--color-gold);
    animation: floatCard1 6s ease-in-out infinite;
}

.card-2 {
    width: 140px;
    height: 140px;
    bottom: 0%;
    left: -40px;
    transform: translateZ(60px) rotate(-15deg);
    z-index: 20;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    animation: floatCard2 7s ease-in-out infinite;
}

@keyframes floatCard1 {

    0%,
    100% {
        transform: translateZ(80px) rotate(10deg) translateY(0);
    }

    50% {
        transform: translateZ(80px) rotate(8deg) translateY(-15px);
    }
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: translateZ(60px) rotate(-15deg) translateY(0);
    }

    50% {
        transform: translateZ(60px) rotate(-12deg) translateY(15px);
    }
}

/* Card Content */
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.card-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
    font-weight: 600;
}

.card-value {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--color-black);
}

.card-logo-mark {
    width: 48px;
    height: 48px;
    background: var(--color-gold);
    color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 12px;
    margin-bottom: auto;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 4px;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--color-black);
    margin-bottom: 24px;
}

/* Graph Bars */
.card-graph {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100px;
}

.graph-bar {
    flex: 1;
    background: #E0E0E0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.graph-bar.active {
    background: var(--color-gold);
}

.graph-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
}

/* Decorative Coins */
.floating-coin {
    position: absolute;
    width: 64px;
    height: 64px;
    background: radial-gradient(circle at 30% 30%, #FFD700, #FDB931);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.8rem;
    color: #795503;
    box-shadow:
        inset -4px -4px 8px rgba(0, 0, 0, 0.2),
        inset 4px 4px 8px rgba(255, 255, 255, 0.5),
        0 10px 20px rgba(0, 0, 0, 0.15);
    z-index: 30;
}

.coin-1 {
    top: 20%;
    left: -20px;
    transform: translateZ(120px) rotate(-20deg);
    animation: floatCoin1 5s ease-in-out infinite;
}

.coin-2 {
    bottom: 15%;
    right: -10px;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    transform: translateZ(100px) rotate(30deg);
    animation: floatCoin2 6s ease-in-out infinite reverse;
}

@keyframes floatCoin1 {

    0%,
    100% {
        transform: translateZ(120px) rotate(-20deg) translateY(0);
    }

    50% {
        transform: translateZ(120px) rotate(-10deg) translateY(-20px);
    }
}

@keyframes floatCoin2 {

    0%,
    100% {
        transform: translateZ(100px) rotate(30deg) translateY(0);
    }

    50% {
        transform: translateZ(100px) rotate(40deg) translateY(15px);
    }
}

/* Animations */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        padding-top: 60px;
        text-align: center;
    }

    .hero-actions,
    .hero-trust,
    .reveal-item {
        justify-content: center;
    }

    .status-pill {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual-3d {
        height: 400px;
        margin-top: 40px;
    }

    .visual-stage {
        transform: scale(0.8) rotateY(0);
    }
}

/* =========================================
   17. WEALTH SPECTRUM (ACCORDION SECTION)
   ========================================= */

.wealth-spectrum-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #FDFBF7 0%, #FAFAFA 100%);
    position: relative;
    overflow: hidden;
}

.spectrum-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-gutter);
}

.spectrum-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.spectrum-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    color: var(--color-black);
}

.spectrum-subtitle {
    position: relative;
    display: inline-block;
    padding-top: 24px;
}

.line-deco {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin: 0 auto 24px;
}

.spectrum-subtitle p {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.5;
}

/* Accordion Layout */
.spectrum-accordion {
    display: flex;
    height: 600px;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.08);
}

.spectrum-panel {
    position: relative;
    flex: 1;
    min-width: 80px;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1), background 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    background: var(--color-white);
}

.spectrum-panel:last-child {
    border-right: none;
}

.spectrum-panel:hover {
    background: #FAFAFA;
}

.spectrum-panel.active {
    flex: 3.5;
    cursor: default;
    background: var(--color-white);
}

.panel-backdrop {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.spectrum-panel.active .panel-backdrop {
    opacity: 1;
}

/* Minimized State */
.panel-minimized {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    transition: opacity 0.4s ease, transform 0.5s ease;
    z-index: 2;
}

.spectrum-panel.active .panel-minimized {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.panel-id {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #CCC;
    font-weight: 700;
}

.panel-vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: var(--font-accent);
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    color: var(--color-black);
    text-transform: uppercase;
    white-space: nowrap;
}

.panel-icon-min {
    color: var(--color-gold);
    transition: transform 0.3s ease;
}

.spectrum-panel:hover .panel-icon-min {
    transform: scale(1.1);
}

/* Expanded State */
.panel-expanded {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease 0.1s;
    z-index: 3;
}

.spectrum-panel.active .panel-expanded {
    opacity: 1;
    visibility: visible;
}

.expanded-content {
    max-width: 480px;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s, opacity 0.5s ease 0.2s;
}

.spectrum-panel.active .expanded-content {
    transform: translateY(0);
    opacity: 1;
}

.panel-id-lg {
    display: block;
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    margin-bottom: -20px;
    margin-left: -5px;
}

.panel-expanded h3 {
    font-size: 3rem;
    margin-bottom: 24px;
    background: linear-gradient(90deg, var(--color-black) 0%, #555 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.panel-expanded p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Button */
.btn-spectrum {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: var(--color-black);
    color: var(--color-white);
    border-radius: 100px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px -4px rgba(0, 0, 0, 0.3);
}

.btn-spectrum:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -4px rgba(201, 166, 107, 0.4);
}

/* Visual Elements */
.expanded-visual {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform: scale(0.9) translateX(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

.spectrum-panel.active .expanded-visual {
    transform: scale(1) translateX(0);
    opacity: 1;
}

/* Graph Bars */
.visual-graph-bar {
    width: 30px;
    margin: 0 12px;
    background: linear-gradient(180deg, var(--color-gold) 0%, rgba(201, 166, 107, 0.1) 100%);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(201, 166, 107, 0.2);
}

.visual-graph-bar:nth-child(1) {
    height: 120px;
    animation: graphGrow 3s infinite alternate;
}

.visual-graph-bar:nth-child(2) {
    height: 200px;
    animation: graphGrow 3s infinite alternate-reverse 0.5s;
}

.visual-graph-bar:nth-child(3) {
    height: 160px;
    animation: graphGrow 4s infinite alternate 1s;
}

@keyframes graphGrow {
    0% {
        transform: scaleY(0.9);
    }

    100% {
        transform: scaleY(1.1);
    }
}

/* Shield */
.visual-shield-ring {
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 40px rgba(201, 166, 107, 0.2);
}

.visual-shield-ring::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 4px solid rgba(201, 166, 107, 0.3);
    border-radius: 50%;
}

/* Pie Segment */
.visual-pie-segment {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: conic-gradient(var(--color-gold) 0% 70%, transparent 70% 100%);
    position: relative;
    transform: rotate(30deg);
}

/* Coin Glow */
.visual-coin-glow {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, #FFD700, #DAA520);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(255, 215, 0, 0.4);
}

/* Responsive Accordion */
@media (max-width: 1024px) {
    .spectrum-accordion {
        flex-direction: column;
        height: auto;
        min-height: 600px;
    }

    .spectrum-panel {
        width: 100%;
        height: 80px;
        min-height: 80px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .spectrum-panel.active {
        flex: auto;
        height: 500px;
    }

    .panel-minimized {
        flex-direction: row;
        padding: 0 32px;
    }

    .panel-vertical-text {
        writing-mode: horizontal-tb;
        transform: none;
        letter-spacing: 0.1em;
        font-size: 1.1rem;
    }

    .panel-expanded {
        flex-direction: column-reverse;
        padding: 40px 24px;
        justify-content: center;
        text-align: center;
    }

    .expanded-content {
        max-width: 100%;
        transform: translateY(10px);
    }

    .expanded-visual {
        height: 150px;
        margin-bottom: 20px;
    }

    .panel-id-lg {
        display: none;
    }

    .panel-expanded h3 {
        font-size: 2rem;
    }
}

/* =========================================
   CONTACT PAGE - MINIMAL PREMIUM DESIGN
   ========================================= */

.contact-page-minimal {
    background: var(--color-white);
}

/* Hero Section - Light & Airy */
.contact-hero-minimal {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, rgba(216, 207, 196, 0.15) 0%, var(--color-white) 100%);
}

.hero-content-minimal {
    max-width: 680px;
}

.hero-content-minimal .eyebrow {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--type-caption);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.hero-content-minimal h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.15;
    margin-bottom: var(--space-lg);
}

.hero-content-minimal .text-accent {
    color: var(--color-gold);
}

.hero-content-minimal .hero-lead {
    font-family: var(--font-body);
    font-size: var(--type-body-lg);
    color: var(--color-slate-whisper);
    line-height: 1.7;
    max-width: 540px;
}

/* Main Contact Section */
.contact-main-section {
    padding: var(--space-xxl) 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-xxl);
    align-items: start;
}

/* Contact Form Block */
.contact-form-block {
    background: var(--color-white);
    border: 1px solid var(--color-taupe);
    border-radius: 12px;
    padding: var(--space-xl);
}

.contact-form-block h2 {
    font-family: var(--font-display);
    font-size: var(--type-h3);
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: var(--space-xl);
}

.contact-form-minimal .form-row-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.contact-form-minimal .form-field {
    margin-bottom: var(--space-lg);
}

.contact-form-minimal label {
    display: block;
    font-family: var(--font-accent);
    font-size: var(--type-body);
    font-weight: 500;
    color: var(--color-black);
    margin-bottom: var(--space-xs);
}

.contact-form-minimal input,
.contact-form-minimal textarea,
.contact-form-minimal select {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-body);
    font-size: var(--type-body);
    color: var(--color-black);
    background: var(--color-white);
    border: 1px solid var(--color-taupe);
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.contact-form-minimal input::placeholder,
.contact-form-minimal textarea::placeholder {
    color: var(--color-slate-whisper);
}

.contact-form-minimal input:focus,
.contact-form-minimal textarea:focus,
.contact-form-minimal select:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(250, 190, 52, 0.1);
}

.contact-form-minimal textarea {
    resize: vertical;
    min-height: 120px;
}

.select-minimal {
    position: relative;
}

.select-minimal select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    cursor: pointer;
    background-color: var(--color-white);
    color: var(--color-black);
}

.select-minimal select option {
    background-color: var(--color-white);
    color: var(--color-black);
    padding: 10px;
}

.select-minimal select::-ms-expand {
    display: none;
}

.select-minimal::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--color-slate-whisper);
    pointer-events: none;
    z-index: 1;
}

.btn-submit-minimal {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-accent);
    font-size: var(--type-body);
    font-weight: 600;
    color: var(--color-black);
    background: var(--color-gold);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit-minimal svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-submit-minimal:hover {
    background: #e5aa2e;
}

.btn-submit-minimal:hover svg {
    transform: translateX(3px);
}

/* Contact Info Block */
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(216, 207, 196, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(216, 207, 196, 0.35);
}

.info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 8px;
}

.info-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-gold);
}

.info-content h3 {
    font-family: var(--font-accent);
    font-size: var(--type-body);
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 4px;
}

.info-content a {
    font-family: var(--font-body);
    font-size: var(--type-body);
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--color-gold);
}

.info-content p {
    font-family: var(--font-body);
    font-size: var(--type-body);
    color: var(--color-slate-whisper);
    line-height: 1.6;
    margin: 0;
}

/* Location Section */
.location-section-minimal {
    padding: var(--space-xxl) 0;
    background: rgba(216, 207, 196, 0.1);
}

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-xl);
    align-items: center;
}

.location-details .eyebrow {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--type-caption);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.location-details h2 {
    font-family: var(--font-display);
    font-size: var(--type-h2);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: var(--space-lg);
}

.location-details address {
    font-family: var(--font-body);
    font-size: var(--type-body-lg);
    font-style: normal;
    color: var(--color-black);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.directions-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-family: var(--font-accent);
    font-size: var(--type-body);
    font-weight: 600;
    color: var(--color-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.directions-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.directions-link:hover {
    color: var(--color-black);
}

.directions-link:hover svg {
    transform: translateX(4px);
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 8px 30px rgba(13, 13, 15, 0.08);
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .contact-info-block {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1 1 calc(50% - var(--space-md));
        min-width: 250px;
    }

    .location-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .location-map {
        height: 320px;
    }
}

@media (max-width: 768px) {
    .contact-hero-minimal {
        padding: 140px 0 60px;
    }

    .contact-form-minimal .form-row-duo {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .contact-form-block {
        padding: var(--space-lg);
    }

    .info-card {
        flex: 1 1 100%;
    }

    .location-map {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .hero-content-minimal h1 {
        font-size: 2rem;
    }

    .btn-submit-minimal {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   14. ABOUT SECTION (PREMIUM MINIMALIST)
   ========================================= */

.about-premium-inv {
    position: relative;
    padding: var(--space-xxl) 0;
    padding-top: 100px;
    padding-bottom: 100px;
    background: var(--color-white);
    overflow: hidden;
}

.about-inv-ambient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.ambient-glow-orb {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(250, 190, 52, 0.04) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 20s infinite alternate ease-in-out;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(10%, 10%);
    }
}

.about-inv-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-gutter);
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    /* Asymmetric 1:2 */
    gap: clamp(40px, 8vw, 120px);
    align-items: center;
}

/* Visual Column - The Bridge Concept */
.about-visual-column {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 400px;
}

.pillar-system {
    position: relative;
    width: 1px;
    height: 320px;
    background: rgba(13, 13, 15, 0.08);
    /* Faint track */
}

.pillar-line-track {
    width: 100%;
    height: 100%;
    background: transparent;
    overflow: hidden;
}

.pillar-line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    /* Fixed visible part or animate this via JS later */
    background: linear-gradient(to bottom, var(--color-gold), transparent);
    opacity: 0.8;
}

.pillar-glass-shape {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* Circle */
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(250, 190, 52, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.02),
        inset 0 0 10px rgba(250, 190, 52, 0.05);
    z-index: 2;
    animation: glassFloat 8s ease-in-out infinite;
}

@keyframes glassFloat {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

/* Content Column */
.inv-content-wrapper {
    max-width: 680px;
}

.inv-eyebrow {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-slate-whisper);
    margin-bottom: var(--space-md);
    display: block;
}

.inv-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.1;
    color: var(--color-black);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.serif-italic-gold {
    font-family: var(--font-body);
    /* Spectral */
    font-style: italic;
    color: var(--color-gold);
    font-weight: 400;
}

.inv-text {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1.6;
    color: #444;
    /* Darker than slate, softer than black */
    margin-bottom: var(--space-xl);
    font-weight: 400;
}

/* Link Group */
.inv-link-group {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
    cursor: pointer;
}

.link-label {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.link-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(13, 13, 15, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--color-black);
    background: transparent;
}

/* Hover Effects */
.inv-link-group:hover .link-label {
    color: var(--color-gold);
}

.inv-link-group:hover .link-icon-circle {
    border-color: var(--color-gold);
    background: var(--color-gold);
    color: var(--color-white);
    transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 900px) {
    .about-inv-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
        padding: 0 20px;
    }

    .about-visual-column {
        height: auto;
        min-height: auto;
        margin-bottom: 20px;
    }

    .pillar-system {
        height: 120px;
    }

    .pillar-glass-shape {
        width: 40px;
        height: 40px;
    }

    .inv-content-wrapper {
        margin: 0 auto;
    }

    .inv-link-group {
        justify-content: center;
    }
}


/* =========================================
   WEALTH CALCULATOR SECTION (Premium)
   ========================================= */
/* =========================================
   WEALTH CALCULATOR SECTION (Premium - Refined)
   ========================================= */
/* =========================================
   WEALTH CALCULATOR SECTION (Premium - V2 Refined)
   ========================================= */
.calc-premium-section {
    position: relative;
    padding: var(--space-3xl) 0 140px;
    background: linear-gradient(180deg, var(--color-white) 0%, #FAFAFA 100%);
    overflow: hidden;
}

.calc-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--color-slate-whisper) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

/* Ambient Background */
.calc-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.calc-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.calc-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(250, 190, 52, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -150px;
}

.calc-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(216, 207, 196, 0.25) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
}

/* Container */
.calc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-gutter);
    position: relative;
    z-index: 1;
}

/* Header */
.calc-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.calc-eyebrow {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.calc-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.serif-italic-gold {
    font-family: var(--font-body);
    font-style: italic;
    color: var(--color-gold);
    font-weight: 400;
}

.calc-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    color: var(--color-slate-whisper);
    line-height: 1.7;
    font-weight: 400;
}

/* Glass Card Container */
.calc-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    padding: 60px 40px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.02),
        0 24px 80px -12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Input Zone */
.calc-input-zone {
    text-align: center;
    margin-bottom: 70px;
    /* More breathing room */
    position: relative;
}

.calc-label {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-slate-whisper);
    margin-bottom: var(--space-lg);
}

/* Amount Display Wrapper */
.calc-amount-display {
    display: flex;
    align-items: center;
    /* Align centers for better vertical rhythm */
    justify-content: center;
    position: relative;
    padding: var(--space-xs);
    margin-bottom: var(--space-xs);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.currency-symbol {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 400;
    color: var(--color-black);
    margin-right: 8px;
    opacity: 0.3;
    line-height: 1;
}

.calc-input-field {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 7rem);
    font-weight: 700;
    color: var(--color-black);
    background: transparent;
    border: none;
    outline: none;
    width: 6ch;
    /* Constrain width to approx 6 chars */
    max-width: 100%;
    text-align: left;
    /* Align left to sit next to Rupee */
    -moz-appearance: textfield;
    appearance: textfield;
    padding: 0;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.04em;
    transition: text-shadow 0.3s ease;
}

.calc-input-field::-webkit-outer-spin-button,
.calc-input-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Hover/Focus effect for Input */
.calc-input-field:focus {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.calc-amount-words {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-gold);
    margin-top: var(--space-sm);
    font-style: italic;
    opacity: 1;
    font-weight: 500;
}

/* Slider Customization */
.calc-slider-wrapper {
    position: relative;
    max-width: 720px;
    margin: 50px auto 0;
    padding: 20px 0;
}

.slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(13, 13, 15, 0.08);
    /* Darker track for visibility */
    border-radius: 100px;
    transform: translateY(-50%);
    pointer-events: none;
    overflow: hidden;
}

.slider-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--color-gold), #F0A500);
    border-radius: 100px;
    width: 0%;
    transition: width 0.1s ease-out;
}

.calc-range-slider {
    width: 100%;
    height: 20px;
    /* Taller touch target area */
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    margin: 0;
    display: block;
    outline: none;
}

.calc-range-slider:focus {
    outline: none;
}

/* Slider Thumb */
.calc-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 36px;
    height: 36px;
    background: var(--color-white);
    border: 4px solid var(--color-gold);
    border-radius: 50%;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 0 0 6px rgba(255, 255, 255, 0.5);
    /* Outer ring */
    cursor: grab;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: -8px;
    /* Adjusting vertical alignment relative to track */
}

.calc-range-slider::-moz-range-thumb {
    width: 36px;
    height: 36px;
    background: var(--color-white);
    border: 4px solid var(--color-gold);
    border-radius: 50%;
    cursor: grab;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.1),
        0 0 0 6px rgba(255, 255, 255, 0.5);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    /* Reset logic for firefox sometimes needed */
}

.calc-range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-range-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.05);
    background: var(--color-gold);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-slate-whisper);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Duration Badge with Connectors */
.calc-duration-badge {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 28px;
    background: var(--color-white);
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--color-black);
    margin: 0 auto 50px;
    width: fit-content;
    z-index: 2;
    border: 1px solid rgba(13, 13, 15, 0.05);
}

.calc-duration-badge::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 30px;
    background: linear-gradient(to top, rgba(13, 13, 15, 0.1), transparent);
}

.calc-duration-badge::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(13, 13, 15, 0.1), transparent);
}

.calc-duration-badge svg {
    color: var(--color-gold);
    width: 20px;
    height: 20px;
}

.calc-duration-badge strong {
    font-weight: 700;
    color: var(--color-black);
}

/* Results Grid - Responsive Powerhouse */
.calc-results-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    /* Increased gap */
    margin-top: 20px;
    align-items: stretch;
}

/* Result Card */
.calc-result-card {
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(13, 13, 15, 0.04);
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.calc-result-card:hover {
    transform: translateY(-8px);
    background: var(--color-white);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(250, 190, 52, 0.3);
}

.result-icon-mini {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 1px solid rgba(13, 13, 15, 0.06);
    border-radius: 14px;
    margin-bottom: 20px;
    color: var(--color-slate-whisper);
    transition: all 0.3s ease;
}

.calc-result-card:hover .result-icon-mini {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
    transform: rotateY(180deg);
    /* Playful interaction */
}

/* Icon rotation fix */
.result-icon-mini svg {
    transition: transform 0s;
    /* Prevent svg distorting during flip if needed */
}

.calc-result-card:hover .result-icon-mini svg {
    transform: rotateY(-180deg);
    /* Counter-rotate to keep icon strict? Or let it flip. Let it flip. */
}

.result-title {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 700;
    color: #666;
    /* Softer visual weight */
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.result-value {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 8px;
}

.result-rate {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    background: rgba(250, 190, 52, 0.08);
    padding: 4px 10px;
    border-radius: 100px;
}

/* Highlighted Mutual Funds Card */
.calc-result-highlight {
    background: var(--color-black);
    border: 1px solid var(--color-black);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transform: scale(1.05);
    position: relative;
    overflow: hidden;
}

.calc-result-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

/* FIX: Ensure Highlight Card Retains Dark Theme on Hover */
.calc-result-card.calc-result-highlight:hover {
    transform: scale(1.08) translateY(-8px);
    background: var(--color-black);
    /* Force dark background */
    box-shadow: 0 30px 60px rgba(250, 190, 52, 0.25);
    border-color: var(--color-black);
}

.calc-result-highlight .result-icon-mini {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-gold);
    border-color: rgba(255, 255, 255, 0.1);
}

.calc-result-highlight:hover .result-icon-mini {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.calc-result-highlight .result-title {
    color: rgba(255, 255, 255, 0.6);
}

.calc-result-highlight .result-value {
    color: var(--color-white);
    font-size: 1.8rem;
    /* Prominent */
    margin-bottom: 12px;
}

.calc-result-highlight .result-rate {
    background: var(--color-gold);
    color: var(--color-black);
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 6px 14px;
}

.highlight-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: var(--color-black);
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    z-index: 3;
}

/* Disclaimer */
.calc-disclaimer {
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-slate-whisper);
    margin-top: 60px;
    opacity: 0.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* =========================================
   RESPONSIVE QUERIES FOR CALCULATOR
   ========================================= */

/* Tablet (1024px and down) */
@media (max-width: 1024px) {
    .calc-glass-card {
        padding: 40px 30px;
    }

    .calc-title {
        font-size: 2.8rem;
    }

    .calc-results-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* 
       Optimized Layout:
       Row 1: Bank, FD, Gold
       Row 2: Sensex, MF (spanning 2 columns)
    */
    .calc-results-grid>div:nth-child(1),
    .calc-results-grid>div:nth-child(2),
    .calc-results-grid>div:nth-child(3) {
        grid-column: span 1;
    }

    .calc-results-grid>div:nth-child(4) {
        grid-column: 1 / span 1;
        /* Sensex on left */
    }

    .calc-result-highlight {
        grid-column: 2 / span 2;
        /* Highlight card takes 2 slots */
        transform: none;
        margin-top: 0;
    }

    .calc-input-field {
        font-size: 5rem;
    }
}

/* Mobile (768px and down) */
@media (max-width: 768px) {
    .calc-premium-section {
        padding: var(--space-3xl) 0;
    }

    .calc-glass-card {
        padding: 32px 20px;
        border-radius: 20px;
    }

    .calc-input-zone {
        margin-bottom: 40px;
    }

    /* Strict 2 column grid for mobile */
    .calc-results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* Reset grid placing for mobile */
    .calc-results-grid>div:nth-child(n) {
        grid-column: auto;
    }

    /* Highlight card spans full width for impact */
    .calc-result-highlight {
        grid-column: 1 / -1 !important;
        margin-top: 10px;
    }

    .calc-result-card {
        padding: 24px 16px;
    }

    .result-icon-mini {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .result-icon-mini svg {
        width: 20px;
        height: 20px;
    }

    .calc-input-field {
        font-size: 3.5rem;
    }

    .currency-symbol {
        font-size: 2rem;
    }

    .slider-labels {
        font-size: 0.65rem;
    }
}

/* Small Mobile (480px and down) */
@media (max-width: 480px) {
    .calc-title {
        font-size: 2rem;
    }

    .calc-amount-display {
        flex-wrap: wrap;
    }

    .calc-input-field {
        font-size: 3rem;
        width: 100%;
    }

    .currency-symbol {
        display: none;
        /* Hide currency symbol on tiny screens if it breaks layout, usually cleaner without or smaller */
    }

    /* Add currency back as pseudo or leave it hidden? Let's keep it but smaller */
    .calc-amount-display::before {
        content: '₹';
        font-family: var(--font-display);
        font-size: 2rem;
        color: var(--color-black);
        display: block;
        margin-right: 8px;
        opacity: 0.3;
    }

    .calc-range-slider::-webkit-slider-thumb {
        width: 28px;
        height: 28px;
    }

    .calc-duration-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
        gap: 8px;
    }
}

/* ==========================================================================
   FUTURE FINANCIAL GOALS SECTION - Orbital Constellation Design
   ========================================================================== */

.goals-constellation-section {
    position: relative;
    padding: 80px 0;
    background: var(--color-black);
    overflow: hidden;
}

/* Ambient Background */
.goals-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.goals-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.goals-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 166, 107, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Container */
.goals-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--container-gutter);
    position: relative;
    z-index: 1;
}

/* Header */
.goals-header {
    text-align: center;
    margin-bottom: 90px;
}

.goals-eyebrow {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
    display: block;
}

.goals-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.goals-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--color-slate-whisper);
    line-height: 1.7;
    font-weight: 400;
    max-width: 400px;
    margin: 0 auto;
}

/* Orbital Layout Container */
.goals-orbital {
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 1 / 0.8;
    margin: 0 auto 50px;
}

/* Central Element */
.goals-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    z-index: 10;
}

.center-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 166, 107, 0.25);
    border-radius: 50%;
    animation: ringPulse 4s ease-in-out infinite;
}

.center-ring::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    right: -16px;
    bottom: -16px;
    border: 1px solid rgba(201, 166, 107, 0.1);
    border-radius: 50%;
}

@keyframes ringPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.03);
        opacity: 0.8;
    }
}

.center-core {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(201, 166, 107, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.center-label {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-slate-whisper);
    margin-bottom: 2px;
}

.center-highlight {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-gold);
}

/* Goal Nodes */
.goal-node {
    position: absolute;
    z-index: 5;
}

.node-content {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 60px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.node-content:hover {
    background: rgba(201, 166, 107, 0.1);
    border-color: rgba(201, 166, 107, 0.25);
    box-shadow: 0 4px 24px rgba(201, 166, 107, 0.12);
}

.node-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 166, 107, 0.12);
    border-radius: 50%;
    transition: background 0.35s ease;
}

.node-content:hover .node-icon {
    background: rgba(201, 166, 107, 0.2);
}

.node-icon svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
}

.node-label {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-white);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

/* Hexagonal Node Positions - Improved Distribution */
/* Top row */
.goal-node-1 {
    top: 25%;
    left: 2%;
}

.goal-node-2 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.goal-node-3 {
    top: 25%;
    right: 2%;
}

/* Bottom row */
.goal-node-4 {
    bottom: 25%;
    left: 2%;
}


.goal-node-5 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.goal-node-6 {
    bottom: 25%;
    right: 2%;
}

/* Symmetry: Mirror the right-side nodes so icons are on the outside */
.goal-node-3 .node-content,
.goal-node-6 .node-content {
    flex-direction: row-reverse;
}


/* CTA */
.goals-cta {
    text-align: center;
}

.goals-link-group {
    display: inline-flex;
    align-items: center;
    gap: var(--space-md);
    color: #ffffff !important;
    text-decoration: none;
    transition: all 0.35s ease;
}

.goals-link-group .link-label {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #ffffff !important;
    transition: color 0.35s ease;
}

.goals-link-group .link-icon-circle {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 166, 107, 0.12);
    border: 1px solid rgba(201, 166, 107, 0.25);
    border-radius: 50%;
    transition: all 0.35s ease;
}

.goals-link-group .link-icon-circle svg {
    color: var(--color-gold);
    transition: transform 0.35s ease, color 0.35s ease;
}

.goals-link-group:hover .link-label {
    color: var(--color-gold);
}

.goals-link-group:hover .link-icon-circle {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.goals-link-group:hover .link-icon-circle svg {
    color: var(--color-black);
    transform: translateX(2px);
}

/* ==========================================================================
   GOALS SECTION - Responsive Styles
   ========================================================================== */

/* Large Tablet (1024px and down) */
@media (max-width: 1024px) {
    /* .goals-orbital max-width inherited from desktop (600px) */

    .goals-center {
        width: 100px;
        height: 100px;
    }

    .center-highlight {
        font-size: 1rem;
    }

    .center-label {
        font-size: 0.6rem;
    }

    .node-content {
        padding: 8px 16px;
    }

    .node-icon {
        width: 32px;
        height: 32px;
    }

    .node-icon svg {
        width: 16px;
        height: 16px;
    }

    .node-label {
        font-size: 0.75rem;
    }
}

/* Tablet (768px and down) - Switch to grid layout */
@media (max-width: 768px) {
    .goals-constellation-section {
        padding: 70px 0;
    }

    .goals-header {
        margin-bottom: var(--space-2xl);
    }

    .goals-orbital {
        aspect-ratio: unset;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
        max-width: 100%;
    }

    .goals-center {
        display: none;
    }

    .goal-node {
        position: static;
        transform: none !important;
    }

    .node-content {
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: var(--space-lg) var(--space-md);
        border-radius: 16px;
        gap: var(--space-xs);
    }

    /* Reset symmetry override for grid layout */
    .goal-node-3 .node-content,
    .goal-node-6 .node-content {
        flex-direction: column;
    }

    .node-icon {
        width: 44px;
        height: 44px;
    }

    .node-icon svg {
        width: 20px;
        height: 20px;
    }

    .node-label {
        white-space: normal;
        font-size: 0.8rem;
    }

    .goals-cta {
        margin-top: var(--space-lg);
    }
}

/* Small Mobile (480px and down) */
@media (max-width: 480px) {
    .goals-constellation-section {
        padding: 60px 0;
    }

    .goals-orbital {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .node-content {
        flex-direction: row;
        text-align: left;
        padding: var(--space-md);
        border-radius: 12px;
        gap: var(--space-sm);
    }

    /* Reset symmetry override for stacked layout */
    .goal-node-3 .node-content,
    .goal-node-6 .node-content {
        flex-direction: row;
    }

    .node-icon {
        width: 40px;
        height: 40px;
    }

    .goals-title {
        font-size: 1.8rem;
    }

    .goals-subtitle {
        font-size: 0.95rem;
    }
}

/* =========================================
   HOMEPAGE CONTACT INFO + MAP SECTION
   ========================================= */

.home-contact-section {
    position: relative;
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--color-white) 0%, rgba(216, 207, 196, 0.15) 100%);
    overflow: hidden;
}

/* Ambient Background */
.home-contact-ambient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.contact-glow-orb {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(201, 166, 107, 0.06) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(80px);
}

/* Container */
.home-contact-container {
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
    padding: 0 var(--container-gutter, 24px);
    position: relative;
    z-index: 1;
}

/* Section Header */
.home-contact-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.contact-eyebrow {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: var(--type-caption);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--color-black);
    line-height: 1.2;
    margin: 0;
}

/* Layout Grid */
.home-contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--space-xl);
    align-items: stretch;
}

/* Contact Info Column */
.home-contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* Info Cards */
.home-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(216, 207, 196, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.home-info-card:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(201, 166, 107, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 13, 15, 0.06);
}

.home-info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.1) 0%, rgba(201, 166, 107, 0.05) 100%);
    border-radius: 10px;
}

.home-info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-gold);
}

.home-info-content {
    flex: 1;
}

.home-info-content h3 {
    font-family: var(--font-accent);
    font-size: var(--type-body);
    font-weight: 600;
    color: var(--color-black);
    margin: 0 0 4px 0;
}

.home-info-content a {
    font-family: var(--font-body);
    font-size: var(--type-body);
    color: var(--color-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-info-content a:hover {
    color: var(--color-gold);
}

.home-info-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(13, 13, 15, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* CTA Button */
.home-contact-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: var(--space-md) var(--space-lg);
    margin-top: var(--space-sm);
    background: var(--color-gold);
    color: var(--color-black);
    font-family: var(--font-accent);
    font-size: var(--type-body);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.home-contact-cta:hover {
    background: #b8944f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 166, 107, 0.3);
}

.home-contact-cta svg {
    transition: transform 0.3s ease;
}

.home-contact-cta:hover svg {
    transform: translateX(4px);
}

/* Map */
.home-contact-map {
    border-radius: 16px;
    overflow: hidden;
    min-height: 380px;
    box-shadow: 0 12px 40px rgba(13, 13, 15, 0.08);
    border: 1px solid rgba(216, 207, 196, 0.3);
}

.home-contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .home-contact-section {
        padding: 60px 0 80px;
    }

    .home-contact-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .home-contact-info {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-md);
    }

    .home-contact-cta {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .home-contact-map {
        min-height: 320px;
    }

    .home-contact-map iframe {
        min-height: 320px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .home-contact-section {
        padding: 50px 0 70px;
    }

    .home-contact-info {
        grid-template-columns: 1fr;
    }

    .home-info-card {
        padding: var(--space-md);
    }

    .home-info-icon {
        width: 44px;
        height: 44px;
    }

    .home-info-icon svg {
        width: 22px;
        height: 22px;
    }

    .home-contact-cta {
        width: 100%;
    }

    .home-contact-map {
        min-height: 280px;
    }

    .home-contact-map iframe {
        min-height: 280px;
    }

    .contact-title {
        font-size: 1.6rem;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .home-contact-section {
        padding: 40px 0 60px;
    }

    .home-info-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .home-contact-map {
        min-height: 240px;
        border-radius: 12px;
    }

    .home-contact-map iframe {
        min-height: 240px;
    }
}