/* ============================================
   GINA CZUPRYNA — REAL ESTATE WEBSITE STYLES
   ============================================ */

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

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

body {
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* --- Custom Properties --- */
:root {
    --forest-700: #2e4d29;
    --forest-800: #253e23;
    --forest-900: #1f331d;
    --forest-950: #0f1a0c;
    --offwhite: #FAF9F6;
    --cream: #F5F3EE;
    --sage: #8FA888;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--cream);
}
::-webkit-scrollbar-thumb {
    background: var(--sage);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--forest-600);
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(46, 77, 41, 0.1);
}

#navbar.scrolled .logo-mark,
#navbar.scrolled .logo-name,
#navbar.scrolled .logo-sub {
    color: var(--forest-800);
}

#navbar.scrolled .nav-link {
    color: var(--forest-700);
}

#navbar.scrolled .nav-link:hover {
    color: var(--forest-900);
}

#navbar.scrolled .nav-cta {
    color: var(--forest-700);
    background: var(--forest-100);
}

#navbar.scrolled .nav-cta:hover {
    background: var(--forest-200);
}

.logo-mark {
    color: white;
    transition: color 0.4s ease;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    transition: color 0.4s ease;
}

.logo-sub {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sage);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: white;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: white;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 16px;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: rgba(255,255,255,0.25);
    color: white;
}

/* Mobile Menu */
#menuBtn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-line {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    transform-origin: center;
}

#navbar.scrolled #menuBtn .menu-line {
    background: var(--forest-800);
}

#menuBtn.active .menu-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

#menuBtn.active .menu-line:nth-child(2) {
    opacity: 0;
}

#menuBtn.active .menu-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--forest-800);
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--forest-500);
}

.mobile-phone {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--forest-200);
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    position: relative;
}

.hero-bg {
    will-change: transform;
}

.hero-overlay {
    background: linear-gradient(105deg, rgba(15,26,12,0.92) 0%, rgba(31,51,29,0.85) 40%, rgba(31,51,29,0.6) 60%, rgba(31,51,29,0.3) 100%);
}

/* Geometric Shapes */
.hero-shapes {
    overflow: hidden;
}

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

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

.geo-circle-2 {
    width: 300px;
    height: 300px;
    background: var(--forest-300);
    bottom: -80px;
    right: 20%;
    animation: floatSlow 15s ease-in-out infinite reverse;
}

.geo-rect {
    position: absolute;
    opacity: 0.06;
}

.geo-rect-1 {
    width: 200px;
    height: 200px;
    background: white;
    top: 15%;
    right: 5%;
    transform: rotate(45deg);
    animation: rotateSlow 25s linear infinite;
}

.geo-rect-2 {
    width: 120px;
    height: 120px;
    border: 2px solid var(--sage);
    background: transparent;
    bottom: 20%;
    right: 15%;
    transform: rotate(20deg);
    animation: rotateSlow 18s linear infinite reverse;
}

.geo-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}

.geo-line-1 {
    width: 400px;
    top: 40%;
    left: 0;
}

.geo-line-2 {
    width: 300px;
    bottom: 30%;
    left: 10%;
    transform: rotate(-15deg);
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

@keyframes rotateSlow {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

/* Hero Content */
.hero-content {
    max-width: 640px;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.hero-tag-line {
    width: 40px;
    height: 2px;
    background: var(--sage);
    flex-shrink: 0;
}

.hero-tag-text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--sage);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-headline {
    font-family: 'Playfair Display', serif;
    line-height: 1.05;
}

.hero-line {
    display: block;
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 700;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    animation: heroLineIn 0.8s ease forwards;
}

.hero-line-1 { animation-delay: 0.2s; }
.hero-line-2 { animation-delay: 0.4s; }
.hero-line-3 { animation-delay: 0.6s; }
.hero-line-4 { animation-delay: 0.8s; font-size: clamp(2rem, 4.5vw, 3.75rem); }
.hero-line-5 { animation-delay: 1s; font-size: clamp(2rem, 4.5vw, 3.75rem); }

@keyframes heroLineIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 400px;
}

.hero-buttons {
    gap: 16px;
}

/* Hero Aside Card */
.hero-aside {
    align-items: flex-end;
}

.hero-card {
    max-width: 380px;
    text-align: right;
}

.hero-card-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

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

.hero-card-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.95);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--forest-800);
}

