/* ============================================
   GLYDE MANAGEMENT — STYLESHEET
   Navy (#0A1628) + Gold (#D4A017)
   ============================================ */

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

:root {
    --navy: #0A1628;
    --navy-light: #132238;
    --navy-mid: #1a2d47;
    --gold: #D4A017;
    --gold-light: #e8b830;
    --gold-dark: #b8860b;
    --white: #ffffff;
    --off-white: #f5f0e8;
    --cream: #faf7f2;
    --gray-100: #f7f7f7;
    --gray-200: #e8e8e8;
    --gray-400: #999;
    --gray-600: #666;
    --gray-800: #333;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--white);
    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; }

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

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.35);
}

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

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

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

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

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

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

/* --- NAVIGATION --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 160, 23, 0.15);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 32px;
}

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

.logo .gold {
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.nav-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    font-weight: 600 !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-size: 0.9rem !important;
}

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

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

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

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

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 2px solid var(--gold);
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-link {
    color: rgba(255,255,255,0.8);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: 8px;
}

.mobile-link:hover {
    color: var(--gold);
    background: rgba(212, 160, 23, 0.08);
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--navy);
    overflow: hidden;
    padding-top: 72px;
}

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

.geo {
    position: absolute;
}

.geo-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,160,23,0.08) 0%, transparent 70%);
    top: -200px;
    right: -150px;
}

.geo-circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,160,23,0.06) 0%, transparent 70%);
    bottom: 100px;
    left: -100px;
}

.geo-rect-1 {
    width: 200px;
    height: 200px;
    border: 1px solid rgba(212,160,23,0.12);
    top: 200px;
    left: 80px;
    transform: rotate(45deg);
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 104px solid rgba(212,160,23,0.06);
    top: 300px;
    right: 120px;
}

.geo-dots {
    width: 120px;
    height: 120px;
    bottom: 200px;
    right: 300px;
    background-image: radial-gradient(circle, rgba(212,160,23,0.2) 1px, transparent 1px);
    background-size: 16px 16px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(212,160,23,0.1);
    border: 1px solid rgba(212,160,23,0.25);
    color: var(--gold);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
    font-family: var(--font-heading);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    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-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--gold);
    position: relative;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

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

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

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

.hero-image {
    position: relative;
}

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

.hero-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.hero-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.hero-float-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    max-width: 280px;
}

.float-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(212,160,23,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.float-card-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.float-card-value {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy);
}

.float-card-detail {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 2px;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
}

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

/* --- SECTION COMMON --- */
.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.label-line {
    width: 32px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

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

.label-line-light {
    background: var(--gold);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

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

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

.section-sub-light {
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
    margin-bottom: 48px;
    max-width: 500px;
}

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

.services-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(212,160,23,0.08);
    top: -100px;
    right: -100px;
}

.deco-stripe {
    position: absolute;
    width: 4px;
    height: 200px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    bottom: 0;
    left: 10%;
    border-radius: 4px;
    opacity: 0.3;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212,160,23,0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: var(--transition);
}

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

.service-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212,160,23,0.12);
    line-height: 1;
    margin-bottom: 16px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(212,160,23,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

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

.service-link span {
    transition: var(--transition);
}

.service-link:hover span {
    transform: translateX(4px);
}

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

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
}

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

.about-geo-accent {
    position: absolute;
    top: -30px;
    left: -30px;
    display: flex;
    gap: 12px;
}

.accent-block {
    width: 60px;
    height: 60px;
    border-radius: var(--radius);
}

.accent-gold {
    background: var(--gold);
    opacity: 0.8;
}

.accent-navy {
    background: var(--navy);
    opacity: 0.6;
    margin-top: 20px;
}

.about-content {
    padding: 20px 0;
}

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

.about-values {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.value-check {
    width: 24px;
    height: 24px;
    background: rgba(212,160,23,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-item span {
    font-size: 0.9rem;
    color: var(--gray-800);
    font-weight: 500;
    line-height: 1.4;
}

/* --- LISTINGS --- */
.listings {
    position: relative;
    padding: 120px 0;
    background: var(--navy);
    overflow: hidden;
}

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

.listings-geo-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,160,23,0.06) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.listings-geo-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(212,160,23,0.08);
    border-radius: 50%;
    bottom: -100px;
    right: -50px;
}

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

.listing-card {
    background: var(--navy-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.06);
}

.listing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: rgba(212,160,23,0.2);
}

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

