/* ========================================
   Albert Graziosa PC - Medical Practice Website
   Classic & Elegant Design System
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    /* Plum Palette */
    --plum-900: #4A1C3A;
    --plum-800: #5C2449;
    --plum-700: #7B3F5B;
    --plum-600: #9B5472;
    --plum-500: #B8708A;
    --plum-100: #F5E6EB;
    --plum-50:  #FCF4F6;

    /* Amber Palette */
    --amber-700: #92602C;
    --amber-600: #B87B3A;
    --amber-500: #D4A373;
    --amber-400: #E8C49A;
    --amber-100: #FDF3E8;
    --amber-50:  #FEFBF5;

    /* Neutrals */
    --neutral-900: #1A1A1A;
    --neutral-700: #3D3D3D;
    --neutral-500: #6B6B6B;
    --neutral-300: #A8A8A8;
    --neutral-100: #F0EDE9;
    --neutral-50:  #FAF8F6;
    --white: #FFFFFF;

    /* Typography */
    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans: 'Lato', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 12vw, 140px) 0;
    --container-max: 1280px;
    --container-padding: clamp(20px, 4vw, 48px);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--neutral-700);
    background-color: var(--white);
    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);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* --- Typography --- */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--plum-800);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--neutral-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

/* --- Buttons --- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    background-color: var(--plum-700);
    color: var(--white);
    border: 2px solid var(--plum-700);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-primary:hover {
    background-color: var(--plum-800);
    border-color: var(--plum-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 63, 91, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1rem 2.25rem;
    background-color: transparent;
    color: var(--plum-700);
    border: 2px solid var(--plum-700);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    background-color: var(--plum-700);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-100);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--plum-800);
}

.logo-icon {
    color: var(--amber-600);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--neutral-700);
    position: relative;
    padding: 0.25rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--amber-500);
    transition: width var(--transition-base);
}

.main-nav a:hover {
    color: var(--plum-700);
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav .btn-primary {
    padding: 0.75rem 1.75rem;
    font-size: 0.8125rem;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--plum-800);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Mobile Overlay --- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(74, 28, 58, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--white);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--amber-400);
}

.mobile-cta {
    margin-top: 1rem;
    padding: 1rem 2.5rem;
    border: 2px solid var(--amber-500);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-400);
}

.mobile-cta:hover {
    background-color: var(--amber-500);
    color: var(--plum-900);
}

/* --- Hero Section --- */
.hero {
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--plum-50) 50%, var(--amber-50) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(212, 163, 115, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.hero-accent {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--amber-500), var(--plum-500));
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-700);
    margin-bottom: 1.25rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--plum-900);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--neutral-500);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-700);
}

.trust-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--plum-100);
    color: var(--plum-700);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(74, 28, 58, 0.15);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 600/750;
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--amber-400);
    border-radius: 8px;
    z-index: -1;
}

.hero-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background-color: var(--white);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    color: var(--white);
    flex-shrink: 0;
}

.hero-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neutral-500);
    margin-bottom: 0.25rem;
}

.hero-card-phone {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--plum-800);
}

.hero-card-phone:hover {
    color: var(--amber-600);
}

/* --- About Section --- */
.about {
    padding: var(--section-padding);
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(74, 28, 58, 0.12);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 500/600;
}

.about-image-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--white);
}

.about-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 400/300;
}

.about-content .section-title {
    margin-bottom: 1.25rem;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--neutral-500);
    margin-bottom: 1.25rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.about-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--plum-100);
    color: var(--plum-700);
    flex-shrink: 0;
}

.about-feature h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--plum-800);
    margin-bottom: 0.375rem;
}

.about-feature p {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    line-height: 1.6;
}

/* --- Services Section --- */
.services {
    padding: var(--section-padding);
    background-color: var(--neutral-50);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum-700), var(--amber-500), var(--plum-700));
}

.section-header {
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: all var(--transition-base);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--plum-700), var(--amber-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(74, 28, 58, 0.1);
    border-color: var(--plum-100);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--plum-100), var(--amber-100));
    color: var(--plum-700);
    margin-bottom: 1.5rem;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--plum-700), var(--plum-600));
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--plum-800);
    margin-bottom: 0.875rem;
}

