/* ===== CSS VARIABLES ===== */
:root {
    --gold: #C5A95E;
    --dark: #1a1a1a;
    --darker: #0d0d0d;
    --light: #ffffff;
    --gray: #f5f5f5;
    --text-gray: #666;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.2);
}

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

html {
    scroll-behavior: smooth;
    background: #1a1a1a;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: #1a1a1a;
}

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

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

/* ===== CONTAINERS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-full {
    max-width: 100%;
    padding: 0 4rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: var(--light);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}

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

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

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

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

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1a1a1a;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #1a1a1a;
}

.hero-video,
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeInImage 0.8s ease-in forwards;
}

@keyframes fadeInImage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(26,26,26,0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light);
    padding: 0 2rem;
}

.hero-subtitle {
    display: block;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: var(--light);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: var(--gold);
    margin: 1rem auto 0;
    position: relative;
    animation: scrollArrow 2s infinite;
}

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

/* ===== ANIMATIONS ===== */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

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

[data-scroll-animate] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-scroll-animate].animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(197, 169, 94, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border-color: var(--light);
}

.btn-secondary:hover {
    background: var(--light);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--light);
    color: var(--dark);
}

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1rem;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--darker);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    color: var(--light);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.7);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 8rem 0;
    background: var(--gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-features {
    margin: 2rem 0 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: var(--gold);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 5s ease-out;
}

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

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* ===== PROPERTIES SECTION ===== */
.properties-section {
    padding: 8rem 0;
    background: var(--light);
}

.properties-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.property-card {
    background: var(--light);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.property-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-out;
}

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: var(--gold);
    color: var(--dark);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.property-card:hover .property-overlay {
    opacity: 1;
}

.property-info {
    padding: 2rem;
}

.property-price {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.property-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.property-location {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.property-details {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.property-details strong {
    color: var(--dark);
    font-weight: 700;
}

/* ===== NEIGHBORHOODS SECTION ===== */
.neighborhoods-section {
    padding: 8rem 0;
    background: var(--gray);
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.neighborhood-card {
    position: relative;
    height: 400px;
    overflow: hidden;
    cursor: pointer;
}

.neighborhood-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.neighborhood-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease-out;
}

.neighborhood-card:hover .neighborhood-image img {
    transform: scale(1.1);
}

.neighborhood-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    color: var(--light);
    transition: var(--transition);
}

.neighborhood-overlay h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    transform: translateY(0);
    transition: var(--transition);
}

.neighborhood-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.neighborhood-link {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.neighborhood-card:hover .neighborhood-overlay p,
.neighborhood-card:hover .neighborhood-link {
    transform: translateY(0);
    opacity: 1;
}

/* ===== VALUATION SECTION ===== */
.valuation-section {
    position: relative;
    padding: 8rem 0;
    background: var(--darker);
    color: var(--light);
    overflow: hidden;
}

.valuation-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(197,169,94,0.1) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

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

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

.valuation-content .section-subtitle {
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
}

.valuation-form {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.1);
}

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

.form-row:has(input[name="city"]) {
    grid-template-columns: 2fr 1fr;
}

.valuation-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--light);
    font-size: 1rem;
    transition: var(--transition);
}

.valuation-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.15);
}

.valuation-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 8rem 0;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--gray);
    padding: 3rem;
    transition: var(--transition);
}

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

.testimonial-stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--text-gray);
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 8rem 0;
    background: var(--gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-details {
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--dark);
    font-size: 1.1rem;
}

.contact-item p {
    color: var(--text-gray);
}

.contact-form-wrapper {
    background: var(--light);
    padding: 3rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--gray);
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form textarea {
    resize: vertical;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    text-align: center;
    border-radius: 4px;
    display: none;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--darker);
    color: var(--light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
}

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container-full {
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--darker);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 2rem;
        transition: var(--transition);
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image img {
        height: 400px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-card:hover,
    .neighborhood-card:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar.scrolled {
        padding: 0.8rem 0;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 300px;
        gap: 1rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .stats-section {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .about-section,
    .properties-section,
    .neighborhoods-section,
    .valuation-section,
    .testimonials-section,
    .contact-section {
        padding: 4rem 0;
    }

    .about-image img {
        height: 300px;
    }

    .feature-item {
        font-size: 0.95rem;
    }

    .properties-carousel,
    .neighborhoods-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .property-card,
    .neighborhood-card {
        transform: none !important;
    }

    .property-image,
    .neighborhood-card {
        height: 280px;
    }

    .property-price {
        font-size: 1.6rem;
    }

    .property-title {
        font-size: 1.3rem;
    }

    .property-details {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .neighborhood-overlay h3 {
        font-size: 1.6rem;
    }

    .neighborhood-overlay p {
        font-size: 0.9rem;
        opacity: 1;
        transform: translateY(0);
    }

    .neighborhood-link {
        opacity: 1;
        transform: translateY(0);
    }

    .form-row:has(input[name="city"]) {
        grid-template-columns: 1fr;
    }

    .valuation-form,
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .valuation-form input,
    .contact-form input,
    .contact-form textarea {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .contact-item {
        gap: 1rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

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

    .footer-brand h3 {
        font-size: 1.6rem;
    }

    .footer-column h4 {
        font-size: 1rem;
    }
}

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

    .logo-text {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2rem;
        padding: 0 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.7rem;
        padding: 0 0.5rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .container,
    .container-full {
        padding: 0 1rem;
    }

    .about-section,
    .properties-section,
    .neighborhoods-section,
    .valuation-section,
    .testimonials-section,
    .contact-section {
        padding: 3rem 0;
    }

    .about-text h2 {
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .property-info {
        padding: 1.5rem;
    }

    .property-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .valuation-form,
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }
}

/* ===== MOBILE-SPECIFIC ENHANCEMENTS ===== */
@media (hover: none) and (pointer: coarse) {
    .property-overlay {
        opacity: 0;
    }

    .property-card:active .property-overlay {
        opacity: 1;
    }

    .neighborhood-overlay p,
    .neighborhood-link {
        opacity: 1;
        transform: translateY(0);
    }

    .btn {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
}

/* Touch device optimizations */
@media (pointer: coarse) {
    .btn {
        min-height: 48px;
    }

    .nav-link {
        padding: 0.5rem 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    input,
    textarea,
    button {
        font-size: 16px !important;
    }
}

/* Mobile body lock when menu open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Mobile touch active states */
.is-mobile .property-card.touch-active,
.is-mobile .neighborhood-card.touch-active {
    transform: scale(0.98);
}

/* Mobile viewport height fix */
.hero {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
}

/* Prevent horizontal scroll on mobile */
body {
    overflow-x: hidden;
    position: relative;
}

/* Better mobile tap targets */
@media (max-width: 768px) {
    a, button, .btn {
        -webkit-tap-highlight-color: rgba(197, 169, 94, 0.3);
    }

    /* Larger touch areas for interactive elements */
    .property-badge,
    .neighborhood-link {
        padding: 0.75rem 1.25rem;
    }
}

/* Smooth navbar transitions on mobile */
.navbar {
    transition: transform 0.3s ease-in-out, background 0.3s ease;
}

/* Ensure images don't cause layout shift */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile-friendly font scaling */
@media (max-width: 374px) {
    html {
        font-size: 14px;
    }
}

/* ===== PARALLAX & SPECIAL EFFECTS ===== */
.parallax-image {
    transition: transform 0.5s ease-out;
}

/* Smooth entrance animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Gold shimmer effect */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}
