/* ========================================
   CONCORD FINTECH SERVICES - CUSTOM STYLES
   Premium Financial Advisory Website
   ======================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors */
    --concord-blue: #0066CC;
    --deep-blue: #004A99;
    --growth-green: #7AB800;
    --fresh-green: #9BCF53;

    /* Neutrals */
    --charcoal: #1A1A1A;
    --slate-grey: #4A5568;
    --border-grey: #E2E8F0;
    --bg-grey: #F7FAFC;

    /* Tints */
    --light-blue: #E6F2FF;
    --light-green: #F0F8E8;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066CC 0%, #004A99 100%);
    --gradient-accent: linear-gradient(135deg, #7AB800 0%, #9BCF53 100%);

    /* Spacing */
    --section-padding: 5rem 0;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--concord-blue);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--concord-blue);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* ===== LAYOUT ===== */
.section-padding {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: white;
    color: var(--concord-blue);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--concord-blue);
}

.btn-secondary:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: 1.05rem;
}

.btn-cta {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: var(--concord-blue);
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    background: var(--light-green);
}

/* ===== NAVIGATION ===== */
#navbar {
    transition: all var(--transition-normal);
}

#navbar.scrolled {
    box-shadow: var(--shadow-md);
}

/* ===== HERO SECTION ===== */
.hero-title,
.hero-subtitle,
.hero-stats,
.hero-ctas {
    opacity: 0;
    transform: translateY(30px);
}

.stat-card {
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* ===== TRUST STRIP ===== */
.partner-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--slate-grey);
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-grey);
    border-radius: 0.5rem;
    transition: all var(--transition-normal);
    text-align: center;
    letter-spacing: 0.05em;
}

.partner-logo:hover {
    color: var(--concord-blue);
    border-color: var(--concord-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== STAT CARDS ===== */
.stat-card-large {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    text-align: center;
}

.stat-card-large:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: var(--light-green);
    color: var(--growth-green);
    border-radius: 1rem;
}

/* ===== TIMELINE ===== */
.timeline-year {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    fill: var(--concord-blue);
}

.timeline-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    fill: var(--slate-grey);
}

.timeline-node {
    opacity: 0;
    transform: translateX(-20px);
}

.timeline-line {
    stroke-dasharray: 2200;
    stroke-dashoffset: 2200;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    padding: 2rem;
    background: white !important;
    border-radius: 1rem;
    border: 2px solid var(--border-grey);
    transition: all var(--transition-normal);
    height: 100%;
    opacity: 1 !important;
    /* Force visibility - override any animation library */
    transform: none !important;
    /* Override any transform animations */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
    border-color: var(--concord-blue);
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.15) !important;
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: var(--light-blue);
    color: var(--concord-blue);
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.1);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.25);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal) !important;
    /* Force dark color */
    margin-bottom: 0.75rem;
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
}

.service-description {
    color: var(--slate-grey) !important;
    /* Force visible grey color */
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
    /* Slightly bolder for better readability */
}


/* ===== PARTNER CARDS ===== */
.partner-card {
    padding: 2rem;
    background: white;
    border: 2px solid var(--border-grey);
    border-radius: 0.75rem;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--slate-grey);
    transition: all var(--transition-normal);
}

