/* ===== CSS Custom Properties ===== */
:root {
    --terra: #C2594A;
    --terra-dark: #A84639;
    --terra-light: #D4786A;
    --sand: #E8C9A0;
    --sand-light: #F5E6CC;
    --sand-dark: #C4A67A;
    --cream: #FDF8F3;
    --cream-dark: #F5EDE4;
    --charcoal: #2D2A26;
    --charcoal-light: #4A4540;
    --warm-gray: #8A8279;
    --white: #FFFFFF;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(45, 42, 38, 0.08);
    --shadow-md: 0 4px 20px rgba(45, 42, 38, 0.12);
    --shadow-lg: 0 8px 40px rgba(45, 42, 38, 0.16);
    --shadow-xl: 0 16px 60px rgba(45, 42, 38, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.btn--primary {
    background: var(--terra);
    color: var(--white);
    border-color: var(--terra);
}

.btn--primary:hover {
    background: var(--terra-dark);
    border-color: var(--terra-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background: transparent;
    color: var(--terra);
    border-color: var(--terra);
}

.btn--outline:hover {
    background: var(--terra);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--white {
    background: var(--white);
    color: var(--terra);
    border-color: var(--white);
}

.btn--white:hover {
    background: var(--sand-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn--outline-white:hover {
    background: var(--white);
    color: var(--terra);
    transform: translateY(-2px);
}

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

/* ===== Section Tags ===== */
.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--terra);
    background: var(--sand-light);
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    margin-bottom: 16px;
}

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

.section-title--light {
    color: var(--white);
}

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

.section-subtitle--light {
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 243, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(194, 89, 74, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(253, 248, 243, 0.97);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    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;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.2;
}

.nav-logo-text span:first-of-type {
    color: var(--terra);
}

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

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

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--charcoal-light);
    position: relative;
}

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

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

.nav-link:hover {
    color: var(--terra);
}

.nav-link--cta {
    background: var(--terra);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--terra-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 24px 60px;
    overflow: hidden;
    background: var(--cream);
}

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

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

.geo-shape--1 {
    width: 600px;
    height: 600px;
    background: var(--terra);
    top: -200px;
    right: -100px;
}

.geo-shape--2 {
    width: 400px;
    height: 400px;
    background: var(--sand);
    bottom: -100px;
    left: -100px;
}

.geo-shape--3 {
    width: 200px;
    height: 200px;
    background: var(--terra-light);
    top: 40%;
    left: 30%;
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    opacity: 0.08;
}

.geo-shape--4 {
    width: 120px;
    height: 120px;
    background: var(--sand-dark);
    top: 20%;
    right: 30%;
    border-radius: var(--radius-md);
    transform: rotate(30deg);
    opacity: 0.15;
}

.geo-shape--5 {
    width: 80px;
    height: 80px;
    background: var(--terra);
    bottom: 25%;
    left: 15%;
    opacity: 0.1;
}

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

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--terra);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

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

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

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--terra);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cards {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    min-width: 220px;
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.stat-card:nth-child(2) {
    animation-delay: -2s;
    margin-left: 30px;
}

.stat-card:nth-child(3) {
    animation-delay: -4s;
}

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

.stat-card-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.stat-card--1 .stat-card-accent { background: var(--terra); }
.stat-card--2 .stat-card-accent { background: var(--sand-dark); }
.stat-card--3 .stat-card-accent { background: var(--terra-light); }

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

.stat-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--charcoal);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--warm-gray);
    margin-top: 4px;
}

.hero-image-wrap {
    position: relative;
    z-index: 1;
}

.hero-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

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

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    background: var(--sand);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.5;
}

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

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-geometric {
    position: relative;
    height: 500px;
}

.geo-block {
    position: absolute;
    border-radius: var(--radius-lg);
}

.geo-block--terra {
    width: 280px;
    height: 320px;
    background: var(--terra);
    top: 0;
    left: 0;
    border-radius: var(--radius-xl);
}

.geo-block--sand {
    width: 200px;
    height: 200px;
    background: var(--sand);
    bottom: 0;
    right: 0;
    border-radius: var(--radius-lg);
}

.geo-block--terra-small {
    width: 120px;
    height: 120px;
    background: var(--terra-light);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--radius-md);
    opacity: 0.6;
}

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

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

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

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

