/* ==========================================================================
   DESIGN SYSTEM & CUSTOM STYLES: Active Wave Pvt. Ltd.
   ========================================================================== */

/* --- Custom Variables & Tokens --- */
:root {
    /* Color Palette */
    --bg-dark: #0f172a;        /* Deep slate background */
    --bg-card: rgba(30, 41, 59, 0.7); /* Translucent card background */
    --bg-card-hover: rgba(30, 41, 59, 0.9);
    --border-color: rgba(51, 65, 85, 0.5); /* Slate border */
    --border-color-hover: rgba(99, 102, 241, 0.4);
    
    --text-primary: #f8fafc;   /* White-ish */
    --text-secondary: #94a3b8; /* Cool gray */
    --text-muted: #64748b;
    
    --primary: #6366f1;        /* Indigo-500 */
    --primary-light: #818cf8;  /* Indigo-400 */
    --secondary: #0d9488;      /* Teal-600 */
    --secondary-light: #14b8a6;/* Teal-500 */
    --accent: #10b981;         /* Emerald-500 */
    
    --grad-indigo-teal: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --grad-dark-mesh: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 40%),
                       radial-gradient(circle at 90% 80%, rgba(20, 184, 166, 0.15) 0%, transparent 45%);
    
    /* Layout & Spacing */
    --header-height: 80px;
    --max-width: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Shadows & Effects */
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.15), 0 8px 10px -6px rgb(0 0 0 / 0.15);
    --glass-blur: blur(16px);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    background-image: var(--grad-dark-mesh);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* --- Utility Classes --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: var(--grad-indigo-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--secondary-light);
    background: rgba(20, 184, 166, 0.1);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.section {
    padding: 8rem 0;
    position: relative;
}

.dark-bg {
    background-color: rgba(15, 23, 42, 0.6);
}

.grid {
    display: grid;
    gap: 3rem;
}

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

@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-tag {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-light);
    font-weight: 700;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.title-underline {
    height: 4px;
    width: 60px;
    background: var(--grad-indigo-teal);
    margin: 0 auto 1.5rem auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Glassmorphism Generic Card */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--grad-indigo-teal);
    color: var(--text-primary);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--text-secondary);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}


/* ==========================================================================
   LAYOUT MODULES
   ========================================================================== */

/* --- Sticky Header & Nav --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    height: 70px;
    background: rgba(15, 23, 42, 0.9);
}

.nav-container {
    height: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--grad-indigo-teal);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 10px;
    transition: all 0.3s ease;
}

@media (max-width: 868px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-btn {
        width: 80%;
        justify-content: center;
    }
    
    /* Toggle close state */
    .mobile-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}


/* --- Hero Section --- */
.hero-section {
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 2rem);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Ambient backdrop blobs */
.background-decor {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
    z-index: -1;
}

