* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #0f172a;
    --secondary-dark: #1e293b;
    --accent-dark: #334155;
    --text-light: #f8fafc;
    --text-muted: #cbd5e1;
    --accent-color: #64748b;
    --gold-accent: #d4af37;
    --success-color: #10b981;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mobile-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: white;
    font-size: 1.5rem;
    padding: 0.75rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(212, 175, 55, 0.4);
    transform: scale(1.1);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
    border: 1px solid transparent;
}

.mobile-nav-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--gold-accent);
    transform: translateY(-2px);
}

/* Enhanced Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: var(--gold-accent);
    transform: translateY(-1px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-accent), #f59e0b);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section - Cinematic */
.hero {
    height: 100vh;
    min-height: 700px;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(15, 23, 42, 0.3)),
        url('images/Outdoor2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 50px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1), transparent 70%);
    z-index: 1;
}

.hero-content {
    max-width: 1000px;
    padding: 2rem;
    animation: heroFadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    margin-top: -50px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.5rem, 7vw, 6rem);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #ffffff, #f8fafc, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    padding-bottom: 0.5rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    text-shadow: 1px 1px 15px rgba(0, 0, 0, 0.8);
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(100, 116, 139, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 60px rgba(100, 116, 139, 0.6);
    border-color: var(--gold-accent);
    background: linear-gradient(135deg, var(--accent-dark), var(--primary-dark));
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

/* Enhanced Sections */
.section {
    padding: 8rem 2rem;
    position: relative;
}

.features {
    background: linear-gradient(180deg, var(--primary-dark), var(--secondary-dark));
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(148, 163, 184, 0.03), transparent 50%);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 4rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-accent), #f59e0b);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), #f59e0b);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--gold-accent);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 400;
}

/* Property Details */
.property-details {
    background: linear-gradient(180deg, var(--secondary-dark), var(--primary-dark));
    position: relative;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-bottom: 6rem;
}

.details-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: -0.02em;
}

.details-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.details-content p {
    margin-bottom: 2rem;
    line-height: 1.9;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 400;
}

.property-image {
    width: 100%;
    height: 600px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.6);
    border: 3px solid rgba(212, 175, 55, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-image:hover {
    transform: scale(1.03);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
    border-color: rgba(212, 175, 55, 0.4);
}

/* Virtual Tour Section */
.virtual-tour {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.virtual-tour::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08), transparent 70%);
}

