/* ============================================
   Villa Management — Libertyville Real Estate
   Burgundy + Blush | Vibrant Modern
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5A1F2B;
    --burgundy-light: #C4565E;
    --blush: #FAD4C0;
    --blush-light: #FDE8DE;
    --blush-pale: #FFF5F0;
    --cream: #FFFAF7;
    --dark: #1A0A0E;
    --text: #2D1518;
    --text-light: #6B454A;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(123, 45, 59, 0.08);
    --shadow-md: 0 8px 30px rgba(123, 45, 59, 0.12);
    --shadow-lg: 0 20px 60px rgba(123, 45, 59, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
    color: var(--burgundy);
}

em {
    font-style: italic;
    color: var(--burgundy-light);
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(255, 250, 247, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    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;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    transition: var(--transition);
}

.nav.scrolled .nav-logo {
    color: var(--burgundy);
}

.nav-logo-icon {
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blush);
    transition: var(--transition);
}

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

.nav.scrolled .nav-links a {
    color: var(--text);
}

.nav.scrolled .nav-links a::after {
    background: var(--burgundy);
}

.nav-links a:hover {
    color: var(--white);
}

.nav.scrolled .nav-links a:hover {
    color: var(--burgundy);
}

.nav-cta {
    background: var(--blush) !important;
    color: var(--burgundy) !important;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav.scrolled .nav-toggle span {
    background: var(--burgundy);
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(90, 31, 43, 0.88) 0%,
        rgba(123, 45, 59, 0.75) 50%,
        rgba(196, 86, 94, 0.6) 100%
    );
}

.hero-geo {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero-geo--left {
    width: 400px;
    height: 400px;
    background: var(--blush);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    opacity: 0.12;
}

.hero-geo--right {
    width: 250px;
    height: 250px;
    background: var(--burgundy-light);
    border-radius: 50%;
    top: 15%;
    right: 5%;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(250, 212, 192, 0.15);
    border: 1px solid rgba(250, 212, 192, 0.3);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--blush);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--blush);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    color: var(--white);
    font-weight: 700;
    max-width: 800px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-headline em {
    color: var(--blush);
    font-style: italic;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--blush);
    color: var(--burgundy);
    border-color: var(--blush);
}

.btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

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

.hero-stats {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--blush);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(250, 212, 192, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   Section Shared
   ============================================ */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--burgundy);
    margin-bottom: 16px;
}

.section-label-line {
    width: 40px;
    height: 2px;
    background: var(--burgundy-light);
    border-radius: 2px;
}

.section-label--light {
    color: var(--blush);
}

.section-label--light .section-label-line,
.section-label-line--light {
    background: var(--blush);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
    max-width: 700px;
}

/* ============================================
   Services
   ============================================ */
.services {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(123, 45, 59, 0.06);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card--accent {
    background: var(--burgundy);
    border-color: transparent;
}

.service-card--accent h3,
.service-card--accent .service-link {
    color: var(--white);
}

.service-card--accent em {
    color: var(--blush);
}

.service-card--accent .service-link {
    color: var(--blush);
}

.service-card-geo {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: -60px;
    right: -60px;
    background: var(--blush);
    opacity: 0.08;
    pointer-events: none;
}

.service-card--accent .service-card-geo {
    background: var(--blush-light);
    opacity: 0.1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--blush-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card--accent .service-icon {
    background: rgba(250, 212, 192, 0.2);
    color: var(--blush);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--burgundy);
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

.services-geo {
    position: absolute;
    pointer-events: none;
}

.services-geo--circle {
    width: 500px;
    height: 500px;
    background: var(--blush);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    opacity: 0.06;
}

.services-geo--rect {
    width: 200px;
    height: 200px;
    background: var(--burgundy-light);
    bottom: 50px;
    left: -50px;
    opacity: 0.05;
    transform: rotate(45deg);
    border-radius: var(--radius-md);
}

/* ============================================
   About
   ============================================ */
.about {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--white);
}

.about-container {
    position: relative;
}

.about-geo-left {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--burgundy);
    border-radius: 50%;
    top: -50px;
    left: -80px;
    opacity: 0.04;
    pointer-events: none;
}

