/* Reset & Base Styles */
:root {
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --bg-primary: #ffffff;
    --bg-secondary: #f9f9f9;
    --bg-dark: #111111;
    --accent: #000000;
    --border: #e0e0e0;
    --transition: 0.3s ease;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    /* Enable smooth vertical scrolling */
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
}

/* Main Wrapper */
.main-wrapper {
    width: 100%;
    height: auto;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    /* Enable smooth scroll */
    position: relative;
    outline: none;
}

/* Sections */
/* Sections */
.section-slide {
    width: 100%;
    height: 100vh;
    /* Strict full viewport height */
    overflow: hidden;
    /* Prevent section growing */
    position: relative;
    padding: 100px 0 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
    /* Removed scroll-snap properties */
}

/* Allow internal scrolling for text-heavy sections if needed */
.section-slide>.container {
    max-height: 100%;
    overflow-y: auto;
    scrollbar-width: thin;
    /* Firefox */
}

.section-slide>.container::-webkit-scrollbar {
    width: 6px;
}

.section-slide>.container::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

/* Adjust Hero Slide */
.section-slide.hero {
    height: 100vh;
    /* Strict full height for hero */
    padding: 0;
    border-bottom: none;
    align-items: center;
    position: relative;
    background: none;
    overflow: hidden;
    /* Keep hidden only for hero to clip slider */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    transition: opacity 0.8s ease-in-out, transform 4s linear;
    z-index: 1;
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 2;
}

/* Ensure overlay is above slider but below content */
.hero-overlay {
    z-index: 1;
}

.hero-content {
    z-index: 2;
}

.section-slide>.container {
    max-height: 100%;
    overflow-y: visible;
    /* Default, rely on parent overflow-y: auto */
}

/* Footer Slide Specifics */
.footer-slide {
    background-color: #000;
    color: #666;
    flex: 0 0 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-content-vertical {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 400;
}

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

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent);
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid var(--accent);
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid #fff;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--text-primary);
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-secondary);
}

/* Typography Helpers */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-subtitle {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    width: 100%;
    max-width: none;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    /* Change to Gray */
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a.active {
    color: var(--text-primary);
    /* Active is Black */
}

.nav-links li a:hover {
    color: var(--text-primary);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-links li a.active {
    color: var(--accent);
}

.nav-links .btn-primary {
    padding: 10px 24px;
    font-size: 0.8rem;
    background-color: transparent !important;
    /* Force transparent */
    color: var(--text-primary) !important;
    border: 1px solid var(--text-primary) !important;
    box-shadow: none !important;
    cursor: pointer;
    /* Ensure pointer for button */
    font-family: var(--font-body);
    /* Inherit font */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links .btn-primary:hover {
    background-color: var(--text-primary) !important;
    color: #fff !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1600596542815-e32898989c57?q=80&w=2000&auto=format&fit=crop') no-repeat center center/cover;
    color: #fff;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.sub-heading {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-weight: 400;
}

.main-heading {
    font-size: 4.5rem;
    margin-bottom: 20px;
}

.location-tag {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    font-weight: 300;
}

.divider {
    opacity: 0.6;
}

.cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    /* Changed from center to start */
}

.about-text {
    padding-top: 40px;
    /* Push text down to align with stats content */
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.about-text strong {
    color: var(--text-primary);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

.stat-item {
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #fff;
    padding: 40px;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 5px;
}

.pricing-card .area {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.btn-text {
    font-weight: 500;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
}

/* Amenities Grid */
.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    justify-content: center;
}

.amenity-card {
    flex: 0 0 280px;
    width: 280px;
}

@media (max-width: 1200px) {
    .amenity-card {
        flex: 0 0 260px;
        width: 260px;
    }
}

@media (max-width: 900px) {
    .amenity-card {
        flex: 0 0 240px;
        width: 240px;
    }
}

@media (max-width: 600px) {
    .amenity-card {
        flex: 0 0 calc(50% - 10px);
        width: calc(50% - 10px);
    }
}

.amenity-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

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

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

.amenity-card .amenity-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6), transparent);
    color: #fff;
    padding: 20px;
    padding-top: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Smart Living Section */
.smart-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.smart-feature-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    flex: 0 0 240px;
    width: 240px;
}

.smart-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.smart-feature-item h4 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .smart-feature-item {
        flex: 0 0 220px;
        width: 220px;
    }
}

@media (max-width: 600px) {
    .smart-features-grid {
        gap: 20px;
    }

    .smart-feature-item {
        padding: 20px 15px;
        flex: 0 0 calc(50% - 10px);
        width: calc(50% - 10px);
    }

    .feature-icon {
        font-size: 2.5rem;
    }
}

/* Location Section */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.location-column h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.location-column ul li {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    color: var(--text-secondary);
}

.location-column ul li strong {
    color: var(--text-primary);
}

/* Contact Section */
.contact {
    background-color: var(--bg-dark);
    color: #fff;
}

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

