/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --midnight: #0a1628;
    --midnight-light: #111f36;
    --midnight-mid: #162540;
    --mint: #34d4a8;
    --mint-light: #5eead4;
    --mint-dark: #2bb892;
    --accent: #f59e0b;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-50: #f1f5f9;
    --gray-100: #e2e8f0;
    --gray-200: #cbd5e1;
    --gray-300: #94a3b8;
    --gray-400: #64748b;
    --gray-500: #475569;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 4px 20px rgba(10, 22, 40, 0.1);
    --shadow-lg: 0 8px 40px rgba(10, 22, 40, 0.15);
    --shadow-xl: 0 16px 60px rgba(10, 22, 40, 0.2);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--midnight);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.15;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

.text-mint {
    color: var(--mint);
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.0);
    backdrop-filter: blur(0px);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(52, 212, 168, 0.1);
}

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

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

.logo-accent {
    color: var(--mint);
}

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

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

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

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

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

.nav-cta {
    background: var(--mint) !important;
    color: var(--midnight) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
}

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

.nav-cta:hover {
    background: var(--mint-light) !important;
    transform: translateY(-1px);
}

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

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

.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;
    background: var(--midnight);
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

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

.geo {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}

.geo-1 {
    width: 600px;
    height: 600px;
    background: var(--mint);
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.geo-2 {
    width: 300px;
    height: 300px;
    background: var(--mint);
    bottom: 10%;
    left: 5%;
    animation: float 15s ease-in-out infinite reverse;
}

.geo-3 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    top: 30%;
    left: 15%;
    border-radius: 30%;
    animation: spin 25s linear infinite;
    opacity: 0.1;
}

.geo-4 {
    width: 80px;
    height: 80px;
    background: var(--mint);
    top: 20%;
    right: 30%;
    border-radius: 16px;
    transform: rotate(45deg);
    animation: float 10s ease-in-out infinite;
    opacity: 0.15;
}

.geo-5 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    bottom: 20%;
    right: 10%;
    border-radius: 40%;
    animation: float 18s ease-in-out infinite reverse;
    opacity: 0.05;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(52, 212, 168, 0.12);
    border: 1px solid rgba(52, 212, 168, 0.25);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--mint);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease both;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    animation: fadeUp 0.8s 0.1s ease both;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
    animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.3s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--mint);
    color: var(--midnight);
}

.btn-primary:hover {
    background: var(--mint-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(52, 212, 168, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: var(--mint);
    color: var(--mint);
    transform: translateY(-2px);
}

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

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

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

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-lg--white {
    background: var(--white);
    color: var(--midnight);
}

.btn-lg--white:hover {
    background: var(--off-white);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

/* HERO STAT CARDS */
.hero-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    animation: fadeUp 0.8s 0.4s ease both;
}

.stat-card {
    padding: 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-card--mint {
    background: var(--mint);
    grid-column: 1 / -1;
}

.stat-card--dark {
    background: var(--midnight-mid);
    border: 1px solid rgba(52, 212, 168, 0.15);
}

.stat-card--accent {
    background: var(--accent);
}

.stat-card--white {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.stat-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
}

.stat-card--dark .stat-card-icon {
    background: rgba(52, 212, 168, 0.15);
}

.stat-card-body {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
}

.stat-card--mint .stat-number,
.stat-card--accent .stat-number {
    color: var(--midnight);
}

.stat-card--dark .stat-number {
    color: var(--white);
}

.stat-card--white .stat-number {
    color: var(--midnight);
}

.stat-suffix {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.stat-card--mint .stat-suffix,
.stat-card--accent .stat-suffix {
    color: rgba(10, 22, 40, 0.6);
}

.stat-card--dark .stat-suffix {
    color: var(--mint);
}

.stat-card--white .stat-suffix {
    color: var(--gray-400);
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    margin-top: 4px;
    line-height: 1.3;
}

.stat-card--mint .stat-label { color: rgba(10, 22, 40, 0.7); }
.stat-card--dark .stat-label { color: rgba(255, 255, 255, 0.6); }
.stat-card--accent .stat-label { color: rgba(10, 22, 40, 0.7); }
.stat-card--white .stat-label { color: var(--gray-400); }

/* HERO WAVE */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--mint-dark);
    background: rgba(52, 212, 168, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--midnight);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--gray-400);
    line-height: 1.7;
}

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

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

.service-card {
    position: relative;
    padding: 40px;
    border-radius: var(--radius-xl);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--mint);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

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

.service-card--reverse {
    background: var(--midnight);
    border-color: transparent;
}

.service-card--reverse::before {
    background: var(--mint);
}

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

.service-card--reverse p {
    color: rgba(255, 255, 255, 0.6);
}

.service-card--reverse .service-link {
    color: var(--mint);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 212, 168, 0.12);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.service-card--reverse .service-icon {
    background: rgba(52, 212, 168, 0.15);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--midnight);
}

