/* ============================================
   SYMETRIQUE ABOUT PAGE
   Premium Healthcare Analytics Design
   ============================================ */

/* ============================================
   PRELOADER STYLES
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0f1a 0%, #111827 50%, #0a1020 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
}

.preloader-circle {
    width: 100%;
    height: 100%;
    animation: preloaderRotate 2s linear infinite;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3;
}

.circle-progress {
    fill: none;
    stroke: url(#preloaderGradient);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 75;
    animation: preloaderDash 1.5s ease-in-out infinite;
}

.preloader-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-icon i {
    font-size: 28px;
    color: white;
}

.preloader-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preloader-brand {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #079b7e, #14b8a6, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.preloader-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 30px auto 0;
    overflow: hidden;
}

.preloader-bar-fill {
    width: 30%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: preloaderBar 1.5s ease-in-out infinite;
}

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

@keyframes preloaderDash {
    0% { stroke-dashoffset: 283; }
    50% { stroke-dashoffset: 75; }
    100% { stroke-dashoffset: 283; }
}

@keyframes preloaderPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes preloaderBar {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(250%); }
    100% { transform: translateX(-100%); }
}

/* Import Design Tokens from index.css */
:root {
    --primary: #079b7e;
    --primary-dark: #067d66;
    --primary-light: #0ab893;
    --primary-glow: rgba(7, 155, 126, 0.4);
    --accent-teal: #14b8a6;
    --accent-blue: #0ea5e9;
    --bg-dark: #0a0f1a;
    --bg-dark-secondary: #111827;
    --bg-dark-tertiary: #1f2937;
    --surface-dark: rgba(17, 24, 39, 0.8);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(148, 163, 184, 0.1);
    --border-hover: rgba(7, 155, 126, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, #079b7e 0%, #14b8a6 100%);
    --gradient-dark: linear-gradient(180deg, #0a0f1a 0%, #111827 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(7, 155, 126, 0.3);
    --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --section-padding: 120px;
}

[data-theme="light"] {
    --bg-dark: #ffffff;
    --bg-dark-secondary: #f8fafc;
    --bg-dark-tertiary: #f1f5f9;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --border-color: rgba(15, 23, 42, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(15, 23, 42, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-base), color var(--transition-base);
}

/* ============================================
   THEME SWITCH
   ============================================ */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.theme-switch {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: var(--bg-dark-tertiary);
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    border: 1px solid var(--border-color);
}

.slider:before {
    background: var(--gradient-primary);
    bottom: 4px;
    content: "";
    height: 24px;
    left: 4px;
    position: absolute;
    transition: var(--transition-base);
    width: 24px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(7, 155, 126, 0.4);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider .fa-sun { color: #fbbf24; font-size: 12px; z-index: 1; }
.slider .fa-moon { color: #94a3b8; font-size: 12px; z-index: 1; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    padding: 1rem 0;
    background: transparent;
    transition: all var(--transition-base);
    z-index: 1000;
}

.navbar-scrolled {
    background: rgba(10, 15, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

[data-theme="light"] .navbar-scrolled {
    background: rgba(255, 255, 255, 0.95);
}

.navbar-brand img {
    height: 45px;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 4px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
}

.nav-item {
    margin: 0;
    padding: 0;
}

.nav-link {
    display: inline-flex;
    height: 44px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    border-radius: 50px;
    transition: all var(--transition-base);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(7, 155, 126, 0.4);
}

.nav-link.cta-nav {
    background: var(--primary);
    color: white;
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar-brand img {
        height: 38px;
    }
    
    .navbar-toggler {
        border: none;
        padding: 10px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1001;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:hover {
        background: rgba(7, 155, 126, 0.15);
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    /* Custom Hamburger Icon */
    .hamburger-icon {
        width: 24px;
        height: 18px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .hamburger-icon span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .hamburger-icon span:nth-child(1) {
        width: 100%;
    }
    
    .hamburger-icon span:nth-child(2) {
        width: 70%;
        margin-left: auto;
    }
    
    .hamburger-icon span:nth-child(3) {
        width: 85%;
    }
    
    /* Hamburger Animation on Active */
    .navbar-toggler.active .hamburger-icon span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
        background: var(--primary);
    }
    
    .navbar-toggler.active .hamburger-icon span:nth-child(2) {
        opacity: 0;
        transform: translateX(10px);
    }
    
    .navbar-toggler.active .hamburger-icon span:nth-child(3) {
        width: 100%;
        transform: translateY(-8px) rotate(-45deg);
        background: var(--primary);
    }
    
    .theme-switch-wrapper {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        margin-right: 0;
    }
    
    .theme-switch {
        height: 30px;
        width: 54px;
    }
    
    .slider:before {
        height: 22px;
        width: 22px;
    }
    
    input:checked + .slider:before {
        transform: translateX(24px);
    }
    
    #navbarNav {
        background: rgba(10, 15, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 24px;
        margin-top: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        animation: slideDown 0.3s ease;
    }
    
    [data-theme="light"] #navbarNav {
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu {
        flex-direction: column;
        background: transparent !important;
        border: none !important;
        width: 100%;
        padding: 0 !important;
    }
    
    .nav-item {
        width: 100%;
        margin: 4px 0;
    }
    
    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 14px 20px !important;
        height: auto;
        border-radius: 12px !important;
        font-size: 15px;
    }
    
    .nav-link:hover {
        background: rgba(7, 155, 126, 0.1);
    }
    
    .nav-link.active {
        background: var(--gradient-primary);
    }
    
    .nav-link.cta-nav {
        margin-top: 10px;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 32px;
    }
    
    .theme-switch-wrapper {
        right: 60px;
    }
    
    .theme-switch {
        height: 26px;
        width: 48px;
    }
    
    .slider:before {
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 4px;
    }
    
    input:checked + .slider:before {
        transform: translateX(22px);
    }
    
    .slider .fa-sun,
    .slider .fa-moon {
        font-size: 10px;
    }
    
    .navbar-toggler {
        width: 42px;
        height: 42px;
    }
    
    .hamburger-icon {
        width: 20px;
        height: 14px;
    }
    
    .navbar-toggler.active .hamburger-icon span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .navbar-toggler.active .hamburger-icon span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/* ============================================
   ABOUT HERO SECTION
   ============================================ */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 160px 0 120px;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(7, 155, 126, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 540px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 120px;
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(7, 155, 126, 0.1);
    border: 1px solid rgba(7, 155, 126, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title-left {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-description {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark-secondary);
}

.mission-visual {
    padding-right: 40px;
}

.mission-card {
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    margin-bottom: 24px;
}

.mission-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.mission-card p {
    color: var(--text-secondary);
    margin: 0;
}

.mission-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mini-stat {
    padding: 24px;
    border-radius: 16px;
    text-align: center;
}

.mini-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.mini-stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.mission-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    padding: 32px;
    border-radius: 20px;
    position: relative;
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.value-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(7, 155, 126, 0.1);
    line-height: 1;
}

.value-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 155, 126, 0.15);
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary);
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991.98px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   AUDIENCE SECTION
   ============================================ */
.audience-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark-secondary);
}

.audience-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.audience-card {
    flex: 1;
    max-width: 380px;
    padding: 40px 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all var(--transition-base);
    position: relative;
}

.audience-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.audience-card.featured {
    background: linear-gradient(180deg, rgba(7, 155, 126, 0.15) 0%, var(--glass-bg) 100%);
    border-color: var(--primary);
    transform: scale(1.05);
}

.audience-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.audience-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    white-space: nowrap;
}

.audience-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 155, 126, 0.15);
    border-radius: 18px;
    margin-bottom: 24px;
    font-size: 28px;
    color: var(--primary);
}

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.audience-card > p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.audience-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.audience-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.audience-benefits li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

@media (max-width: 991.98px) {
    .audience-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .audience-card.featured {
        transform: none;
    }
}

/* ============================================
   APPROACH SECTION
   ============================================ */
.approach-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.approach-steps {
    margin-top: 32px;
}

.approach-step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.approach-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin: 0;
}

.approach-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 40px;
}