.hero-card-info {
    padding: 16px 4px;
}

.hero-card-info h3 {
    color: white;
}

.hero-card-stats {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.hero-stat {
    text-align: right;
}

.hero-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
}

.hero-stat-label {
    font-size: 0.6875rem;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-stat-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.2);
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.3; }
}

.scroll-text {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 14px 28px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--forest-600);
    color: white;
}

.btn-primary:hover {
    background: var(--forest-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46,77,41,0.3);
}

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

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

.btn-white {
    background: white;
    color: var(--forest-800);
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

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

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

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest-600);
    margin-bottom: 1rem;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--sage);
}

.section-tag-light {
    color: var(--sage);
}

.section-tag-light::before {
    background: var(--forest-300);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--forest-900);
}

.section-title-light {
    color: white;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-deco {
    position: absolute;
    pointer-events: none;
}

.about-deco-1 {
    width: 400px;
    height: 400px;
    background: var(--forest-100);
    border-radius: 50%;
    top: -100px;
    left: -150px;
    opacity: 0.5;
}

.about-deco-2 {
    width: 200px;
    height: 200px;
    border: 2px solid var(--forest-200);
    border-radius: 50%;
    bottom: 50px;
    right: -50px;
    opacity: 0.5;
}

.about-images {
    position: relative;
    min-height: 600px;
}

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

.about-img-main img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    z-index: 3;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 4px solid var(--offwhite);
}

.about-img-secondary img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 4;
    background: var(--forest-700);
    color: white;
    padding: 20px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(46,77,41,0.3);
}

.about-exp-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-exp-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.about-exp-sub {
    display: block;
    font-size: 0.625rem;
    color: var(--sage);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

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

.about-body-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--forest-700);
}

.about-value {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-value-icon {
    width: 44px;
    height: 44px;
    background: var(--forest-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-700);
    margin-bottom: 4px;
    transition: all 0.3s ease;
}

.about-value:hover .about-value-icon {
    background: var(--forest-600);
    color: white;
    transform: translateY(-2px);
}

.about-value h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--forest-900);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.service-card {
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card:hover::before {
    opacity: 1;
}

.card-green {
    background: var(--forest-700);
    color: white;
}

.card-green::before {
    background: var(--sage);
}

.card-green .service-card-icon {
    color: var(--sage);
}

.card-green .service-card-title {
    color: white;
}

.card-green .service-card-desc {
    color: rgba(255,255,255,0.75);
}

.card-green .service-feature {
    color: rgba(255,255,255,0.8);
}

.card-green .service-feature svg {
    color: var(--sage);
}

.card-cream {
    background: var(--cream);
    color: var(--forest-900);
}

.card-cream::before {
    background: var(--forest-500);
}

.card-cream .service-card-icon {
    color: var(--forest-600);
}

.card-cream .service-card-title {
    color: var(--forest-900);
}

.card-cream .service-card-desc {
    color: var(--forest-700);
}

.card-cream .service-feature {
    color: var(--forest-700);
}

.card-cream .service-feature svg {
    color: var(--forest-500);
}

.card-accent {
    background: var(--forest-900);
    color: white;
}

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

.card-accent .service-card-icon {
    color: var(--sage);
}

.card-accent .service-card-title {
    color: white;
}

.card-accent .service-card-desc {
    color: rgba(255,255,255,0.75);
}

.card-accent .service-feature {
    color: rgba(255,255,255,0.8);
}

.card-accent .service-feature svg {
    color: var(--sage);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.service-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 700;
}

.service-card-desc {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

/* ============================================
   NEIGHBORHOODS SECTION
   ============================================ */
.neighborhoods-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--forest-700);
}

.neighborhood-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.neighborhood-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--forest-200);
    transition: all 0.3s ease;
    cursor: pointer;
}

