/* ===== Advance Therapy & Wellness Center — Custom Styles ===== */

/* Base reset handled in index.html style block */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: rgba(201, 168, 76, 0.3);
    color: #f5f0e8;
}

/* ===== HERO ===== */
.hero-bg {
    position: relative;
    min-height: 100vh;
}

/* Gold shimmer animation for accent elements */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.gold-shimmer {
    background: linear-gradient(90deg, #a07c2e, #e0c872, #c9a84c, #e0c872, #a07c2e);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* ===== NAVBAR SCROLL EFFECT ===== */
.nav-glass.scrolled {
    background: rgba(10, 10, 12, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

/* ===== SERVICE CARDS ===== */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, rgba(201, 168, 76, 0.05), transparent);
    transition: height 0.4s ease;
}

.service-card:hover::after {
    height: 100%;
}

/* ===== STAT COUNTER ANIMATION ===== */
.stat-number {
    display: inline-block;
}

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
}

/* ===== FORM FOCUS STATES ===== */
.form-input:focus {
    border-color: #c9a84c !important;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-link {
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: #c9a84c;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .hero-bg h1 {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-card {
        padding: 28px 24px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .corner-accent {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero-bg h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn-gold,
    .btn-outline {
        padding: 12px 24px;
        font-size: 0.7rem;
        width: 100%;
        text-align: center;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .nav-glass,
    .mobile-menu,
    .hero-bg::before,
    .hero-bg::after {
        display: none;
    }

    body {
        background: #fff;
        color: #000;
    }

    .service-card,
    .testimonial-card {
        border: 1px solid #ccc;
        break-inside: avoid;
    }
}