.tour-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.tour-instructions {
    text-align: center;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.tour-instructions i {
    color: var(--gold-accent);
    margin-right: 0.5rem;
}

.tour-placeholder {
    width: 100%;
    height: 600px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(20px);
    padding: 2rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.tour-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

/* Video Section */
.video {
    background: linear-gradient(135deg, #2d1b69 0%, #11047a 50%, #1e3a8a 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.08), transparent 70%);
}

.video-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.video-placeholder {
    width: 100%;
    height: 600px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(20px);
    padding: 2rem;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.video-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
}

/* Gallery Section */
.gallery {
    background: linear-gradient(180deg, var(--primary-dark), var(--secondary-dark));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.gallery-item {
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: var(--secondary-dark);
    border: 2px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    border-color: rgba(212, 175, 55, 0.4);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Key Features */
.key-features {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-item:hover {
    background: linear-gradient(145deg, #f8fafc, #f1f5f9);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.feature-item i {
    font-size: 1.75rem;
    color: var(--gold-accent);
    margin-right: 1.5rem;
}

.feature-item span {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

/* Location Section */
.location {
    background: linear-gradient(180deg, #f1f5f9, #f8fafc);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    margin-bottom: 4rem;
}

/* Location Maps Section */
.location-maps {
    margin-top: 4rem;
}

.location-maps h3 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
    font-weight: 300;
}

.maps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    position: relative;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(212, 175, 55, 0.2);
    background: #ffffff;
}

.map-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    border-color: rgba(212, 175, 55, 0.4);
}

.map-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-container:hover .map-image {
    transform: scale(1.05);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-container:hover .map-overlay {
    transform: translateY(0);
    opacity: 1;
}

.map-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.map-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
}

.google-map-container {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(212, 175, 55, 0.3);
    margin: 0 auto;
    max-width: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.google-map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.google-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    color: white;
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 0;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
    min-width: 250px;
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--gold-accent);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    margin-bottom: 0.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
}

.contact-label {
    font-size: 0.85rem;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-link {
    color: var(--text-light) !important;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    line-height: 1.4;
}

.contact-link:hover {
    color: var(--gold-accent) !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.contact-link:visited {
    color: var(--text-light) !important;
}

.contact-link:active {
    color: var(--gold-accent) !important;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0a0a, #1a1a1a);
    color: var(--text-muted);
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* Animations */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-accent), #f59e0b);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 1001;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .details-grid,
    .location-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .maps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card {
        padding: 2.5rem;
    }

    .property-image {
        height: 400px;
    }

    .tour-placeholder,
    .video-placeholder {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .hero {
        background-attachment: scroll;
        min-height: 100vh;
        padding: 1rem;
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-content {
        padding: 1rem;
        margin-top: 0;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }

    .header {
        padding: 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .section {
        padding: 4rem 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
        margin-bottom: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .feature-card {
        padding: 2rem;
        margin-bottom: 1rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }

    .feature-card p {
        font-size: 1rem;
    }

    .property-image {
        height: 300px;
    }

    .details-grid {
        gap: 2rem;
    }

    .details-content h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .details-content h3 {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }

    .tour-placeholder,
    .video-placeholder {
        height: 300px;
        padding: 1rem;
    }

    .tour-instructions {
        flex-direction: column;
        gap: 0.25rem;
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item {
        height: 250px;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-item i {
        font-size: 1.5rem;
    }

    .feature-item span {
        font-size: 1rem;
    }

    .maps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .map-image {
        height: 250px;
    }

    .map-overlay {
        padding: 1.5rem;
    }

    .map-title {
        font-size: 1.2rem;
    }

    .map-subtitle {
        font-size: 0.9rem;
    }

    .google-map-container {
        height: 350px;
    }

    .form-group {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        gap: 1rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 1rem;
    }

    .location-content h3 {
        font-size: 1.5rem;
    }

    .location-content p {
        font-size: 1rem;
    }

    .location-content img {
        height: 300px !important;
    }

    .location-content ul li {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .section {
        padding: 3rem 0.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .property-image {
        height: 220px;
    }

    .tour-placeholder,
    .video-placeholder {
        height: 250px;
        padding: 0.5rem;
    }

    .gallery-item {
        height: 200px;
    }

    .map-image {
        height: 200px;
    }

    .google-map-container {
        height: 250px;
    }

    .location-content img {
        height: 220px !important;
    }

    .mobile-nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
        min-width: 180px;
    }

    .mobile-nav {
        gap: 1.5rem;
    }

    .feature-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .feature-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-elements::before,
.floating-elements::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-elements::after {
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
/* ===================================
   MOBILE-ONLY FIXES
   Add these to the END of your styles.css
   These will NOT affect desktop layout
   =================================== */

/* Global mobile overflow prevention */
@media (max-width: 768px) {
    html, body {
        max-width: 100% !important;
        overflow-x: hidden !important;
        position: relative !important;
    }

    /* Prevent any element from exceeding viewport */
    *, *::before, *::after {
        max-width: 100vw !important;
    }

    /* Remove problematic overflow from all sections */
    .header,
    .hero,
    .section,
    .features,
    .property-details,
    .virtual-tour,
    .video,
    .gallery,
    .key-features,
    .location,
    .contact,
    .footer {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Fix mobile menu overlay */
    .mobile-menu-overlay {
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }

    /* Container adjustments for mobile */
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
        margin: 0 auto !important;
        overflow-x: hidden !important;
    }

    /* Hero mobile fixes */
    .hero {
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .hero-content {
        width: calc(100% - 2rem) !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 1rem !important;
    }

    .hero h1, .hero p {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    /* Section content containment */
    .section-title,
    .section-subtitle {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
    }

    /* Grid fixes for mobile */
    .features-grid,
    .details-grid,
    .gallery-grid,
    .features-list,
    .maps-grid,
    .location-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Card and item fixes */
    .feature-card,
    .gallery-item,
    .feature-item,
    .map-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 1rem 0 !important;
    }

    /* Image containment */
    .property-image,
    .gallery-item img,
    .map-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }

    /* Placeholder fixes */
    .tour-placeholder,
    .video-placeholder {
        width: calc(100% - 2rem) !important;
        max-width: 100% !important;
        margin: 1rem !important;
    }

    /* Contact section mobile fix */
    .contact-info {
        width: 100% !important;
        max-width: 100% !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 1rem 0 !important;
        gap: 1rem !important;
    }

    .contact-item {
        width: 90% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }

    /* Text content containment */
    .details-content,
    .tour-content,
    .video-content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 1rem !important;
    }

    /* Location content fixes */
    .location-content h3,
    .location-content p,
    .location-content ul {
        width: 100% !important;
        padding: 0 0.5rem !important;
    }

    .google-map-container {
        width: calc(100% - 2rem) !important;
        margin: 0 1rem !important;
    }

    /* Hide floating elements on mobile */
    .floating-elements {
        display: none !important;
    }

    /* CTA button containment */
    .cta-button {
        max-width: 90% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* Navigation fixes */
    .nav {
        width: 100% !important;
        padding: 0 0.5rem !important;
    }

    .mobile-nav-link {
        max-width: 80vw !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}

/* Extra small devices additional fixes */
@media (max-width: 480px) {
    /* Even tighter containment */
    .container {
        padding: 0 0.5rem !important;
    }

    .hero-content {
        width: calc(100% - 1rem) !important;
        padding: 0 0.5rem !important;
    }

    .section {
        padding: 3rem 0.5rem !important;
    }

    /* Smaller placeholders */
    .tour-placeholder,
    .video-placeholder {
        width: calc(100% - 1rem) !important;
        margin: 0.5rem !important;
        padding: 0.5rem !important;
    }

    /* Tighter contact items */
    .contact-item {
        width: 95% !important;
        padding: 1rem !important;
    }

    /* Map container adjustment */
    .google-map-container {
        width: calc(100% - 1rem) !important;
        margin: 0 0.5rem !important;
    }
}

/* Force prevent horizontal scroll on body */
@media (max-width: 768px) {
    body {
        position: relative !important;
        overflow-x: hidden !important;
        width: 100% !important;
    }
    
    /* Additional safety for any fixed/absolute elements */
    [style*="position: fixed"],
    [style*="position: absolute"] {
        max-width: 100vw !important;
    }
}

/* Specific fix for video section on all devices */
.video {
    width: 100% !important;
    overflow: hidden !important;
}

.video::before {
    pointer-events: none !important;
}

.video-content {
    padding: 0 1rem !important;
}

.video-placeholder {
    margin: 2rem auto !important;
    overflow: hidden !important;
}

/* Desktop - Equal width contact items */
.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 800px; /* Set a max width for the container */
    margin: 0 auto;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
    /* Force equal width */
    flex: 1;
    min-width: 300px; /* Minimum width for each item */
    max-width: 350px; /* Maximum width for each item */
}

/* Ensure both items have the same height */
.contact-item {
    min-height: 180px; /* Set a minimum height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Alternative approach if you want exact same width */
@media (min-width: 769px) {
    .contact-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two equal columns */
        gap: 2rem;
        max-width: 700px;
        margin: 0 auto;
        padding: 2rem 1rem;
    }
    
    .contact-item {
        width: 100%; /* Full width of grid cell */
        min-width: unset;
        max-width: unset;
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .contact-item {
        width: 90%;
        max-width: 300px;
        min-width: unset;
        flex: unset;
    }
}