.approach-card {
    padding: 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all var(--transition-base);
}

.approach-card:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.approach-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.approach-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.approach-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 991.98px) {
    .approach-visual {
        padding-left: 0;
        margin-top: 40px;
    }
}

/* ============================================
   JOIN SECTION
   ============================================ */
.join-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.join-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.join-content {
    position: relative;
    z-index: 1;
}

.join-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.gradient-text-light {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.join-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark-secondary);
}

.contact-info {
    margin-top: 32px;
    margin-bottom: 32px;
}

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

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 155, 126, 0.15);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--primary);
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9375rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    transition: all var(--transition-base);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.contact-form-card {
    padding: 40px;
    border-radius: 24px;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    background: var(--bg-dark-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 16px;
    border-radius: 12px;
    transition: all var(--transition-base);
}

.form-control:focus,
.form-select:focus {
    background: var(--bg-dark-tertiary);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(7, 155, 126, 0.1);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 10.5l-5-5h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all var(--transition-base);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(7, 155, 126, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(7, 155, 126, 0.5);
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary);
}

.btn-light:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    padding-bottom: 60px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

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

.footer-newsletter-text {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.footer-newsletter .input-group {
    background: var(--bg-dark-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 4px;
}

.footer-newsletter .form-control {
    background: transparent;
    border: none;
    padding: 12px 16px;
}

.footer-newsletter .btn {
    border-radius: 8px;
    padding: 12px 20px;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
}

.footer-legal li a {
    color: var(--text-muted);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-legal li a:hover {
    color: var(--primary);
}

@media (max-width: 767.98px) {
    .footer-col {
        margin-bottom: 40px;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 16px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991.98px) {
    :root {
        --section-padding: 80px;
    }
    
    .mission-visual {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 60px;
    }
    
    .about-hero {
        padding-top: 120px;
    }
    
    .contact-form-card {
        padding: 24px;
        margin-top: 40px;
    }
}