.neighborhood-item:first-child {
    border-top: 1px solid var(--forest-200);
}

.neighborhood-item:hover {
    padding-left: 12px;
}

.neighborhood-item:hover .neighborhood-name {
    color: var(--forest-600);
}

.neighborhood-item::after {
    content: '→';
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    color: var(--forest-500);
}

.neighborhood-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.neighborhood-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--forest-900);
    transition: color 0.3s ease;
}

.neighborhood-desc {
    font-size: 0.875rem;
    color: var(--forest-500);
    display: none;
}

@media (min-width: 640px) {
    .neighborhood-desc {
        display: block;
    }
    .neighborhood-item {
        justify-content: space-between;
    }
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}

.ng-img {
    border-radius: 16px;
    overflow: hidden;
}

.ng-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ng-img:hover img {
    transform: scale(1.05);
}

.ng-img-1 {
    grid-row: 1 / 3;
}

.ng-img-1 img {
    height: 100%;
    min-height: 400px;
}

.ng-img-2 img {
    height: 200px;
}

.ng-img-3 img {
    height: 200px;
}

.ng-img-4 img {
    height: 200px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-deco {
    position: absolute;
    pointer-events: none;
}

.testimonials-deco-1 {
    width: 300px;
    height: 300px;
    background: var(--forest-100);
    border-radius: 50%;
    top: 50px;
    right: -80px;
    opacity: 0.4;
}

.testimonials-deco-2 {
    width: 150px;
    height: 150px;
    background: var(--sage);
    border-radius: 50%;
    bottom: 80px;
    left: -40px;
    opacity: 0.15;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid var(--forest-100);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    border-color: var(--forest-200);
}

.testimonial-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--forest-200);
    position: absolute;
    top: 16px;
    right: 24px;
}

.testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--forest-700);
    position: relative;
    z-index: 1;
}

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

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

.testimonial-author-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--forest-900);
}

.testimonial-author-detail {
    font-size: 0.8125rem;
    color: var(--forest-500);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-shapes {
    overflow: hidden;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: white;
}

.cta-circle-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    left: -150px;
}

.cta-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -50px;
}

.cta-rect {
    position: absolute;
    background: var(--sage);
    opacity: 0.06;
}

.cta-rect-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    transform: rotate(30deg);
}

.cta-headline {
    font-family: 'Playfair Display', serif;
}

.cta-subtitle {
    font-size: 1.0625rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-body {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--forest-700);
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-detail-item:hover {
    background: var(--forest-50);
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--forest-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-700);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-detail-item:hover .contact-detail-icon {
    background: var(--forest-600);
    color: white;
}

.contact-detail-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--forest-500);
    font-weight: 500;
}

.contact-detail-value {
    display: block;
    font-size: 1rem;
    color: var(--forest-900);
    font-weight: 500;
    margin-top: 2px;
}

.contact-affiliation-text {
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--forest-100);
}

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

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

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

.form-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--forest-700);
    letter-spacing: 0.02em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--forest-200);
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9375rem;
    color: var(--forest-900);
    background: var(--offwhite);
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--forest-500);
    background: white;
    box-shadow: 0 0 0 3px rgba(46,77,41,0.1);
}

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

.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' stroke='%232e4d29' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    background: var(--forest-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--forest-600);
}

.hidden {
    display: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-logo {
    color: white;
}

.footer-logo-name {
    color: white;
}

.footer-desc {
    line-height: 1.7;
}

.footer-heading {
    margin-bottom: 1rem;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--forest-400);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1023px) {
    .hero-aside {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .neighborhoods-grid {
        grid-template-columns: 1fr;
    }
    
    .ng-img-1 {
        grid-row: auto;
    }
    
    .ng-img-1 img,
    .ng-img-2 img,
    .ng-img-3 img,
    .ng-img-4 img {
        height: 220px;
    }
    
    .about-img-secondary {
        right: -10px;
        bottom: -20px;
    }
    
    .about-experience-badge {
        left: -10px;
        top: -10px;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}
