/* ============================================
   Cindy DeOsca — Jacksonville Real Estate
   Custom Styles
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --green-50: #f0f7f1;
    --green-100: #d5eddf;
    --green-200: #aed9be;
    --green-300: #74c090;
    --green-400: #4a9e6a;
    --green-500: #2d7d4f;
    --green-600: #1a5c3a;
    --green-700: #14472d;
    --green-800: #0f3622;
    --green-900: #0a2618;

    --off-white: #faf9f6;
    --cream: #f5f3ee;
    --warm-gray-50: #f8f7f5;
    --warm-gray-100: #f0eeea;
    --warm-gray-200: #e2dfd9;
    --warm-gray-300: #c8c3ba;
    --warm-gray-400: #a8a196;
    --warm-gray-500: #7a7369;
    --warm-gray-600: #5c564e;
    --warm-gray-700: #3d3832;
    --warm-gray-800: #2a2620;
    --warm-gray-900: #1a1713;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --shadow-sm: 0 1px 3px rgba(26, 92, 58, 0.06), 0 1px 2px rgba(26, 92, 58, 0.04);
    --shadow-md: 0 4px 16px rgba(26, 92, 58, 0.08), 0 2px 6px rgba(26, 92, 58, 0.05);
    --shadow-lg: 0 12px 40px rgba(26, 92, 58, 0.12), 0 4px 12px rgba(26, 92, 58, 0.06);
    --shadow-xl: 0 24px 60px rgba(26, 92, 58, 0.14), 0 8px 20px rgba(26, 92, 58, 0.08);

    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', 'Georgia', serif;

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

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--warm-gray-800);
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Section Labels & Titles ---------- */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-600);
    background: var(--green-100);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-label--light {
    color: var(--green-200);
    background: rgba(255, 255, 255, 0.15);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--warm-gray-900);
    margin-bottom: 16px;
}

.section-title--light {
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--warm-gray-600);
    max-width: 600px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn--primary {
    background: var(--green-600);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(26, 92, 58, 0.3);
}

.btn--primary:hover {
    background: var(--green-700);
    box-shadow: 0 6px 20px rgba(26, 92, 58, 0.4);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--green-700);
    border: 2px solid var(--green-300);
}

.btn--ghost:hover {
    background: var(--green-50);
    border-color: var(--green-500);
    transform: translateY(-2px);
}

.btn--light {
    background: #ffffff;
    color: var(--green-700);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn--light:hover {
    background: var(--green-50);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn--outline-light {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--green-600);
    border: 2px solid var(--green-200);
}

.btn--outline:hover {
    background: var(--green-50);
    border-color: var(--green-500);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 92, 58, 0.08);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(250, 249, 246, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-700);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--warm-gray-700);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--green-700);
    background: var(--green-50);
}

.nav-link--cta {
    background: var(--green-600);
    color: #ffffff;
    margin-left: 8px;
}

.nav-link--cta:hover {
    background: var(--green-700);
    color: #ffffff;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--warm-gray-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

/* Decorative background blobs */
.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

.hero-bg-shape--1 {
    width: 500px;
    height: 500px;
    background: var(--green-200);
    top: -100px;
    right: -100px;
}

.hero-bg-shape--2 {
    width: 350px;
    height: 350px;
    background: var(--green-100);
    bottom: -50px;
    left: -80px;
}

.hero-bg-shape--3 {
    width: 200px;
    height: 200px;
    background: var(--green-200);
    top: 40%;
    left: 30%;
    opacity: 0.25;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Main hero card */
.hero-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 300px;
}

.hero-card-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-700);
    background: var(--green-100);
    padding: 6px 14px;
    border-radius: 100px;
    align-self: flex-start;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
    color: var(--warm-gray-900);
}

.hero-subheadline {
    font-size: 1rem;
    color: var(--warm-gray-600);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.hero-card-image {
    position: relative;
    overflow: hidden;
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating stat cards */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.stat-card--1 {
    margin-top: 0;
}

.stat-card--2 {
    margin-top: -16px;
}

.stat-card--3 {
    margin-top: -32px;
}

.stat-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-100);
    border-radius: var(--radius-md);
    color: var(--green-700);
}

.stat-card-body {
    display: flex;
    flex-direction: column;
}

.stat-card-number {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--warm-gray-900);
    line-height: 1.3;
}

.stat-card-label {
    font-size: 0.85rem;
    color: var(--warm-gray-500);
    line-height: 1.4;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--off-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 64px;
    align-items: center;
}

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

.about-image-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    background: var(--green-200);
    border-radius: var(--radius-xl);
    z-index: 0;
}