.background-decor-2 {
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
        padding-bottom: 4rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

.hero-text-block {
    max-width: 650px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Glass Dashboard Mockup card */
.hero-image-block {
    perspective: 1000px;
}

.glass-dashboard-card {
    background: rgba(30, 41, 59, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.glass-dashboard-card:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.card-header {
    background: rgba(15, 23, 42, 0.4);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.window-dot.red { background-color: #ef4444; }
.window-dot.yellow { background-color: #f59e0b; }
.window-dot.green { background-color: #10b981; }

.window-title {
    margin-left: auto;
    font-size: 0.8rem;
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-weight: 500;
}

.card-body {
    padding: 2rem;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.db-stat-card {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
}

.db-stat-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.db-stat-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.db-stat-card p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.text-teal { color: var(--secondary-light); }
.text-indigo { color: var(--primary-light); }
.text-emerald { color: var(--accent); }

.db-chart-placeholder {
    height: 120px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chart-bar {
    flex: 1;
    height: var(--height);
    background: linear-gradient(180deg, var(--secondary) 0%, rgba(99, 102, 241, 0.2) 100%);
    border-radius: 4px 4px 0 0;
    animation: growChart 1.5s ease-out forwards;
}

.chart-bar:nth-child(even) {
    background: linear-gradient(180deg, var(--primary) 0%, rgba(20, 184, 166, 0.2) 100%);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}


/* --- About Us Section --- */
.about-text-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.lead {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-light);
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.highlight-item p {
    font-size: 0.9rem;
    margin: 0;
}

.about-stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-box {
    padding: 3rem 2rem;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: var(--grad-indigo-teal);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 500px) {
    .about-stats-container {
        grid-template-columns: 1fr;
    }
}


/* --- Flagship Product: HealthBridge Showcase --- */
.products-section {
    position: relative;
}

.background-decor-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
    z-index: -1;
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-secondary);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.tab-btn:hover {
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.tab-btn.active {
    background: var(--grad-indigo-teal);
    color: var(--text-primary);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.2);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.product-badge {
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 0.75rem;
}

.tab-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.tab-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.product-features-list {
    list-style: none;
    margin-bottom: 3rem;
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
}

.product-features-list li i {
    font-size: 1.1rem;
}

.tab-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Visual Mockup Elements inside Tabs */
.visual-card {
    background: #1e293b;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 450px;
    height: 320px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.video-placeholder {
    flex: 1;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stethoscope-icon {
    font-size: 5rem;
    color: rgba(99, 102, 241, 0.2);
    animation: heartPulse 2.5s infinite;
}

.call-overlay {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.caller-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.caller-info h4 {
    font-size: 0.9rem;
}

.caller-info span {
    font-size: 0.7rem;
    color: var(--text-secondary);
    display: block;
}

.call-time {
    background: var(--secondary);
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.call-controls {
    background: rgba(15, 23, 42, 0.8);
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.ctrl-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    transition: all 0.2s;
}

.ctrl-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.ctrl-btn.hangup {
    background: #ef4444;
}

.ctrl-btn.hangup:hover {
    background: #dc2626;
}

/* Records Tab Visuals */
.records-visual-card {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.record-item {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: border-color 0.3s;
}

.record-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.record-item i {
    font-size: 1.5rem;
}

.record-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}

.record-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.status-tag {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.status-verified {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
}

.status-active {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
}

/* Analytics Tab Visuals */
.analytics-visual-card {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
}

.analytics-visual-card h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.bar-chart-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    width: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.bar-track {
    flex: 1;
    height: 12px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    width: 0;
    background: var(--grad-indigo-teal);
    border-radius: 10px;
    transition: width 1.2s cubic-bezier(0.1, 0.8, 0.3, 1);
}


/* --- Governance Section --- */
.governance-section {
    background-color: var(--bg-dark);
}

.governance-card {
    padding: 4rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

@media (max-width: 868px) {
    .governance-card {
        padding: 2.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.gov-badge-icon {
    width: 80px;
    height: 80px;
    background: rgba(20, 184, 166, 0.15);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--secondary-light);
    flex-shrink: 0;
}

.gov-text-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.gov-text-block p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.gov-text-block strong {
    color: var(--text-primary);
}

.link-styled {
    color: var(--secondary-light);
    border-bottom: 1px dashed var(--secondary-light);
}

.link-styled:hover {
    color: var(--primary-light);
    border-color: var(--primary-light);
}

.gov-details-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 600px) {
    .gov-details-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.gov-detail .label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.gov-detail .value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
}

.gov-detail .value a {
    color: var(--primary-light);
}


/* --- Contact Section --- */
.contact-info-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.contact-info-block p {
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.c-method {
    display: flex;
    gap: 1.5rem;
}

.c-method i {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-sm);
    color: var(--primary-light);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-method h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.c-method p {
    margin: 0;
    color: var(--text-secondary);
}

.c-method p a:hover {
    color: var(--primary-light);
}

/* Contact Form */
.contact-form-block {
    padding: 3rem;
}

@media (max-width: 600px) {
    .contact-form-block {
        padding: 1.5rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
    background: rgba(15, 23, 42, 0.8);
}

.form-feedback {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
}

.form-feedback.success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-feedback.error {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.hidden {
    display: none;
}


/* --- Footer --- */
.footer {
    border-top: 1px solid var(--border-color);
    background: rgba(15, 23, 42, 0.9);
    padding: 6rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

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

.footer-brand .logo {
    margin-bottom: 1.5rem;
}

.brand-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 350px;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--text-primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 768px) {
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}

.footer-bottom .disclaimer {
    font-style: italic;
}

.footer-bottom .disclaimer a {
    color: var(--secondary-light);
    font-weight: 600;
}


/* ==========================================================================
   ANIMATIONS & SCROLL TRIGGER INTERACTIVE EFFECTS
   ========================================================================== */

/* Keyframe definitions */
@keyframes growChart {
    from { height: 0; }
    to { height: var(--height); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes heartPulse {
    0% { transform: scale(1); opacity: 0.2; }
    15% { transform: scale(1.15); opacity: 0.4; }
    30% { transform: scale(1); opacity: 0.2; }
    45% { transform: scale(1.15); opacity: 0.4; }
    70% { transform: scale(1); opacity: 0.2; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.4; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animation Hooks (CSS) */
.scroll-trigger {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-trigger.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Animations that load on mount */
.fade-in {
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUp 1s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.animate-pulse {
    animation: pulse 8s ease-in-out infinite;
}
.animate-float {
    animation: float 4s ease-in-out infinite;
}