.text-white {
    color: #fff;
}

.contact-info p {
    color: #888;
    margin-bottom: 40px;
}

/* Unit Plan Images */
.unit-plan-container img {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.unit-plan-container img:hover {
    transform: scale(1.02);
}

/* Gallery Section Specifics */
.gallery.section-slide {
    align-items: flex-start;
    padding-top: 100px;
    /* Ensure header space */
}

.gallery.section-slide>.container {
    height: 100%;
    overflow-y: auto;
    padding-bottom: 100px;
}

/* Amenities Section Specifics - Enable Scrolling */
.amenities.section-slide {
    align-items: flex-start;
    padding-top: 100px;
}

.amenities.section-slide>.container {
    height: 100%;
    overflow-y: auto;
    padding-bottom: 100px;
    scrollbar-width: none;
    /* Firefox */
}

.amenities.section-slide>.container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.info-block h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #666;
}

.phone-link {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

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

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #888;
}

.contact-form input {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: var(--font-body);
}

.contact-form input:focus {
    outline: none;
    border-color: #fff;
}

.btn-primary.full-width {
    width: 100%;
    margin-top: 10px;
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

.btn-primary.full-width:hover {
    background-color: transparent;
    color: #fff;
}

/* Footer */
footer {
    padding: 60px 0;
    background-color: #000;
    color: #666;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.footer-legal {
    text-align: right;
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (max-width: 768px) {

    /* Mobile Styles */
    .section-slide.hero {
        /* Ensure hero stays full screen on mobile if needed, though global style handles it */
        height: 100vh;
    }

    .main-heading {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background: #fff;
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-details {
        flex-direction: column;
        gap: 10px;
    }

    .divider {
        display: none;
    }

    .about-grid,
    .location-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-card {
        padding: 30px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-bottom: 40px;
    /* Ensure space at bottom */
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    height: 300px;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    /* Force full available space usage */
    width: 100%;
    height: 100%;
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

@keyframes zoomIn {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.close-lightbox {
    position: fixed;
    /* Changed from absolute to fixed */
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
    /* Ensure it stays above zoomed image */
    background: rgba(0, 0, 0, 0.5);
    /* Optional: add background for visibility */
    width: 50px;
    height: 50px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
}

.close-lightbox:hover,
.close-lightbox:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Lightbox Navigation */
.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    z-index: 2002;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    transition: 0.3s;
    user-select: none;
}

.lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.6);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Make images in plans clickable */
.master-plan-container img,
.unit-plan-container img {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.master-plan-container img:hover,
.unit-plan-container img:hover {
    transform: scale(1.02);
}

/* Location Section Modern Styles */
.location.section-slide {
    background-color: #111;
    /* Dark background for premium feel */
    color: #fff;
    padding-top: 100px;
    height: 100vh;
    /* Strict full height to match other sections */
    display: flex;
    /* Ensure centering/alignment */
    align-items: center;
}

.location .section-subtitle {
    color: #888;
}

.location .section-title {
    color: #fff;
}

.location-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    height: 70vh;
    /* Fixed height for content area */
    width: 100%;
}

.location-map-container {
    flex: 1;
    min-width: 300px;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-map-path {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(85%);
    /* Dark mode map filter */
}

.location-details {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.location-intro {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Tabbed Interface for Benchmarks */
.location-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    overflow-x: auto;
}

.location-tab-btn {
    background: transparent;
    border: none;
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.location-tab-btn:hover {
    color: #fff;
}

.location-tab-btn.active {
    color: #fff;
    /* Active text color */
    font-weight: 500;
}

.location-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    /* White accent bar */
}

.location-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
    flex: 1;
    overflow-y: auto;
    /* Scroll internally if list is long */
}

.location-tab-content.active {
    display: block;
}

.landmark-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding-right: 10px;
}

/* Custom Scrollbar for list */
.location-tab-content::-webkit-scrollbar {
    width: 4px;
}

.location-tab-content::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 2px;
}

.landmark-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.landmark-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.landmark-name {
    font-size: 1rem;
    color: #ddd;
}

.landmark-dist {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #fff;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .location.section-slide {
        height: auto;
        min-height: 100vh;
        padding-bottom: 100px;
    }

    .location-content-wrapper {
        flex-direction: column;
        height: auto;
    }

    .location-map-container {
        height: 400px;
        flex: none;
    }

    .location-details {
        height: auto;
        flex: none;
    }
}

/* Location Map Graphic Section */
.location-graphic.section-slide {
    background-color: #0b0b0b;
    color: #fff;
    padding-top: 100px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-graphic-container {
    width: 100%;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.img-responsive-map {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    cursor: zoom-in;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.img-responsive-map:hover {
    transform: scale(1.02);
}

.location-graphic .section-title {
    color: #fff;
}

@media (max-width: 768px) {
    .map-graphic-container {
        height: 50vh;
        padding: 10px;
    }
}