.listing-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.listing-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.listing-badge-sale {
    background: var(--gold);
    color: var(--navy);
}

.listing-badge-lease {
    background: var(--white);
    color: var(--navy);
}

.listing-info {
    padding: 24px;
}

.listing-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 8px;
}

.listing-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.listing-details {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.detail-dot {
    color: rgba(255,255,255,0.2);
}

.listing-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

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

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

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

.deco-quote {
    position: absolute;
    font-family: Georgia, serif;
    font-size: 40rem;
    color: rgba(212,160,23,0.04);
    top: -80px;
    right: 5%;
    line-height: 1;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212,160,23,0.15);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 28px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--navy);
    flex-shrink: 0;
}

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

.author-detail {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 2px;
}

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

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

.cta-geo {
    position: absolute;
}

.cta-geo-1 {
    width: 300px;
    height: 300px;
    border: 2px solid rgba(212,160,23,0.1);
    border-radius: 50%;
    top: -100px;
    left: -50px;
}

.cta-geo-2 {
    width: 200px;
    height: 200px;
    background: rgba(212,160,23,0.06);
    bottom: -60px;
    right: 10%;
    border-radius: var(--radius-lg);
    transform: rotate(30deg);
}

.cta-geo-3 {
    width: 100px;
    height: 100px;
    background: var(--gold);
    opacity: 0.08;
    top: 20%;
    right: 25%;
    border-radius: 50%;
}

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

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.cta-sub {
    color: rgba(255,255,255,0.65);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

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

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

.contact-desc {
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(212,160,23,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-value {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy);
    line-height: 1.5;
}

.contact-value a:hover {
    color: var(--gold-dark);
}

.contact-form-wrap {
    position: relative;
}

.form-decoration {
    position: absolute;
    inset: -20px;
    pointer-events: none;
}

.form-deco-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px dashed rgba(212,160,23,0.15);
    top: -40px;
    right: -40px;
}

.contact-form {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 44px;
    position: relative;
    border: 1px solid rgba(212,160,23,0.1);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 28px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,160,23,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

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

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

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

.success-icon {
    width: 64px;
    height: 64px;
    background: rgba(212,160,23,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success p {
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

/* --- MAP --- */
.map-section {
    position: relative;
}

.map-section iframe {
    display: block;
    width: 100%;
    filter: grayscale(0.3) contrast(1.05);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
    max-width: 340px;
    border: 2px solid var(--gold);
}

.map-pin {
    width: 52px;
    height: 52px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.map-ping {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    animation: ping 1.5s infinite;
}

@keyframes ping {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

.map-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.map-label strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--navy);
}

.map-label span {
    font-size: 0.85rem;
    color: var(--gray-600);
}

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

.footer-top {
    display: grid;
    grid-template-columns: 2fr 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);
    line-height: 1.7;
    margin-top: 16px;
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-links-group h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-bottom: 20px;
}

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

.footer-links-group a,
.footer-links-group li {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links-group a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-links-group li {
    line-height: 1.5;
}

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

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

.footer-legal {
    display: flex;
    gap: 24px;
}

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

.footer-legal a:hover {
    color: var(--gold);
}

/* --- ANIMATIONS --- */
[data-anim] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-anim].visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 60px;
    }
    
    .hero-image {
        max-width: 500px;
    }
    
    .hero-float-card {
        left: 20px;
        bottom: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-img-secondary {
        right: 20px;
        bottom: -20px;
    }
    
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }
    
    .menu-btn {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding-top: 72px;
    }
    
    .hero-grid {
        padding: 60px 24px 100px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-float-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 28px;
    }
    
    .about-img-main img,
    .about-img-secondary img {
        height: 300px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }
    
    .listings-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form {
        padding: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .map-overlay {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        border-radius: 0;
        max-width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 16px 28px;
        font-size: 0.95rem;
    }
}