.partner-card:hover {
    color: var(--concord-blue);
    border-color: var(--concord-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* ===== PARTNER LOGO IMAGES ===== */
.partner-logo-img {
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.partner-logo-img img {
    width: 100%;
    height: auto;
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    transition: all var(--transition-normal);
}

.partner-logo-img:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.partner-card-img {
    padding: 2rem;
    background: white;
    border: 2px solid var(--border-grey);
    border-radius: 0.75rem;
    text-align: center;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.partner-card-img img {
    width: 100%;
    height: auto;
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all var(--transition-normal);
}

.partner-card-img:hover {
    border-color: var(--concord-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.partner-card-img:hover img {
    transform: scale(1.05);
}


/* ===== LOCATION CARDS ===== */
.location-card {
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    border: 2px solid var(--border-grey);
    transition: all var(--transition-normal);
}

.location-card:hover {
    border-color: var(--concord-blue);
    box-shadow: var(--shadow-md);
}

.location-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--light-blue);
    color: var(--concord-blue);
    border-radius: 0.5rem;
}

/* Enhanced Location Cards */
.location-card-enhanced {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 2px solid var(--border-grey);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.location-card-enhanced:hover {
    border-color: var(--concord-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.location-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

/* Map Labels */
.map-label-large {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.map-label-small {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
}

/* Coverage Statistics Cards */
.coverage-stat-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 2px solid var(--border-grey);
    text-align: center;
    transition: all var(--transition-normal);
}

.coverage-stat-card:hover {
    border-color: var(--concord-blue);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* Pulse Ring Animation for Map */
@keyframes pulseRing {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.8);
    }
}

.pulse-ring {
    animation: pulseRing 2s ease-out infinite;
}


/* ===== TEAM CARDS ===== */
.team-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 2px solid var(--border-grey);
    text-align: center;
    transition: all var(--transition-normal);
}

.team-card:hover {
    border-color: var(--growth-green);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: var(--gradient-accent);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.team-credential {
    font-size: 0.875rem;
    color: var(--concord-blue);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.875rem;
    color: var(--slate-grey);
}

/* ===== ENHANCED TEAM CARDS ===== */
.team-card-enhanced {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 1.25rem;
    border: 2px solid var(--border-grey);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.team-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.team-card-enhanced:hover::before {
    transform: scaleX(1);
}

.team-card-enhanced:hover {
    border-color: var(--concord-blue);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.15);
}

/* Photo Placeholder */
.team-photo-wrapper {
    margin-bottom: 1.5rem;
}

.team-photo-placeholder {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto;
    background: linear-gradient(135deg, #E6F2FF 0%, #F0F8E8 100%);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08),
        0 0 0 2px var(--border-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.team-card-enhanced:hover .team-photo-placeholder {
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.2),
        0 0 0 2px var(--concord-blue);
    transform: scale(1.05);
}

.team-photo-icon {
    width: 70px;
    height: 70px;
    color: var(--concord-blue);
    opacity: 0.3;
    transition: all var(--transition-normal);
}

.team-card-enhanced:hover .team-photo-icon {
    opacity: 0.5;
    transform: scale(1.1);
}

/* Initial Badge on Photo */
.team-initial-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 48px;
    height: 48px;
    background: var(--gradient-accent);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal);
}

.team-card-enhanced:hover .team-initial-badge {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(122, 184, 0, 0.3);
}

/* Team Info */
.team-info {
    padding-top: 0.5rem;
}

.team-name-enhanced {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.625rem;
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
}

.team-credential-enhanced {
    font-size: 0.9375rem;
    color: var(--concord-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.5;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Role Badge */
.team-role-badge {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 100%);
    color: var(--concord-blue);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 2rem;
    border: 1px solid var(--border-grey);
    transition: all var(--transition-normal);
    font-family: 'Inter', sans-serif;
}

.team-card-enhanced:hover .team-role-badge {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--concord-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.2);
}

/* Director Badge Variant */
.team-role-director {
    background: linear-gradient(135deg, #FFE5E5 0%, #FFF0E5 100%);
    color: var(--deep-blue);
    border-color: #FFD4D4;
}

.team-card-enhanced:hover .team-role-director {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--concord-blue) 100%);
    color: white;
    border-color: var(--deep-blue);
}

/* Support Team Banner */
.support-team-banner {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 1.25rem;
    border: 2px solid var(--border-grey);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    max-width: 800px;
    margin: 0 auto;
    transition: all var(--transition-normal);
}

.support-team-banner:hover {
    border-color: var(--concord-blue);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.12);
    transform: translateY(-4px);
}

/* Responsive Team Cards */
@media (max-width: 768px) {
    .team-card-enhanced {
        padding: 2rem 1.5rem;
    }

    .team-photo-placeholder {
        width: 120px;
        height: 120px;
    }

    .team-photo-icon {
        width: 60px;
        height: 60px;
    }

    .team-initial-badge {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .team-name-enhanced {
        font-size: 1.25rem;
    }

    .team-credential-enhanced {
        font-size: 0.875rem;
        min-height: 2rem;
    }

    .support-team-banner {
        padding: 2rem 1.5rem;
    }
}


/* ===== CREDIBILITY SECTION ===== */
.credibility-stat {
    opacity: 0;
    transform: translateY(20px);
}

.counter {
    transition: all var(--transition-slow);
}


/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    padding: 2.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* ===== CREATIVE TIMELINE UI ===== */
.timeline-line {
    height: 0;
    /* Starts at 0 for animation */
    width: 4px;
    background: linear-gradient(to bottom, var(--concord-blue), var(--growth-green));
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 102, 204, 0.2);
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: white;
    border: 4px solid var(--concord-blue);
    border-radius: 50%;
    z-index: 20;
    transition: all var(--transition-normal);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.timeline-item:hover .timeline-dot {
    background: var(--growth-green);
    border-color: white;
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(122, 184, 0, 0.2);
}

.timeline-card {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-grey);
    transition: all var(--transition-normal);
    z-index: 10;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--concord-blue);
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: white;
    transform: rotate(45deg);
    border-left: 1px solid var(--border-grey);
    border-bottom: 1px solid var(--border-grey);
    transition: all var(--transition-normal);
}

.timeline-card:hover::before {
    border-color: var(--concord-blue);
}

/* Connectors for left/right cards */
.timeline-content-left .timeline-card::before {
    right: -10px;
    border-left: 0;
    border-bottom: 0;
    border-right: 1px solid var(--border-grey);
    border-top: 1px solid var(--border-grey);
}

.timeline-content-right .timeline-card::before {
    left: -10px;
}

.timeline-content-left .timeline-card:hover::before {
    border-color: var(--concord-blue);
}

/* Responsiveness for Timeline */
@media (max-width: 768px) {
    .timeline-line {
        left: 2rem;
    }

    .timeline-item {
        flex-direction: row !important;
        justify-content: flex-start !important;
    }

    .timeline-content-left,
    .timeline-content-right {
        width: 100% !important;
        padding-left: 4rem !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-item .absolute {
        left: 2rem !important;
    }

    .timeline-empty {
        display: none;
    }

    .timeline-card::before {
        left: -10px !important;
        right: auto !important;
        border-left: 1px solid var(--border-grey) !important;
        border-bottom: 1px solid var(--border-grey) !important;
        border-right: 0 !important;
        border-top: 0 !important;
    }
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-grey);
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all var(--transition-normal);
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: var(--concord-blue);
    box-shadow: 0 0 0 3px var(--light-blue);
}

.form-input::placeholder {
    color: #CBD5E0;
}

/* ===== CONTACT INFO CARDS ===== */
.contact-info-card {
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    border: 2px solid var(--border-grey);
    transition: all var(--transition-normal);
    opacity: 1 !important;
    /* Ensure visibility */
    transform: translateY(0);
}

.contact-info-card:hover {
    border-color: var(--concord-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    background-color: #fdfdfd;
}

.contact-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: var(--light-blue);
    color: var(--concord-blue);
    border-radius: 0.5rem;
}

.contact-info-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.contact-info-link {
    color: var(--concord-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-info-link:hover {
    color: var(--growth-green);
    text-decoration: underline;
}

/* ===== MAP CONTAINER ===== */
.map-container {
    padding: 2.5rem;
    /* Match form padding */
    background: white;
    border-radius: 1rem;
    /* Match form radius */
    border: 2px solid var(--border-grey);
    transition: all var(--transition-normal);
    height: 100%;
    /* Fill column height */
    display: flex;
    flex-direction: column;
}

.map-container:hover {
    border-color: var(--concord-blue);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.map-wrapper {
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    flex-grow: 1;
    /* Fill remaining space */
    position: relative;
    min-height: 400px;
    /* Minimum height for map */
}

.map-wrapper:hover {
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Ensure Contact Form matches Map Box styling */
.contact-form-wrapper {
    padding: 2.5rem;
    background: white;
    border-radius: 1rem;
    border: 2px solid var(--border-grey);
    /* Added border to match map */
    box-shadow: var(--shadow-lg);
    height: 100%;
    /* Fill column height */
    transition: all var(--transition-normal);
}

.contact-form-wrapper:hover {
    border-color: var(--concord-blue);
    transform: translateY(-4px);
}



/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.pulse-dot {
    animation: pulse 2s ease-in-out infinite;
}

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 1024px) {
    .section-padding {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .btn-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .service-card,
    .team-card {
        padding: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus visible for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--concord-blue);
    outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {

    nav,
    footer,
    .btn-primary,
    .btn-secondary,
    .btn-cta {
        display: none;
    }

    body {
        color: black;
        background: white;
    }

    a {
        text-decoration: underline;
    }

    .section-padding {
        padding: 2rem 0;
    }
}

/* ===== SMOOTH REVEAL CLASSES (for GSAP) ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--concord-blue);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--deep-blue);
}

/* ===== SELECTION ===== */
::selection {
    background: var(--light-blue);
    color: var(--concord-blue);
}

::-moz-selection {
    background: var(--light-blue);
    color: var(--concord-blue);
}