.about-geo-right {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--blush);
    border-radius: 50%;
    bottom: 50px;
    right: -50px;
    opacity: 0.15;
    pointer-events: none;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-frame {
    position: absolute;
    inset: 20px -20px -20px 20px;
    border: 2px solid var(--blush);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-image-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--burgundy);
    border-radius: var(--radius-md);
    bottom: -30px;
    right: -30px;
    opacity: 0.1;
    z-index: -1;
}

.about-content {
    max-width: 500px;
}

.about-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

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

.about-value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--blush-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

.about-value strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--burgundy);
    margin-bottom: 4px;
}

.about-value span {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ============================================
   Community
   ============================================ */
.community {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--cream);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.community-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    transition: var(--transition);
}

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

.community-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.community-card:hover img {
    transform: scale(1.08);
}

.community-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(to top, rgba(26, 10, 14, 0.9) 0%, transparent 100%);
    color: var(--white);
}

.community-card-content h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.community-card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.community-geo {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--blush);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
    opacity: 0.06;
    pointer-events: none;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--burgundy);
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.testimonials-bg-block {
    position: absolute;
    border-radius: 50%;
}

.testimonials-bg-block--1 {
    width: 600px;
    height: 600px;
    background: var(--burgundy-deep);
    top: -200px;
    left: -200px;
    opacity: 0.5;
}

.testimonials-bg-block--2 {
    width: 400px;
    height: 400px;
    background: var(--burgundy-light);
    bottom: -100px;
    right: -100px;
    opacity: 0.3;
}

.testimonials-bg-block--3 {
    width: 200px;
    height: 200px;
    background: var(--blush);
    top: 50%;
    left: 50%;
    opacity: 0.05;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 28px;
}

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

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

.testimonial-name {
    display: block;
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.testimonial-detail {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

/* ============================================
   Contact
   ============================================ */
.contact {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--white);
}

.contact-container {
    position: relative;
}

.contact-geo {
    position: absolute;
    pointer-events: none;
}

.contact-geo--bl {
    width: 400px;
    height: 400px;
    background: var(--blush);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    opacity: 0.1;
}

.contact-geo--tr {
    width: 250px;
    height: 250px;
    background: var(--burgundy-light);
    border-radius: 50%;
    top: -80px;
    right: -80px;
    opacity: 0.06;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-intro {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.contact-detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--blush-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}

.contact-detail strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--burgundy);
    margin-bottom: 4px;
}

.contact-detail a,
.contact-detail span {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-detail a:hover {
    color: var(--burgundy);
}

.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 48px;
    border: 1px solid rgba(123, 45, 59, 0.06);
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1.5px solid rgba(123, 45, 59, 0.15);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(123, 45, 59, 0.06);
    border-radius: var(--radius-sm);
    color: var(--burgundy);
    font-weight: 500;
    font-size: 0.95rem;
}

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

/* ============================================
   Map CTA
   ============================================ */
.map-cta {
    position: relative;
    padding: 100px 24px;
    text-align: center;
    overflow: hidden;
}

.map-cta-bg {
    position: absolute;
    inset: 0;
}

.map-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90, 31, 43, 0.92) 0%, rgba(123, 45, 59, 0.85) 100%);
}

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

.map-cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.map-cta-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
}

.map-cta-sub a {
    color: var(--blush);
    font-weight: 600;
    transition: var(--transition);
}

.map-cta-sub a:hover {
    color: var(--white);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    position: relative;
    background: var(--dark);
    padding: 80px 0 0;
    overflow: hidden;
    color: var(--white);
}

.footer-geo {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--burgundy);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    opacity: 0.15;
    pointer-events: none;
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blush);
    margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .services-grid,
    .community-grid {
        grid-template-columns: 1fr;
    }

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

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

    .about-image {
        height: 400px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--burgundy);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: rgba(255, 255, 255, 0.85) !important;
        font-size: 1.1rem;
    }

    .nav-links a:hover {
        color: var(--blush) !important;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-divider {
        display: none;
    }

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

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

    .contact-form-wrap {
        padding: 32px 24px;
    }

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

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

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

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

/* Mobile overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