.service-card p {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--midnight);
}

.service-link:hover {
    color: var(--mint-dark);
    gap: 10px;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--mint);
    border-radius: 50%;
    top: -250px;
    right: -100px;
    opacity: 0.04;
}

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

.about-visual {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-img-wrapper img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.3) 0%, transparent 60%);
    border-radius: var(--radius-xl);
}

.about-floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--mint);
    padding: 28px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.afc-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--midnight);
    line-height: 1;
}

.afc-number span {
    font-size: 1.5rem;
}

.afc-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--midnight);
    opacity: 0.7;
    margin-top: 4px;
}

.about-geo-deco {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 24px;
    top: -40px;
    left: -40px;
    opacity: 0.15;
    transform: rotate(30deg);
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-content .section-tag {
    background: rgba(52, 212, 168, 0.15);
}

.about-content .section-title {
    color: var(--white);
    text-align: left;
}

.about-text {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.af-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 212, 168, 0.15);
    border-radius: 50%;
}

.about-feature span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.about-content .btn {
    margin-top: 8px;
}

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

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.nb-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    min-height: 280px;
}

.nb-card--large {
    grid-column: 1 / 3;
    min-height: 360px;
}

.nb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nb-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.1) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 32px;
    transition: var(--transition);
}

.nb-card:hover .nb-card-overlay {
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.2) 60%, transparent 100%);
}

.nb-card-content {
    width: 100%;
}

.nb-tag {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(52, 212, 168, 0.2);
    color: var(--mint);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.nb-tag--mint {
    background: var(--mint);
    color: var(--midnight);
}

.nb-card-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 6px;
}

.nb-card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

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

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

.testimonial-card {
    padding: 36px;
    border-radius: var(--radius-xl);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

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

.testimonial-card--accent {
    background: var(--midnight);
    border-color: transparent;
}

.tc-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.tc-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-500);
    margin-bottom: 24px;
    flex: 1;
}

.testimonial-card--accent .tc-text {
    color: rgba(255, 255, 255, 0.7);
}

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

.tc-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mint);
    border-radius: 50%;
    flex-shrink: 0;
}

.tc-avatar--light {
    background: rgba(52, 212, 168, 0.2);
}

.tc-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--midnight);
}

.testimonial-card--accent .tc-name {
    color: var(--white);
}

.tc-location {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.testimonial-card--accent .tc-location {
    color: rgba(255, 255, 255, 0.5);
}

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

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

.cta-geo {
    position: absolute;
    border-radius: 50%;
}

.cta-geo-1 {
    width: 400px;
    height: 400px;
    background: var(--mint);
    top: -200px;
    left: -100px;
    opacity: 0.06;
}

.cta-geo-2 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    bottom: -80px;
    right: 20%;
    opacity: 0.08;
}

.cta-geo-3 {
    width: 100px;
    height: 100px;
    background: var(--mint);
    top: 30%;
    right: 10%;
    border-radius: 20px;
    transform: rotate(45deg);
    opacity: 0.1;
}

.cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content {
    flex: 1;
}

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

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 480px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

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

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

.contact-info .section-title {
    text-align: left;
}

.contact-desc {
    color: var(--gray-400);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.cd-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cd-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 212, 168, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.cd-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    margin-bottom: 2px;
}

.cd-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--midnight);
}

.cd-link:hover {
    color: var(--mint-dark);
}

.contact-map {
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* CONTACT FORM */
.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.form-title {
    font-size: 1.6rem;
    margin-bottom: 6px;
    color: var(--midnight);
}

.form-sub {
    color: var(--gray-400);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

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

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

.form-group label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--midnight);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--mint);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(52, 212, 168, 0.1);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
    animation: fadeUp 0.5s ease;
}

.fs-icon {
    margin-bottom: 16px;
}

.form-success h4 {
    font-size: 1.4rem;
    color: var(--midnight);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray-400);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--midnight);
    padding: 80px 0 0;
}

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

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

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

.fl-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mint);
    margin-bottom: 20px;
}

.fl-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fl-col a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.fl-col a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

    .hero-cards {
        max-width: 500px;
    }

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

    .about-img-wrapper img {
        height: 450px;
    }

    .about-floating-card {
        bottom: -20px;
        right: 20px;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-desc {
        max-width: 100%;
    }

    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        transform: translateY(-120%);
        transition: var(--transition);
        border-bottom: 1px solid rgba(52, 212, 168, 0.1);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-cards {
        grid-template-columns: 1fr;
    }

    .stat-card--mint {
        grid-column: auto;
    }

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

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

    .nb-card--large {
        grid-column: auto;
        min-height: 280px;
    }

    .nb-card {
        min-height: 240px;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        max-width: 100%;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

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

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

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

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

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

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