.value-icon {
    width: 48px;
    height: 48px;
    background: var(--sand-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terra);
    flex-shrink: 0;
}

.value-item span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--charcoal);
}

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

.services-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.service-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

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

.service-card-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    margin-bottom: 16px;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    background: var(--sand);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terra);
    margin-bottom: 20px;
}

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

.service-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* ===== Listings Section ===== */
.listings {
    padding: 120px 24px;
    background: var(--cream);
}

.listings-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.listing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.listing-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

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

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

.listing-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--terra);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.listing-badge.new {
    background: var(--sand-dark);
}

.listing-info {
    padding: 24px;
}

.listing-info h3 {
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.listing-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-bottom: 16px;
}

.listing-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.listing-features span {
    font-size: 0.85rem;
    color: var(--charcoal-light);
    background: var(--sand-light);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
}

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

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 120px 24px;
    background: var(--sand-light);
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

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

.geo-accent--1 {
    width: 300px;
    height: 300px;
    background: var(--terra);
    opacity: 0.06;
    top: -80px;
    left: -80px;
}

.geo-accent--2 {
    width: 200px;
    height: 200px;
    background: var(--sand-dark);
    opacity: 0.15;
    bottom: -50px;
    right: 5%;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

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

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

.testimonial-text {
    font-size: 1rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.author-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--charcoal);
}

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

/* ===== CTA Section ===== */
.cta-section {
    padding: 120px 24px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

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

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

.cta-geo--1 {
    width: 400px;
    height: 400px;
    background: var(--terra);
    opacity: 0.15;
    top: -150px;
    right: -100px;
}

.cta-geo--2 {
    width: 250px;
    height: 250px;
    background: var(--sand);
    opacity: 0.1;
    bottom: -80px;
    left: 10%;
}

.cta-geo--3 {
    width: 150px;
    height: 150px;
    background: var(--terra-light);
    opacity: 0.12;
    top: 30%;
    left: 5%;
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
}

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

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

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-geometric {
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
}

.contact-block {
    position: absolute;
    border-radius: var(--radius-lg);
}

.contact-block--terra {
    width: 150px;
    height: 150px;
    background: var(--terra);
    opacity: 0.06;
    top: -40px;
    right: 40%;
}

.contact-block--sand {
    width: 100px;
    height: 100px;
    background: var(--sand);
    opacity: 0.2;
    bottom: 20%;
    right: 10%;
}

.contact-content {
    max-width: 480px;
}

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

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

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: var(--sand-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terra);
    flex-shrink: 0;
}

.info-label {
    display: block;
    font-size: 0.8rem;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.info-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--charcoal);
}

.info-value:hover {
    color: var(--terra);
}

.contact-form-wrap {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 2px solid var(--sand);
    border-radius: var(--radius-md);
    background: var(--white);
    color: var(--charcoal);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terra);
    box-shadow: 0 0 0 3px rgba(194, 89, 74, 0.1);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    background: #E8F5E9;
    color: #2E7D32;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 8px;
}

.form-success svg {
    flex-shrink: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 24px 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links a,
.footer-services a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 6px 0;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--sand);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact a:hover {
    color: var(--sand);
}

.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);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a:hover {
    color: var(--sand);
}

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

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-cards {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 40px;
    }
    
    .stat-card {
        min-width: auto;
        flex: 1;
    }
    
    .stat-card:nth-child(2) {
        margin-left: 0;
    }
    
    .hero-image img {
        height: 500px;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-geometric {
        height: 350px;
        max-width: 400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    
    .nav-link--cta {
        display: block;
    }
    
    .hero {
        padding: 100px 24px 80px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .hero-cards {
        flex-direction: column;
    }
    
    .stat-card {
        min-width: 100%;
    }
    
    .hero-image {
        border-radius: var(--radius-lg);
    }
    
    .hero-image img {
        height: 350px;
    }
    
    .hero-image-accent {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .listings-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrap {
        padding: 24px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-geometric {
        height: 250px;
    }
    
    .geo-block--terra {
        width: 180px;
        height: 220px;
    }
    
    .geo-block--sand {
        width: 130px;
        height: 130px;
    }
    
    .geo-block--terra-small {
        width: 80px;
        height: 80px;
    }
}
