/* CSS Variables */
:root {
    --primary: #1a1a1a;
    --secondary: #d4af37; /* Gold/Bronze */
    --accent: #f8f8f8;
    --text: #333;
    --text-light: #666;
    --bg: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
    --bg-accent: #f9f9f9;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background: var(--secondary);
    color: white;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg);
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-title h2 span {
    color: var(--secondary);
    font-style: italic;
}

.section-title p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
    background: var(--secondary);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    border: 1px solid var(--secondary);
    transition: var(--transition);
}

.btn-primary:hover {
    background: #b8932d;
    color: white;
    border-color: #b8932d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    border: 1px solid white;
}

.btn-secondary:hover {
    background: #ffffff !important;
    color: #1a1a1a !important;
    border-color: #ffffff !important;
    opacity: 1 !important;
}

.full-width {
    width: 100%;
}


.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    font-weight: 300;
    color: var(--secondary);
    display: inline-block;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 10s ease-out;
    z-index: -1;
}

.hero:hover .hero-bg {
    transform: scale(1.1);
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content h1 span {
    display: block;
    color: var(--secondary);
    font-style: italic;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
}

.mouse {
    width: 25px;
    height: 45px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.mouse::after {
    content: '';
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

/* Property Details */
.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.detail-group {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-item i {
    width: 32px;
    height: 32px;
    color: var(--secondary);
}

.detail-item h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 1px;
}

.detail-item p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

/* Location & Connectivity */
.bg-accent {
    background: var(--bg-accent);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.location-list {
    margin-top: 30px;
}

.location-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.location-list li i {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--secondary);
    margin-top: 5px;
}

.location-list li span {
    font-size: 1.1rem;
    line-height: 1.4;
}

.amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.amenity-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary);
    box-shadow: var(--shadow);
}

.amenity-card i {
    width: 32px;
    height: 32px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.amenity-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.amenity-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.private-road-tag {
    margin-top: 60px;
    background: var(--primary);
    color: white;
    padding: 20px 40px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow);
}

.private-road-tag i {
    color: var(--secondary);
    width: 24px;
    height: 24px;
}

/* Features grid refactored to Details grid above */

.feature-card {
    background: var(--accent);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: var(--shadow);
    border-color: var(--secondary);
}

.feature-card i {
    width: 60px;
    height: 60px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-tab {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--accent);
    background: transparent;
    color: var(--text-muted);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.gallery-tab.active,
.gallery-tab:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

/* Showcase Gallery */
.showcase-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.showcase-hero {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: #000;
}

.showcase-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-arrow:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.showcase-arrow.prev {
    left: 20px;
}

.showcase-arrow.next {
    right: 20px;
}

.showcase-arrow i {
    width: 30px;
    height: 30px;
}

.showcase-hero img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease;
}


.showcase-info {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.showcase-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.showcase-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 500;
}

.stat-item i {
    width: 18px;
    height: 18px;
    color: var(--secondary);
}

.showcase-nav-wrapper {
    position: relative;
    padding: 0 1rem;
}

.showcase-thumbnails {
    display: flex;
    justify-content: flex-start; /* Better for scrollable content start */
    overflow-x: auto;
    gap: 15px;
    padding: 10px 10px 15px;
    margin-bottom: 20px;
    scroll-snap-type: x mandatory;
    /* Custom Scrollbar Styling */
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) rgba(255, 255, 255, 0.05);
}

.showcase-thumbnails::-webkit-scrollbar {
    height: 6px;
    display: block;
}

.showcase-thumbnails::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.showcase-thumbnails::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.showcase-thumbnails::-webkit-scrollbar-thumb:hover {
    background: #c5a037;
}

.gallery-container {
    flex: 0 0 150px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    scroll-snap-align: center;
    opacity: 0.6;
}

.gallery-container:hover {
    opacity: 1;
}

.gallery-container.active {
    opacity: 1;
    border-color: var(--secondary);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.gallery-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Showcase */
@media (max-width: 768px) {
    .showcase-hero img {
        height: 400px;
    }
    
    .showcase-info h3 {
        font-size: 1.8rem;
    }
    
    .gallery-container {
        flex: 0 0 120px;
        height: 80px;
    }

    .showcase-arrow {
        width: 45px;
        height: 45px;
    }

    .showcase-arrow i {
        width: 20px;
        height: 20px;
    }

    .showcase-arrow.prev {
        left: 10px;
    }

    .showcase-arrow.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .showcase-hero img {
        height: 250px;
    }
}

/* Neighborhood Section Styles */
.neighborhood-section {
    background-color: var(--bg-accent);
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.neighborhood-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255,255,255,1), rgba(255,255,255,0));
    pointer-events: none;
}

.neighborhood-section .section-title h2 span {
    color: var(--secondary);
}

/* Lifestyle Section */
.lifestyle-section {
    background-color: #f7f9fc;
    position: relative;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.lifestyle-section .section-title h2 span {
    color: var(--secondary);
}

/* Connectivity Section Cards */
.connectivity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    justify-content: center;
}

.connectivity-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.connectivity-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.connectivity-card.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.connectivity-card.active h3 {
    color: var(--secondary);
}

.connectivity-card.active .route {
    color: rgba(255,255,255,0.7);
}

