/* ============================================
   AUTISM TUTOR - STYLE.CSS
   Brand Colors:
   - Deep Blue/Navy: #1a2a4a (trust, professionalism)
   - Green: #2d8a5e (growth, calm)
   - Gold: #c9a84c (hope, achievement)
   - Soft Teal: #4a9b9b (modern, welcoming)
   - White: #ffffff (clean contrast)
   ============================================ */

/* CSS Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1a2a4a;
    --navy-light: #243a5e;
    --navy-dark: #101d33;
    --green: #2d8a5e;
    --green-light: #3da873;
    --green-dark: #1f6b47;
    --gold: #c9a84c;
    --gold-light: #d4b96a;
    --gold-dark: #a88a3a;
    --teal: #4a9b9b;
    --teal-light: #5cb5b5;
    --teal-dark: #3a7a7a;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #f0f2f5;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --text-primary: #2c3e50;
    --text-secondary: #5a6c7d;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.15);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.4s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--navy);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
    background: var(--navy);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo-image {
    height: 68px;
    width: auto;
    max-width: 340px;
    object-fit: contain;
    display: block;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
    letter-spacing: 0.3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: var(--white);
    padding: 0;
    text-align: center;
}

.hero-logo-container {
    background: var(--white);
    padding: 3rem 2rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 100%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
}

.hero-content {
    background: var(--navy);
    padding: 4rem 2rem 5rem;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, var(--white), transparent);
    opacity: 0.1;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtext {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* ============================================
   MISSION SECTION
   ============================================ */
.mission-section {
    background: var(--off-white);
    text-align: center;
}

.mission-section .section-title {
    color: var(--navy);
}

.mission-statement-box {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 2rem auto 2.5rem;
    border-left: 4px solid var(--green);
    position: relative;
}

.mission-statement {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-primary);
    line-height: 1.8;
    font-weight: 400;
    font-style: italic;
}

.mission-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.divider-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.mission-tagline {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--green);
    font-weight: 600;
    letter-spacing: 1px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--white);
    text-align: center;
}

.services-section .section-title {
    color: var(--navy);
}

/* Services Grid - Two Cards Centered */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.services-grid-two {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: left;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--light-gray);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 64px;
    height: 64px;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.service-card:hover .service-accent {
    transform: scaleX(1);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--off-white);
    text-align: center;
}

.about-section .section-title {
    color: var(--navy);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.team-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.team-image-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--light-gray);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.team-card:hover .team-image {
    transform: scale(1.05);
}

.team-info {
    padding: 2rem;
    text-align: center;
}

.team-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.bio-link {
    color: var(--navy);
    position: relative;
    transition: color var(--transition-fast);
}

.bio-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-normal);
}

.bio-link:hover {
    color: var(--teal);
}

.bio-link:hover::after {
    width: 100%;
}

.team-role {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--white);
    text-align: center;
}

.contact-section .section-title {
    color: var(--navy);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    text-align: left;
}

.contact-form-wrapper {
    background: var(--off-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-textarea {
    padding: 1rem 1.2rem;
    border: 2px solid #e0e4e8;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--white);
    transition: all var(--transition-fast);
    width: 100%;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(74, 155, 155, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #adb5bd;
}

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem 0;
}

.checkbox-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid #d0d5db;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all var(--transition-fast);
    background: var(--white);
}

.checkbox-custom::after {
    content: '✓';
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.checkbox-input:checked + .checkbox-custom {
    background: var(--green);
    border-color: var(--green);
}

.checkbox-input:checked + .checkbox-custom::after {
    opacity: 1;
}

.checkbox-input:focus + .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(45, 138, 94, 0.2);
}

.checkbox-text {
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.5;
}

/* Contact Info */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-card {
    background: var(--navy);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-detail {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.2rem;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    transition: color var(--transition-fast);
}

.contact-value:hover {
    color: var(--gold);
}

.contact-cta {
    background: var(--off-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--gold);
}

.contact-cta-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--navy);
    font-style: italic;
    line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--navy-dark);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--gold);
    font-style: italic;
    letter-spacing: 0.5px;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--gold);
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   MODALS
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 29, 51, 0.85);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.modal-container {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s ease;
    z-index: 2001;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
    line-height: 1;
    padding-bottom: 3px;
}

.modal-close:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.modal-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    flex-shrink: 0;
}

.modal-title-group {
    text-align: left;
}

.modal-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.modal-role {
    font-size: 1rem;
    color: var(--teal);
    font-weight: 500;
}

.modal-body {
    padding: 2rem 2.5rem 2.5rem;
}

.modal-body p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
        height: 74px;
    }
    
    .nav-logo-image {
        height: 52px;
        max-width: 240px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        box-shadow: var(--shadow-lg);
        border-top: 1px solid rgba(201, 168, 76, 0.2);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hero-logo-container {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .hero-content {
        padding: 3rem 1.5rem 4rem;
    }
    
    .hero-headline {
        font-size: 1.9rem;
    }
    
    .hero-subtext {
        font-size: 1.05rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .section-container {
        padding: 3.5rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Two cards stack on mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid-two {
        max-width: 100%;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
    
    .mission-statement-box {
        padding: 2rem;
    }
    
    .mission-statement {
        font-size: 1.15rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .modal-container {
        margin: 1rem;
        max-height: 90vh;
    }
    
    .modal-header {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem 1rem;
    }
    
    .modal-title-group {
        text-align: center;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-name {
        font-size: 1.5rem;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 64px;
    }
    
    .nav-logo-image {
        height: 44px;
        max-width: 190px;
    }
    
    .nav-menu {
        top: 64px;
    }
    
    .hero-headline {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .team-name {
        font-size: 1.3rem;
    }
    
    .mission-statement {
        font-size: 1.05rem;
    }
    
    .mission-tagline {
        font-size: 1.2rem;
    }
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
.modal-container::-webkit-scrollbar {
    width: 8px;
}

.modal-container::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 4px;
}

.modal-container::-webkit-scrollbar-thumb {
    background: var(--medium-gray);
    border-radius: 4px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: var(--dark-gray);
}

/* ============================================
   SELECTION STYLING
   ============================================ */
::selection {
    background: rgba(201, 168, 76, 0.3);
    color: var(--navy);
}

/* ============================================
   FOCUS STYLES FOR ACCESSIBILITY
   ============================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:nth-child(1) { animation: fadeInUp 0.5s ease 0.1s both; }
.service-card:nth-child(2) { animation: fadeInUp 0.5s ease 0.2s both; }