/* =============================================
   VitalPhysio - Physiotherapy Website
   Professional, clean, trustworthy (Teal accent)
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&amp;family=Playfair+Display:wght@700&amp;display=swap');

:root {
    --accent: #0f766e;
    --accent-dark: #0f5f5a;
}

body {
    font-family: 'Inter', system_ui, sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.1;
    tracking: -0.025em;
}

/* Section Headers */
.section-header {
    font-size: 2.75rem;
    line-height: 1.05;
    font-weight: 700;
    color: #1e2937;
}

/* Cards */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 
                0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Form Inputs */
input, textarea {
    transition: all 0.2s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.15);
}

/* Buttons */
.cta-button {
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.75rem;
    }
}

/* Clean subtle background */
.bg-health {
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(15, 118, 110, 0.08) 0%, transparent 50%);
}