.about-image-wrapper img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-xl);
    width: 100%;
    height: 560px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    z-index: 2;
    background: var(--green-600);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-content p {
    color: var(--warm-gray-600);
    line-height: 1.8;
    font-size: 1.02rem;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.value-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-100);
    border-radius: var(--radius-md);
    color: var(--green-700);
}

.value-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--warm-gray-800);
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--cream);
}

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

.service-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-200);
}

.service-card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.service-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-100);
    border-radius: var(--radius-md);
    color: var(--green-700);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--warm-gray-900);
}

.service-description {
    font-size: 0.95rem;
    color: var(--warm-gray-600);
    line-height: 1.75;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--warm-gray-700);
}

.service-features li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--green-400);
    border-radius: 50%;
}

/* ============================================
   AREAS
   ============================================ */
.areas {
    padding: 100px 0;
    background: var(--off-white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.area-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.area-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.area-card-image {
    overflow: hidden;
    height: 200px;
}

.area-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.area-card:hover .area-card-image img {
    transform: scale(1.05);
}

.area-card-body {
    padding: 24px;
}

.area-card-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--warm-gray-900);
    margin-bottom: 8px;
}

.area-card-desc {
    font-size: 0.9rem;
    color: var(--warm-gray-600);
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-quote-mark {
    position: absolute;
    top: 20px;
    right: 28px;
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1;
    color: var(--green-100);
    pointer-events: none;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--warm-gray-700);
    line-height: 1.8;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-100);
    border-radius: 50%;
    color: var(--green-700);
    flex-shrink: 0;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--warm-gray-900);
}

.testimonial-author-location {
    font-size: 0.8rem;
    color: var(--warm-gray-500);
}

/* ============================================
   CTA
   ============================================ */
.cta {
    padding: 100px 0;
    background: var(--green-700);
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.cta-shape--1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
}

.cta-shape--2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content .section-title {
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-description {
    font-size: 1.02rem;
    color: var(--warm-gray-600);
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-100);
    border-radius: var(--radius-md);
    color: var(--green-700);
}

.contact-detail-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-gray-400);
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--warm-gray-800);
    font-weight: 500;
    line-height: 1.5;
}

.contact-detail-link {
    color: var(--green-700);
    transition: color var(--transition-fast);
}

.contact-detail-link:hover {
    color: var(--green-500);
}

/* Contact form */
.contact-form-wrapper {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warm-gray-900);
    margin-bottom: 6px;
}

.contact-form-subtitle {
    font-size: 0.9rem;
    color: var(--warm-gray-500);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--warm-gray-700);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--warm-gray-800);
    background: var(--warm-gray-50);
    border: 1.5px solid var(--warm-gray-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input::placeholder {
    color: var(--warm-gray-400);
}

.form-input:focus {
    border-color: var(--green-400);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(45, 125, 79, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%237a7369' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

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

/* Form success */
.form-success {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

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

.form-success-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--warm-gray-900);
}

.form-success-text {
    font-size: 0.95rem;
    color: var(--warm-gray-600);
    line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--warm-gray-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: var(--green-300);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    max-width: 300px;
}

.footer-heading {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    max-width: 500px;
    text-align: right;
    line-height: 1.6;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   (progressive enhancement — content visible without JS)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .reveal-on-scroll {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal-on-scroll.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered delays */
    .reveal-on-scroll[data-delay="1"] { transition-delay: 0.1s; }
    .reveal-on-scroll[data-delay="2"] { transition-delay: 0.2s; }
    .reveal-on-scroll[data-delay="3"] { transition-delay: 0.3s; }
    .reveal-on-scroll[data-delay="4"] { transition-delay: 0.4s; }
    .reveal-on-scroll[data-delay="5"] { transition-delay: 0.5s; }
    .reveal-on-scroll[data-delay="6"] { transition-delay: 0.6s; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-card {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .hero-card-image {
        height: 300px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 8px;
    }

    .stat-card {
        flex: 1;
        min-width: 180px;
        margin-top: 0 !important;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrapper {
        max-width: 480px;
        margin: 0 auto;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 249, 246, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(26, 92, 58, 0.08);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav-menu.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .nav-link--cta {
        margin-left: 0;
        text-align: center;
        margin-top: 8px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-card-content {
        padding: 32px 28px;
    }

    .hero-headline {
        font-size: 1.4rem;
    }

    .hero-actions {
        flex-direction: column;
    }

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

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

    .about-image-badge {
        right: 10px;
        bottom: -10px;
    }

    .about-image-accent {
        top: 12px;
        left: 12px;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-card-image {
        height: 240px;
    }

    .stat-card {
        padding: 16px 18px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .about,
    .services,
    .areas,
    .testimonials,
    .cta,
    .contact {
        padding: 72px 0;
    }
}