.service-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--neutral-500);
}

/* --- Approach Section --- */
.approach {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--plum-900) 0%, var(--plum-800) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.approach::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(212, 163, 115, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.approach .section-label {
    color: var(--amber-400);
}

.approach .section-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.approach-text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.approach-values {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.approach-value {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.value-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--amber-500);
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.7;
}

.approach-value h4 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.approach-value p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.approach-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 550/700;
    border-radius: 8px;
}

.approach-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
    border-radius: 0 0 8px 8px;
}

.overlay-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--amber-400);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Location Section --- */
.location {
    padding: var(--section-padding);
    background-color: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: stretch;
}

.location-info {
    padding-right: 1rem;
}

.location-text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--neutral-500);
    margin-bottom: 2.5rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.location-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--plum-100);
    color: var(--plum-700);
    flex-shrink: 0;
}

.location-item h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--plum-800);
    margin-bottom: 0.375rem;
}

.location-item p,
.location-item a {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    line-height: 1.6;
}

.location-item a:hover {
    color: var(--amber-600);
}

.location-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    min-height: 450px;
}

.location-map iframe {
    border-radius: 8px;
}

/* --- Contact Section --- */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--amber-50) 0%, var(--plum-50) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
}

.contact-content .section-title {
    margin-bottom: 1.25rem;
}

.contact-text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--neutral-500);
    margin-bottom: 2.5rem;
}

.contact-direct {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.direct-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
    color: var(--white);
    flex-shrink: 0;
}

.contact-direct-item p {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--neutral-500);
    margin-bottom: 0.25rem;
}

.direct-phone {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--plum-800);
}

.direct-phone:hover {
    color: var(--amber-600);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: var(--white);
    border-radius: 8px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 20px 50px rgba(74, 28, 58, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--neutral-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 1rem;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--neutral-100);
    border-radius: 4px;
    background-color: var(--neutral-50);
    color: var(--neutral-700);
    transition: all var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-500);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(123, 63, 91, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--neutral-300);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-notice {
    font-size: 0.8125rem;
    color: var(--neutral-500);
    text-align: center;
    margin-top: 0.5rem;
}

/* Form Success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    gap: 1rem;
}

.form-success.active {
    display: flex;
}

.success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--plum-100), var(--amber-100));
    color: var(--plum-700);
    margin-bottom: 0.5rem;
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--plum-800);
}

.form-success p {
    font-size: 1rem;
    color: var(--neutral-500);
    line-height: 1.7;
    max-width: 360px;
}

/* --- Footer --- */
.footer {
    background-color: var(--plum-900);
    color: var(--white);
    padding: clamp(60px, 8vw, 100px) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: clamp(40px, 6vw, 80px);
    padding-bottom: clamp(40px, 6vw, 60px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-logo-icon {
    color: var(--amber-400);
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    max-width: 320px;
}

.footer-nav h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--amber-400);
}

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-phone a {
    color: var(--amber-400);
    font-weight: 500;
}

.footer-phone a:hover {
    color: var(--amber-500);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: clamp(20px, 4vw, 30px) 0;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.footer-disclaimer {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.3) !important;
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }

    .hero-headline {
        font-size: clamp(2.25rem, 4vw, 3.5rem);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-card {
        left: -20px;
        bottom: 20px;
    }
}

@media (max-width: 900px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-accent {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-image-accent {
        display: none;
    }

    .hero-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 1.5rem;
        justify-content: center;
    }

    .about-grid,
    .approach-grid,
    .location-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image-col {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-image-secondary {
        right: 0;
        bottom: -20px;
    }

    .approach-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .header-container {
        height: 70px;
    }

    .hero {
        padding-top: 70px;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .about-image-secondary {
        width: 65%;
        right: -10px;
        bottom: -15px;
    }
}

@media (max-width: 380px) {
    .logo-text {
        font-size: 1rem;
    }

    .hero-card {
        padding: 1rem 1.25rem;
    }

    .hero-card-phone {
        font-size: 1.125rem;
    }
}
