/*
 * CormackCoreWeb 2.0 - Custom Stylesheet
 * Author: Charlie - Cormack Advertising
 * Add your custom styles here
 */

/* Import Sweet Sans Pro Font */
@import url('https://use.typekit.net/agq1bia.css');

/* Global Typography */
html {
    overscroll-behavior: none;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    overscroll-behavior: none;
    position: relative;
    overflow-x: hidden;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

/* Full Screen Navigation Overlay */
.fullscreen-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overscroll-behavior: none;
}

.fullscreen-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-nav-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #082921;
}

.fullscreen-nav-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../ui/video-bg.png') center center / cover no-repeat;
    background-attachment: fixed;
    animation: pulseOverlay 4s ease-in-out infinite;
}

@keyframes pulseOverlay {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}

.fullscreen-nav-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.fullscreen-nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.fullscreen-nav-link {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.fullscreen-nav-overlay.active .fullscreen-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-nav-overlay.active .fullscreen-nav-link:nth-child(1) {
    transition-delay: 0.1s;
}

.fullscreen-nav-overlay.active .fullscreen-nav-link:nth-child(2) {
    transition-delay: 0.2s;
}

.fullscreen-nav-overlay.active .fullscreen-nav-link:nth-child(3) {
    transition-delay: 0.3s;
}

.fullscreen-nav-overlay.active .fullscreen-nav-link:nth-child(4) {
    transition-delay: 0.4s;
}

.fullscreen-nav-overlay.active .fullscreen-nav-link:nth-child(5) {
    transition-delay: 0.5s;
}

.fullscreen-nav-overlay.active .fullscreen-nav-link:nth-child(6) {
    transition-delay: 0.6s;
}

.fullscreen-nav-link:hover,
.fullscreen-nav-link:active {
    color: #D88344;
}

/* Close Button */
.fullscreen-nav-close {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg) scale(0.8);
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    z-index: 3;
    padding: 10px;
    transition: all 0.3s ease;
    opacity: 0;
}

.fullscreen-nav-overlay.active .fullscreen-nav-close {
    opacity: 1;
    transform: translateX(-50%) rotate(0deg) scale(1);
    transition-delay: 0.3s;
}

.fullscreen-nav-close:hover {
    color: #D88344;
    transform: translateX(-50%) rotate(90deg) scale(1.1);
}

.fullscreen-nav-close svg {
    display: block;
}

/* Override default header styles */
header.site-header {
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('../images/hero-bg.jpg') center bottom / cover no-repeat;
    display: flex;
    flex-direction: column;
    padding: 0 !important;
    overflow: hidden;
}

/* Site Header - Sticky Navigation inside Hero */
.hero .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.3s ease;
}

/* When scrolled, make it fixed */
.site-header.scrolled {
    position: fixed !important;
}

/* Navigation */
.hero-nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    transition: all 0.3s ease;
}