.conn-icon {
    width: 65px;
    height: 65px;
    background: rgba(212, 175, 55, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.connectivity-card:hover .conn-icon {
    background: var(--secondary);
    color: white;
    transform: rotate(10deg);
}

.connectivity-card.active .conn-icon {
    background: rgba(255,255,255,0.1);
    color: var(--secondary);
}

.connectivity-card h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.connectivity-card .time {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.connectivity-card .route {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Investment Section */
.investment {
    overflow: hidden;
}

.investment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.investment-text h2 span {
    color: var(--secondary);
}

.investment-points {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point {
    display: flex;
    gap: 1.5rem;
}

.point i {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.point h4 {
    margin-bottom: 0.5rem;
}

.investment-image {
    position: relative;
}

.investment-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.investment-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--secondary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Responsive Updates */
@media (max-width: 992px) {
    .investment-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .investment-image {
        order: -1;
    }
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.visible {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    z-index: 2100;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
    color: var(--secondary);
}

.lightbox-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.swipe-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: none;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    z-index: 5;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: swipePulse 2s infinite ease-in-out;
}

@keyframes swipePulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.7; }
    50% { transform: translateX(-50%) scale(1.05); opacity: 1; }
}

.lightbox.visible .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    flex: 1.5;
    max-width: 65%;
    height: auto;
    object-fit: cover;
    background: #000;
}


.lightbox-details {
    flex: 1;
    padding: 3rem;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.lightbox-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.lightbox-details p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.lightbox-cta .btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
}

/* Lightbox Mobile Adjustments */
@media (max-width: 992px) {
    .lightbox-content {
        flex-direction: column;
        max-height: 95vh;
        overflow-y: auto;
    }
    
    .lightbox-content img {
        max-width: 100%;
        max-height: 50vh;
    }
    
    .lightbox-details {
        padding: 2rem;
    }
    
    .lightbox-details h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .lightbox {
        padding: 1rem;
    }
    
    .lightbox-close {
        top: 1rem;
        right: 1.5rem;
    }
}

/* Gallery Hover Update */
.gallery-item {
    cursor: zoom-in;
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contact-info {
    max-width: 600px;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-info h2 span {
    color: var(--secondary);
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    background: var(--accent);
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition);
    cursor: pointer;
}

.method:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--shadow);
}

.method i {
    width: 30px;
    height: 30px;
    color: var(--secondary);
}

.method h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.method p, .method a {
    color: var(--text-light);
}

.method a:hover {
    color: var(--secondary);
}

.premium-form {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 15px 20px;
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* Footer */
footer {
    padding: 80px 0;
    background: var(--primary);
    color: white;
    text-align: center;
}

.footer-content .logo span {
    color: var(--secondary);
}

.footer-content p {
    margin-top: 20px;
    color: #999;
    font-size: 0.9rem;
}

/* Floating Buttons */
.floating-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: var(--transition);
    z-index: 999;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.1);
    background: #128C7E;
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 35px; /* Slightly adjusted for alignment */
    background: var(--secondary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--primary);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Responsive Enhancements */
@media (max-width: 992px) {
    .container { padding: 0 25px; }
    .hero-content h1 { font-size: 3.5rem; }
    .details-grid, .location-grid { grid-template-columns: 1fr; gap: 40px; }
    .investment-content { grid-template-columns: 1fr; gap: 3rem; }
    .investment-image { order: -1; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 768px) {
    .section { padding: 70px 0; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.1rem; padding: 0 10px; }
    
    .hero-actions { 
        flex-direction: column; 
        width: 100%; 
        max-width: 300px; 
        margin: 0 auto;
    }
    
    .hero-actions .btn-primary, 
    .hero-actions .btn-secondary { 
        width: 100%; 
        text-align: center;
    }

    .hero-scroll-indicator { display: none; }

    .private-road-tag {
        padding: 15px 25px;
        font-size: 0.9rem;
        border-radius: 50px;
        width: auto;
        margin-top: 40px;
    }

    .section-title h2 { font-size: 2.4rem; }
    
    /* Floating Buttons Mobile Optimization */
    .floating-whatsapp {
        bottom: 25px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    /* Showcase refinements */
    .showcase-hero { margin-bottom: 1.5rem; order: 1; }
    .showcase-nav-wrapper { order: 2; }
    .showcase-info { order: 3; margin-bottom: 2rem; }
    .showcase-thumbnails { padding-bottom: 40px; } /* Clearance for floating buttons if needed */
    
    .showcase-arrow { display: none !important; }
    .swipe-hint { display: flex; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .section-title h2 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    
    .lightbox-details { padding: 1.5rem; }
    .lightbox-details h3 { font-size: 1.4rem; }
    
    .private-road-tag {
        display: flex;
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        padding: 20px;
    }

    /* Mobile-Specific Contact Box Layout */
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .method {
        padding: 20px;
    }

    .method a, .method p {
        white-space: nowrap; /* Prevents phone number from splitting */
        font-size: 0.95rem;
    }

    /* Floating Buttons Mobile Spacing */
    .floating-whatsapp {
        bottom: 25px;
        right: 20px;
    }

    .back-to-top {
        bottom: 95px;
        right: 20px;
    }
}