/* Scrolled state - blur and semi-transparent background */
.hero .site-header.scrolled .hero-nav {
    background: rgba(8, 41, 33, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 20px;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../ui/hero-overlay.svg') center center / cover no-repeat;
    pointer-events: none;
    z-index: 1;
}

.nav-left .hero-logo {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
}

.hero .site-header.scrolled .nav-left .hero-logo {
    height: 25px;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Hamburger Menu */
.hamburger-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.hamburger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.hamburger-menu:hover span {
    background: #D88344;
}

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

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-right .nav-logo {
    height: 50px;
    width: auto;
    transition: height 0.3s ease;
}

.hero .site-header.scrolled .nav-right .nav-logo {
    height: 35px;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 150px 40px 50px;
    color: #ffffff;
}

.hero-title {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 44px;
    line-height: 50px;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
    opacity: 0;
    transform: translateY(-50px);
    transition: all 1s ease-out;
}

.hero-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0px;
    margin-bottom: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 1s ease-out 0.2s;
}

.hero-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-availability {
    color: #D88344;
    font-weight: 500;
    display: inline-block;
    margin-top: 8px;
}

/* Mobile line break control */
.mobile-break {
    display: none;
}

@media (max-width: 768px) {
    .mobile-break {
        display: inline;
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transition: all 1s ease-out 0.4s;
}

.hero-buttons.visible {
    opacity: 1;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 12px 50px;
    border-radius: 100px;
    border: 1px solid #ffffff;
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-btn-brochure {
    background: #197D64;
    min-width: 168px;
}

.hero-btn-brochure:hover {
    background: #156854;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(25, 125, 100, 0.6);
}

.hero-btn-video {
    background: #D88344;
    min-width: 126px;
    gap: 4px;
}

.hero-btn-video:hover {
    background: #c26f35;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(216, 131, 68, 0.6);
}

.btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Hero Button Animations */
.hero-btn-brochure:not(.visible) {
    opacity: 0;
    transform: translateX(-100px);
}

.hero-btn-brochure.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease-out 0.6s, transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn-video:not(.visible) {
    opacity: 0;
    transform: translateX(100px);
}

.hero-btn-video.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease-out 0.6s, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hero Location */
.hero-location {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.hero-location p {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0px;
    margin: 5px 0;
    text-align: center;
}

.hero-w3w {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 500;
    font-style: italic;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0px;
}

/* Video Section */
.video-section {
    position: relative;
    width: 100%;
    background: #052922;
    padding: 100px;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../ui/video-bg.png') center center / cover no-repeat;
    background-attachment: fixed;
    pointer-events: none;
    z-index: 1;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    z-index: 1;
}

.video-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

/* Specifications Section */
.specifications-section {
    position: relative;
    width: 100%;
    background: #d8f4eb;
    padding: 100px 50px;
    overflow: hidden;
}

.specs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../ui/overlay-logo.png') center center / cover no-repeat;
    background-attachment: fixed;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.specifications-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    z-index: 2;
}

/* Left Column */
.specs-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.specs-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.specs-main-title {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 34px;
    line-height: 40px;
    letter-spacing: 0px;
    margin-bottom: 30px;
    color: #333;
}

.highlight-text {
    color: #318B75;
}

.specs-content p {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #333;
    margin-bottom: 20px;
}

.specs-content p strong {
    font-weight: 700;
}

/* Right Column */
.specs-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.specs-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.specs-features-title {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #318B75;
    margin-bottom: 40px;
    text-align: left;
	 margin-left: 3em;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.spec-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.spec-label {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    color: #333;
}

/* Accommodation Section */
.accommodation-section {
    position: relative;
    width: 100%;
    background: #082921;
    padding: 0 50px 0;
    overflow: visible;
}

.accommodation-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Column - Site Plan */
.accommodation-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 10;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.accommodation-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.siteplan-image {
    width: 120%;
    height: auto;
    max-width: none;
    margin-top: -60px;
    margin-bottom: -325px;
    position: relative;
    left: -10%;
}

/* Mobile: Prevent siteplan from causing overflow */
@media (max-width: 768px) {
    .siteplan-image {
        width: 100%;
        left: 0;
        margin-top: 0;
        margin-bottom: -150px;
    }
}

/* Right Column - Content */
.accommodation-right {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    padding: 100px 0;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.accommodation-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.accommodation-label {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}

.accommodation-title {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 34px;
    line-height: 40px;
    letter-spacing: 0px;
    color: #ffffff;
    margin-bottom: 30px;
}

.highlight-text-orange {
    color: #D88344;
}

.accommodation-description {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #ffffff;
    margin-bottom: 40px;
}

.unit-selector-title {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}

/* Unit Selector */
.unit-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.unit-arrow {
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
}

.unit-arrow:hover {
    color: #D88344;
    transform: scale(1.1);
}

.unit-numbers {
    display: flex;
    gap: 10px;
}

.unit-number {
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.unit-number:hover {
    color: #D88344;
    opacity: 1;
}

.unit-number.active {
    background: #D88344;
    color: #082921;
    opacity: 1;
}

/* Unit Data Tables */
.unit-data-container {
    position: relative;
    min-height: 250px;
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .unit-data-container {
        width: calc(100% + 30px);
        margin: 0 -15px;
        padding: 0 15px;
    }
}

.unit-data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    table-layout: fixed;
    margin: 0 auto;
}

.unit-data-table.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.unit-data-table tr {
    border-bottom: none;
}

.unit-data-table tr:last-child {
    border-bottom: none;
}

.unit-data-table td {
    padding: 6px 5px 6px 0;
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #ffffff;
    position: relative;
    vertical-align: bottom;
}

.unit-data-table td::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 5px;
    height: 1px;
    background: #D88344;
}

.unit-data-table tr:last-child td::after {
    display: none;
}

.unit-data-table td:first-child {
    padding-left: 0;
}

.data-label {
    text-align: left;
    font-weight: 500;
    width: 50%;
}

.data-value {
    text-align: right;
    width: 25%;
}

.data-value-header {
    text-align: right;
    font-weight: 600;
    color: #D88344;
}

.data-total td {
    font-weight: 700;
    padding-top: 15px;
}

/* Aerial Section */
.aerial-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url('../images/aerial.jpg') top center / cover no-repeat;
    padding: 100px 50px;
    overflow: hidden;
    display: flex;
    align-items: start;
}

.aerial-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 15% 1fr 15%;
    gap: 60px;
    align-items: center;
}

/* Left Column - Direction 01 */
.aerial-left {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.aerial-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Middle Column - Content */
.aerial-middle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
    opacity: 0;
    transform: translateY(-100px);
    transition: all 0.8s ease-out;
}

.aerial-middle.visible {
    opacity: 1;
    transform: translateY(0);
    padding: 0 50px
}

.aerial-label {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #082921;
    margin-bottom: 20px;
    text-align: center;
}

.aerial-title {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 34px;
    line-height: 40px;
    letter-spacing: 0px;
    color: #ffffff;
    margin-bottom: 30px;
    text-align: center;
}

.aerial-description {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #ffffff;
    text-align: center;
}

/* Right Column - Direction 02 */
.aerial-right {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.aerial-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.aerial-direction-image {
    max-width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .accommodation-section {
        padding: 60px 15px;
        overflow: hidden;
    }

    .accommodation-container {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 100%;
    }

    .accommodation-left { 
        max-width: 100%;
    }

    .siteplan-image {
        width: 100%;
        left: 0;
        margin-top: 0;
        margin-bottom: -150px;
        max-width: 100%;
    }

    .accommodation-title {
        font-size: 28px;
        line-height: 34px;
    }

    .unit-selector {
        gap: 10px;
    }

    .unit-arrow {
        width: 35px;
        height: 35px;
    }

    .unit-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .unit-data-table td {
        padding: 12px 5px;
        font-size: 12px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-nav {
        padding: 20px 15px;
    }

    .nav-left .hero-logo {
        height: 30px;
    }

    .nav-right {
        flex-direction: column;
        gap: 8px;
        align-items: flex-end;
    }

    .nav-right .nav-logo {
        height: 20px;
    }

    /* Override scrolled state on mobile */
    .hero .site-header.scrolled .nav-right .nav-logo {
        height: 18px;
    }

    .hero-content {
        padding: 120px 15px 100px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 34px;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

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

    .video-section {
        padding: 30px 15px;
    }

    .video-container {
        border-radius: 15px;
        max-width: 100%;
    }

    .specifications-section {
        padding: 60px 15px;
    }

    .specifications-container {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 100%;
    }

    .specs-main-title {
        font-size: 28px;
        line-height: 34px;
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .aerial-section {
        padding: 60px 15px;
    }

    .aerial-container {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
    }

    .aerial-title {
        font-size: 28px;
        line-height: 34px;
    }
}

/* Brochure Banner Styles */
.brochure-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.brochure-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.brochure-banner-label {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-right: 10px;
}

.brochure-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.brochure-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.brochure-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.brochure-link svg {
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brochure-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .brochure-banner-label {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .brochure-links {
        justify-content: center;
    }

    .brochure-link {
        font-size: 13px;
        padding: 6px 12px;
    }
}

/* Location Section */
.location-section {
    position: relative;
    width: 100%;
    background: #3C3C3C;
    padding: 100px 50px;
    overflow: hidden;
}

.location-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Column - Content */
.location-left {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.location-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.location-title {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 34px;
    line-height: 40px;
    letter-spacing: 0px;
    color: #ffffff;
    margin-bottom: 30px;
}

.location-description {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #ffffff;
}

.location-description p {
    margin-bottom: 20px;
}

/* Right Column - Transport Tables */
.location-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.location-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.transport-table-wrapper {
    display: flex;
    flex-direction: column;
}

.transport-table-title {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #D88344;
    margin-bottom: 20px;
}

.transport-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.transport-table thead tr {
    border-bottom: none;
}

.transport-table th {
    padding: 6px 10px 6px 0;
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 14px;
    color: #D88344;
    text-align: left;
    position: relative;
    vertical-align: bottom;
}

.transport-table th::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 10px;
    height: 1px;
    background: #D88344;
}

.transport-label-header {
    text-align: left;
    width: 50%;
}

.transport-value-header {
    text-align: right;
    width: 25%;
}

.transport-table tbody tr {
    border-bottom: none;
}

.transport-table td {
    padding: 6px 10px 6px 0;
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    color: #ffffff;
    position: relative;
    vertical-align: bottom;
}

.transport-table td::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 10px;
    height: 1px;
    background: #D88344;
}

.transport-table tbody tr:last-child td::after {
    display: none;
}

.transport-label {
    text-align: left;
}

.transport-label-with-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tfl-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.transport-value {
    text-align: right;
}

/* Map Section */
.map-section {
    position: relative;
    width: 100%;
    background: #3C3C3C;
    padding: 0 0 100px 0;
    overflow: hidden;
}

.map-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    height: 600px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.map-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Responsive Design for Location & Map Sections */
@media (max-width: 768px) {
    .location-section {
        padding: 60px 15px;
    }

    .location-container {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 100%;
    }

    .location-title {
        font-size: 28px;
        line-height: 34px;
    }

    .location-right {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .transport-table td,
    .transport-table th {
        padding: 10px 5px 10px 0;
        font-size: 12px;
    }

    .tfl-icon {
        width: 16px;
        height: 16px;
    }

    .map-container {
        height: 400px;
        max-width: 100%;
    }
}

/* Sustainability Section */
.sustainability-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: url('../images/esg-bg.jpg') center center / cover no-repeat;
    padding: 100px 50px;
    overflow: hidden;
    display: flex;
    align-items: start;
    justify-content: center;
}

.sustainability-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.sustainability-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.sustainability-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.sustainability-label {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}

.sustainability-title {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 34px;
    line-height: 40px;
    letter-spacing: 0px;
    color: #ffffff;
    margin-bottom: 30px;
}

.highlight-text-green {
    color: #A0E1C7;
}

.sustainability-description {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto 60px;
}

.sustainability-description p {
    margin-bottom: 20px;
}

.sustainability-description p:last-child {
    margin-bottom: 0;
}

/* ESG Icons Grid */
.esg-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.esg-icon-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.esg-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.esg-label {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #ffffff;
    margin: 0;
}

/* Responsive Design for Sustainability Section */
@media (max-width: 768px) {
    .sustainability-section {
        padding: 60px 15px;
        min-height: auto;
    }

    .sustainability-container {
        max-width: 100%;
    }

    .sustainability-title {
        font-size: 28px;
        line-height: 34px;
    }

    .sustainability-description {
        font-size: 14px;
        margin-bottom: 40px;
        max-width: 100%;
    }

    .esg-icons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 100%;
    }

    .esg-icon {
        width: 50px;
        height: 50px;
    }

    .esg-label {
        font-size: 13px;
        line-height: 18px;
    }
}

/* Demographics Section */
.demographics-section {
    position: relative;
    width: 100%;
    background: #E9E9E9;
    padding: 0 50px 100px;
    overflow: visible;
}

.demographics-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../ui/overlay-logo.png') center center / cover no-repeat;
    background-attachment: fixed;
    opacity: 0.1;
    pointer-events: none;
    z-index: 1;
}

.demographics-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    z-index: 2;
}

/* Two Column Layout */
.demographics-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

/* Left Column - Content */
.demographics-left {
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.demographics-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.demographics-title {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 34px;
    line-height: 40px;
    letter-spacing: 0px;
    color: #2E2621;
    margin-bottom: 30px;
}

.highlight-text-brown {
    color: #D88A4F;
}

.demographics-description {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #2E2621;
}

.demographics-description p {
    margin-bottom: 20px;
}

.demographics-description p:last-child {
    margin-bottom: 0;
}

/* Right Column - Image */
.demographics-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.demographics-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.demographics-image {
    width: 100%;
    height: auto;
    margin-top: -100px;
    position: relative;
    z-index: 3;
}

/* Four Column Stats Section */
.demographics-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.demographics-stats.visible {
    opacity: 1;
    transform: translateY(0);
}

.demographics-stat-item {
    display: flex;
    flex-direction: column;
    padding: 40px 30px;
    border-left: 1px solid #D88344;
}

.demo-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.stat-title {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2E2621;
    margin-bottom: 15px;
}

.stat-description {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #2E2621;
    margin: 0;
}

/* Source Line */
.demographics-source {
    text-align: center;
}

.demographics-source p {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #2E2621;
    margin: 0;
}

/* Responsive Design for Demographics Section */
@media (max-width: 768px) {
    .demographics-section {
        padding: 0 15px 60px;
        overflow: hidden;
    }

    .demographics-container {
        max-width: 100%;
    }

    .demographics-top {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        max-width: 100%;
    }

    .demographics-left {
        padding-top: 60px;
    }

    .demographics-title {
        font-size: 28px;
        line-height: 34px;
    }

    .demographics-right {
        overflow: hidden;
        max-width: 100%;
    }

    .demographics-image {
        margin-top: 0;
        max-width: 100%;
        width: 100%;
    }

    .demographics-stats {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .demographics-stat-item {
        padding: 30px 20px;
        border-left: none;
        border-top: 1px solid #D88344;
    }

    .demo-icon {
        width: 50px;
        height: 50px;
    }

    .stat-title {
        font-size: 13px;
        line-height: 18px;
    }

    .stat-description {
        font-size: 13px;
        line-height: 22px;
    }
}

/* Gallery Section */
.gallery-section {
    position: relative;
    width: 100%;
    min-height: 200vh;
    background: #3c3c3c;
    padding: 100px 50px;
    border-bottom: 5px solid #D88344;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/gallery-bg.png') center top / cover no-repeat;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

.gallery-container {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
    z-index: 2;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.gallery-item {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

/* Signet Image */
.gallery-signet {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.gallery-signet img {
    width: 220px;
    height: auto;
    opacity: 0.6;
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Lightbox Close Button */
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    z-index: 10001;
    padding: 10px;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: #D88344;
    transform: rotate(90deg) scale(1.1);
}

.lightbox-close svg {
    display: block;
}

/* Lightbox Navigation Buttons */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(216, 131, 68, 0.3);
    border-color: #D88344;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev svg,
.lightbox-next svg {
    display: block;
}

/* Lightbox Counter */
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 20px;
}

/* Gallery Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        min-height: auto;
        padding: 60px 15px;
        overflow: hidden;
    }

    .gallery-container {
        max-width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 15px;
        margin-bottom: 60px;
        max-width: 100%;
    }

    .gallery-signet {
        padding-top: 60px;
    }

    .gallery-signet img {
        width: 80px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }

    .lightbox-counter {
        bottom: 20px;
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Footer Section */
.site-footer {
    background: #082921;
    color: #ffffff;
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
}

footer,
footer.site-footer {
    padding: 0 !important;
    margin: 0 !important;
    background: #082921 !important;
}

/* Override any WordPress default footer styles */
body footer {
    padding: 0 !important;
    margin: 0 !important;
    background: #082921 !important;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 50px 0;
}

/* Footer Top - 4 Columns */
.footer-top {
    display: grid;
    grid-template-columns: 34% 22% 22% 22%;
    gap: 40px;
    margin-bottom: 60px;
}

/* Footer Columns */
.footer-col-1,
.footer-col-2,
.footer-col-3,
.footer-col-4 {
    display: flex;
    flex-direction: column;
}

/* Column 1 - Get in touch */
.footer-col-1 {
    gap: 20px;
}

.footer-title {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 34px;
    line-height: 40px;
    letter-spacing: 0px;
    color: #ffffff;
    margin: 0;
}

.footer-description {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #ffffff;
    margin: 0;
}

/* Footer Brochure Button - Override entrance animations */
.footer-col-1 .hero-btn-brochure {
    opacity: 1 !important;
    transform: translateX(0) !important;
    align-self: flex-start;
    margin-top: 10px;
}

/* Icon positioning for footer button */
.footer-col-1 .btn-icon-img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Footer Logos */
.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    object-position: left bottom;
    margin-bottom: 30px;
}

/* Make Glenny and SBY logos smaller but maintain alignment */
.footer-col-3 .footer-logo,
.footer-col-4 .footer-logo {
    height: 35px;
    margin-bottom: 45px; /* Extra margin to keep contact details aligned */
}

/* Contact Information */
.footer-contact-group {
    margin-bottom: 20px;
}

.contact-name,
.contact-phone,
.contact-email {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0px;
    color: #ffffff;
    margin: 0;
    margin-bottom: 4px;
}

.contact-name {
    font-weight: 500;
    margin-bottom: 8px;
}

/* Contact Links */
.contact-phone a,
.contact-email a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone a:hover,
.contact-email a:hover {
    color: #D88344;
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: #D88344;
    margin-bottom: 60px;
}

/* Footer Middle - 3 Columns */
.footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 60px;
}

.footer-middle-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-claverings-logo {
    height: 60px;
    width: auto;
}

.footer-middle-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

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

.footer-middle-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-copyright {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #ffffff;
    margin: 0;
    text-align: right;
    white-space: nowrap;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    width: 100%;
    height: 20px;
    background: #000000;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-col-1 {
        grid-column: 1 / -1;
    }

    .footer-middle {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-middle-left,
    .footer-middle-center,
    .footer-middle-right {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .footer-container {
        padding: 60px 15px 0;
        max-width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-title {
        font-size: 28px;
        line-height: 34px;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-claverings-logo {
        height: 50px;
    }

    .footer-partner-logo {
        height: 30px;
    }
}

/* ================================================
   MOBILE OVERFLOW PREVENTION
   Global rules to ensure edge-to-edge on mobile
   ================================================ */

@media (max-width: 768px) {
    /* Prevent any section from causing horizontal overflow */
    section,
    .hero,
    .video-section,
    .specifications-section,
    .accommodation-section,
    .aerial-section,
    .location-section,
    .map-section,
    .sustainability-section,
    .demographics-section,
    .gallery-section,
    .site-footer {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Ensure all containers respect mobile viewport */
    .hero-nav,
    .specifications-container,
    .accommodation-container,
    .aerial-container,
    .location-container,
    .sustainability-container,
    .demographics-container,
    .gallery-container,
    .footer-container {
        max-width: 100vw;
        box-sizing: border-box;
    }

    /* Ensure all images respect container boundaries */
    img,
    .siteplan-image,
    .demographics-image,
    .gallery-image,
    .aerial-direction-image {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Prevent iframes from causing overflow */
    iframe {
        max-width: 100%;
    }

    /* Ensure grid layouts don't overflow */
    .specs-grid,
    .esg-icons-grid,
    .demographics-stats,
    .gallery-grid {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Ensure tables don't cause overflow */
    table,
    .transport-table,
    .unit-data-table {
        max-width: 100%;
        overflow-x: auto;
        display: block;
    }
}
