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

/* ========================================
   FONT DECLARATIONS
   ======================================== */

/* Uncut Sans Font Family */
@font-face {
    font-family: 'Uncut Sans';
    src: url('../fonts/UncutSans-Regular.woff2') format('woff2'),
         url('../fonts/UncutSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('../fonts/UncutSans-RegularItalic.woff2') format('woff2'),
         url('../fonts/UncutSans-RegularItalic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('../fonts/UncutSans-Light.woff2') format('woff2'),
         url('../fonts/UncutSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('../fonts/UncutSans-Medium.woff2') format('woff2'),
         url('../fonts/UncutSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('../fonts/UncutSans-Semibold.woff2') format('woff2'),
         url('../fonts/UncutSans-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uncut Sans';
    src: url('../fonts/UncutSans-Bold.woff2') format('woff2'),
         url('../fonts/UncutSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Grandis Extended Font Family - Add font files to assets/fonts folder */
@font-face {
    font-family: 'Grandis Extended';
    src: url('../fonts/GrandisExtended-Medium.woff2') format('woff2'),
         url('../fonts/GrandisExtended-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

/* ========================================
   GLOBAL TYPOGRAPHY STYLES
   ======================================== */

/* Base body styles */
body {
    font-family: 'Uncut Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* H1 Styles */
h1 {
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: -1px;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* H2 Styles */
h2 {
    font-family: 'Grandis Extended', 'Uncut Sans', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 23px;
    line-height: 29px;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* H3 Styles */
h3 {
    font-family: 'Grandis Extended', 'Uncut Sans', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Paragraph Styles */
p {
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0px;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* ========================================
   LAYOUT CONTAINERS
   ======================================== */

/* Box layout container with max-width */
.box-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Full width container for hero */
.full-width-container {
    width: 100%;
    padding: 0;
}

/* ========================================
   NAVIGATION STYLES
   ======================================== */

/* Main header navigation */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.transparent {
    background-color: transparent;
}

.site-header.scrolled {
    background-color: rgba(88, 44, 131, 0.6);
    backdrop-filter: blur(5px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 50px;
    width: 100%;
    border: none;
    transition: padding 0.3s ease;
}

.site-header.scrolled .header-inner {
    padding: 8px 50px;
}

/* Logo */
.site-logo {
    flex-shrink: 0;
    position: relative;
}

.site-logo a {
    display: block;
}

.site-logo img {
    height: 75px;
    width: auto;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.site-header.scrolled .site-logo img {
    height: 42px;
}

/* Logo visibility control */
.logo-white {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.site-header.scrolled .logo-default {
    opacity: 0;
}

.site-header.scrolled .logo-white {
    opacity: 1;
}

/* Hamburger Menu */
.hamburger-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #582C83;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled .hamburger-menu span {
    background-color: #ffffff;
}

/* Right corner text */
.header-address {
    text-align: right;
    color: #38383E;
    transition: color 0.3s ease;
}

.site-header.scrolled .header-address {
    color: #ffffff;
}

.header-address p {
    font-size: 12px;
    line-height: 16px;
    text-align: right;
    margin: 0;
}

/* Compact address on scroll - 2 lines */
.site-header.scrolled .header-address p {
    font-size: 11px;
    line-height: 14px;
}

/* Combine lines 1 & 2 on same line when scrolled */
.site-header.scrolled .header-address .address-line-1::after {
    content: ', ';
}

.site-header.scrolled .header-address .address-line-2::after {
    content: '';
}

/* Hide line breaks between lines 1 & 2, and 3 & 4 when scrolled */
.site-header.scrolled .header-address .address-line-1 + br,
.site-header.scrolled .header-address .address-line-3 + br {
    display: none;
}

/* ========================================
   HERO SECTION STYLES
   ======================================== */

/* Zoom animation for hero background - zoom out effect */
@keyframes heroZoom {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-color: #38383E;
    padding: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

/* Background image with zoom effect */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    animation: heroZoom 12s ease-out forwards;
    z-index: 1;
}

/* Top gradient overlay - light to transparent */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(223, 226, 240, 0.8) 0%, rgba(178, 203, 222, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Bottom gradient overlay - dark to transparent - covers whole hero */
.hero-section .bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, rgba(78, 92, 102, 0) 0%, #1E3A4E 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    padding: 100px 50px 0 50px;
}

.hero-headline {
    color: #38383E;
    margin-bottom: 20px;
}

.hero-subheadline {
    color: #38383E;
    margin-bottom: 40px;
}

/* Hero positioning elements */
.hero-availability {
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 4;
}

.hero-availability h3 {
    color: #ffffff;
    text-align: left;
}

/* Hero buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 0;
    font-family: 'Uncut Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.hero-button.brochure {
    background-color: #38383E;
}

.hero-button.brochure:hover {
    background-color: #4a4a50;
    transform: translateY(-2px);
}

.hero-button.video {
    background-color: #582C83;
}

.hero-button.video:hover {
    background-color: #6d3a9e;
    transform: translateY(-2px);
}

.hero-button .button-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
    color: #ffffff;
}

/* ========================================
   VIDEO SECTION STYLES
   ======================================== */

.video-section {
    background: linear-gradient(90deg, #0D0F1C 0%, #4E5C66 100%);
    padding: 80px 50px;
    width: 100%;
}

.video-container {
    max-width: 1800px;
    margin: 0 auto;
}

.video-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Video controls */
.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.video-control-btn {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    backdrop-filter: blur(10px);
}

.video-control-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
}

.video-control-btn:active {
    transform: scale(0.95);
}

/* Icon visibility */
.video-control-btn svg {
    display: none;
}

.mute-toggle .icon-mute {
    display: block;
}

.mute-toggle.unmuted .icon-mute {
    display: none;
}

.mute-toggle.unmuted .icon-unmute {
    display: block;
}

.fullscreen-toggle .icon-fullscreen {
    display: block;
}

.fullscreen-toggle.is-fullscreen .icon-fullscreen {
    display: none;
}

.fullscreen-toggle.is-fullscreen .icon-exit-fullscreen {
    display: block;
}

/* 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: 1200px) {
    /* Typography adjustments */
    h1 {
        font-size: 40px;
        line-height: 50px;
    }

    h2 {
        font-size: 20px;
        line-height: 26px;
    }

    h3 {
        font-size: 16px;
        line-height: 22px;
    }

    /* Hero adjustments */
    .hero-section {
        padding: 30px;
    }

    .hero-availability {
        bottom: 30px;
        left: 30px;
    }

    .header-inner {
        padding: 10px 30px;
    }

    /* Video section adjustments */
    .video-section {
        padding: 60px 30px;
    }
}

@media (max-width: 768px) {
    /* Typography for mobile */
    h1 {
        font-size: 32px;
        line-height: 40px;
    }

    h2 {
        font-size: 18px;
        line-height: 24px;
    }

    h3 {
        font-size: 14px;
        line-height: 20px;
    }

    p {
        font-size: 14px;
        line-height: 22px;
    }

    /* Hero mobile layout */
    .hero-section {
        padding: 100px 20px 20px 20px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .hero-content {
        padding: 0 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-headline {
        text-align: center;
    }

    .hero-subheadline {
        text-align: center;
    }

    .hero-availability {
        position: static;
        text-align: center;
        margin-top: 40px;
        width: 100%;
    }

    .hero-availability h3 {
        text-align: center;
        font-size: 14px;
        line-height: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-button {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }

    /* Header mobile */
    .header-inner {
        padding: 10px 20px;
    }

    .site-logo img {
        height: 35px;
    }

    .header-address {
        display: none;
    }

    .hamburger-menu span {
        width: 25px;
        height: 2px;
    }

    /* Brochure banner mobile */
    .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;
    }

    /* Video section mobile */
    .video-section {
        padding: 40px 20px;
    }

    .video-title {
        margin-bottom: 30px;
    }

    .video-controls {
        bottom: 10px;
        right: 10px;
        gap: 8px;
    }

    .video-control-btn {
        width: 38px;
        height: 38px;
    }

    .video-control-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Hamburger menu active state */
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Fullscreen Navigation */
.fullscreen-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(90deg, #0D0F1C 0%, #4E5C66 100%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.fullscreen-nav-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.nav-menu li {
    margin: 10px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

.fullscreen-nav.active .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-nav.active .nav-menu li:nth-child(2) { transition-delay: 0.15s; }
.fullscreen-nav.active .nav-menu li:nth-child(3) { transition-delay: 0.2s; }
.fullscreen-nav.active .nav-menu li:nth-child(4) { transition-delay: 0.25s; }
.fullscreen-nav.active .nav-menu li:nth-child(5) { transition-delay: 0.3s; }
.fullscreen-nav.active .nav-menu li:nth-child(6) { transition-delay: 0.35s; }
.fullscreen-nav.active .nav-menu li:nth-child(7) { transition-delay: 0.4s; }
.fullscreen-nav.active .nav-menu li:nth-child(8) { transition-delay: 0.45s; }
.fullscreen-nav.active .nav-menu li:nth-child(9) { transition-delay: 0.5s; }

.nav-link {
    font-family: 'Uncut Sans', sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.nav-link:hover {
    color: #B289BE;
    transform: translateX(10px);
}

/* Body no-scroll when menu is open */
body.nav-open {
    overflow: hidden;
}

/* Body padding for fixed header */
body {
    padding-top: 0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Fullscreen video styling */
.video-wrapper:fullscreen {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 0;
    z-index: 9999;
}

.video-wrapper:fullscreen video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-wrapper:fullscreen .video-controls {
    bottom: 20px;
    right: 20px;
}

/* Webkit fullscreen support */
.video-wrapper:-webkit-full-screen {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 0;
    z-index: 9999;
}

.video-wrapper:-webkit-full-screen video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-wrapper:-webkit-full-screen .video-controls {
    bottom: 20px;
    right: 20px;
}

/* Firefox fullscreen support */
.video-wrapper:-moz-full-screen {
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 0;
    z-index: 9999;
}

.video-wrapper:-moz-full-screen video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-wrapper:-moz-full-screen .video-controls {
    bottom: 20px;
    right: 20px;
}

/* ========================================
   INTRODUCTION SECTION STYLES
   ======================================== */

.introduction-section {
    position: relative;
    width: 100%;
    aspect-ratio: 1587 / 1236;
    min-height: 100vh;
    background-color: #38383E;
    background-image: url('../images/aerial.jpg');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.introduction-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    padding: 100px 50px 100px 50px;
    text-align: center;
    margin: 0 auto;
}

.introduction-label {
    font-family: 'Grandis Extended', 'Uncut Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    line-height: 30px;
    letter-spacing: 1.3px;
    text-align: center;
    text-transform: uppercase;
    color: #38383E;
    margin-bottom: 30px;
}

.introduction-headline {
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: -1px;
    text-align: center;
    color: #38383E;
    margin-bottom: 40px;
}

.introduction-headline .exceptional {
    color: #582C83;
}

.introduction-text {
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0px;
    text-align: center;
    color: #38383E;
    max-width: 800px;
    margin: 0 auto;
}

/* ========================================
   INTRODUCTION SECTION RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .introduction-content {
        padding: 100px 40px 60px 40px;
    }

    .introduction-headline {
        font-size: 40px;
        line-height: 50px;
    }
}

@media (max-width: 768px) {
    .introduction-content {
        padding: 100px 30px 40px 30px;
    }

    .introduction-label {
        font-size: 11px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .introduction-headline {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 30px;
    }

    .introduction-text {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 480px) {
    .introduction-content {
        padding: 100px 20px 30px 20px;
    }

    .introduction-headline {
        font-size: 28px;
        line-height: 36px;
    }
}

/* ========================================
   ACCOMMODATION SECTION STYLES
   ======================================== */

.accommodation-section {
    padding: 80px 50px;
    background-color: #ffffff;
}

.accommodation-container {
    max-width: 1800px;
    margin: 0 auto;
}

.accommodation-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.accommodation-row:last-child {
    margin-bottom: 0;
}

.accommodation-inner {
    padding: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Site Plan Container */
.site-plan-container {
    background-color: #EEF9FE;
    position: relative;
}

.site-plan-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zoom-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: block;
}

.zoom-btn img {
    width: 100%;
    height: 100%;
}

.north-indicator {
    position: absolute;
    bottom: 20px;
    right: 20px;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    z-index: 10;
}

.north-indicator img {
    width: 100%;
    height: 100%;
}

.site-plan-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Specification Icons Container */
.spec-icons-container {
    background-color: transparent;
    padding: 40px 30px;
}

.spec-icons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 30px 30px;
    align-items: center;
}

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

.spec-icon-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.spec-icon-item p {
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    line-height: 17px;
    letter-spacing: 0px;
    text-align: center;
    color: #38383E;
    margin: 0;
}

/* Unit Containers */
.unit-container {
    background-color: rgba(78, 92, 102, 0.05);
    display: block;
}

.unit-container > div {
    width: 100%;
}

.unit-title {
    font-family: 'Grandis Extended', 'Uncut Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 1px;
    text-align: left;
    color: #582C83;
    margin-bottom: 30px;
}

.unit-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.unit-table tr {
    border-bottom: 1px solid rgba(56, 56, 62, 0.1);
}

.unit-table td {
    padding: 7px 10px;
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #38383E;
}

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

.unit-table td:nth-child(2),
.unit-table td:nth-child(3) {
    text-align: right;
}

.unit-table td:last-child {
    padding-right: 0;
}

.unit-table .total-row td {
    font-weight: 600;
    font-size: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: none;
}

.unit-table .total-row td:nth-child(2) {
    color: #582C83;
}

.gia {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.7;
}

/* Unit Specs */
.unit-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

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

.unit-spec-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.unit-spec-item p {
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    color: #38383E;
    margin: 0;
}

/* ========================================
   ACCOMMODATION SECTION RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .accommodation-section {
        padding: 60px 40px;
    }

    .spec-icons-grid {
        gap: 25px 15px;
    }

    .spec-icon-item img {
        width: 50px;
        height: 50px;
    }

    .spec-icon-item p {
        font-size: 12px;
        line-height: 16px;
    }
}

@media (max-width: 900px) {
    .accommodation-row {
        grid-template-columns: 1fr;
    }

    .spec-icons-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 768px) {
    .accommodation-section {
        padding: 40px 30px;
    }

    .accommodation-inner {
        padding: 20px;
    }

    .spec-icons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

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

    .unit-table td {
        font-size: 13px;
        padding: 12px 8px;
    }
}

@media (max-width: 480px) {
    .accommodation-section {
        padding: 30px 20px;
    }

    .accommodation-row {
        gap: 10px;
        margin-bottom: 10px;
    }

    .spec-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 72px;
    }

    .unit-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

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

    .unit-specs {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .unit-spec-item img {
        width: 40px;
        height: 40px;
    }

    .unit-spec-item p {
        font-size: 11px;
        line-height: 14px;
    }
}

/* ========================================
   LIGHTBOX STYLES
   ======================================== */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    z-index: 10001;
    max-width: 95%;
    max-height: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 10px;
    z-index: 10002;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-close svg {
    display: block;
}

/* Lightbox navigation arrows */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
    padding: 15px;
    z-index: 10002;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: translateY(-50%) scale(0.95);
}

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

@media (max-width: 768px) {
    .lightbox-close {
        top: 10px;
        right: 10px;
        background-color: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        padding: 8px;
    }

    .lightbox-close svg {
        width: 24px;
        height: 24px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        padding: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

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

    .lightbox-image {
        max-height: 85vh;
    }
}

/* ========================================
   GALLERY SECTION STYLES
   ======================================== */

.gallery-section {
    padding: 50px;
    background-color: #d8dbdd;
}

.gallery-container {
    max-width: 1800px;
    margin: 0 auto;
}

.gallery-row {
    display: grid;
    gap: 15px;
    width: 100%;
    margin-bottom: 15px;
}

.gallery-row:last-child {
    margin-bottom: 0;
}

/* All rows now use equal columns */
.gallery-row-1,
.gallery-row-2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Row 3: Equal thirds */
.gallery-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: pointer;
}

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

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

/* Gradient overlay - bottom to top */
.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(180deg, rgba(13, 15, 28, 0) 0%, #0D0F1C 100%);
    pointer-events: none;
    z-index: 2;
}

/* Unit number label */
.gallery-unit-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 3;
    font-family: 'Grandis Extended', 'Uncut Sans', sans-serif;
    font-weight: 200;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    pointer-events: none;
}

/* ========================================
   GALLERY SECTION RESPONSIVE
   ======================================== */

@media (max-width: 900px) {
    .gallery-section {
        padding: 40px;
    }

    .gallery-row-1,
    .gallery-row-2,
    .gallery-row-3 {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 30px;
    }

    .gallery-row {
        gap: 8px;
        margin-bottom: 8px;
    }

    .gallery-item {
        aspect-ratio: 4 / 3;
    }

    .gallery-unit-label {
        bottom: 15px;
        left: 15px;
        font-size: 14px;
        line-height: 18px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 20px;
    }
}

/* ========================================
   ESG SECTION STYLES
   ======================================== */

.esg-section {
    position: relative;
    width: 100%;
    padding: 100px 50px;
    background-color: #B2CBDE;
    background-image: url('../images/esg-bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.esg-container {
    max-width: 1800px;
    margin: 0 auto;
}

/* Top Row: Content + Icons */
.esg-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: center;
}

/* Left Column: Headline + Copy */
.esg-content {
    padding-right: 40px;
}

.esg-headline {
    font-family: 'Aeonik', 'Uncut Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: -1px;
    text-align: left;
    color: #38383E;
    margin-bottom: 30px;
}

.esg-headline .efficient {
    color: #582C83;
}

.esg-copy {
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0px;
    text-align: left;
    color: #38383E;
    margin: 0;
}

/* Right Column: Icons Grid */
.esg-icons {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.esg-icon-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.esg-icon-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.esg-icon-label {
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    line-height: 17px;
    letter-spacing: 0px;
    text-align: center;
    color: #38383E;
    margin: 0;
}

/* Bottom Row: 4 Images */
.esg-images-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.esg-image-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.esg-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ========================================
   ESG SECTION RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .esg-section {
        padding: 80px 40px;
    }

    .esg-headline {
        font-size: 40px;
        line-height: 50px;
    }

    .esg-top-row {
        gap: 40px;
    }

    .esg-icon-row {
        gap: 15px;
    }

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

    .esg-icon-label {
        font-size: 12px;
        line-height: 16px;
    }
}

@media (max-width: 900px) {
    .esg-top-row {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .esg-content {
        padding-right: 0;
    }

    .esg-images-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .esg-section {
        padding: 60px 30px;
    }

    .esg-headline {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .esg-copy {
        font-size: 14px;
        line-height: 22px;
    }

    .esg-icon-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .esg-icons {
        gap: 20px;
    }

    .esg-images-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .esg-section {
        padding: 40px 20px;
    }

    .esg-headline {
        font-size: 28px;
        line-height: 36px;
    }

    .esg-top-row {
        gap: 30px;
        margin-bottom: 30px;
    }

    .esg-icon-item img {
        width: 40px;
        height: 40px;
    }

    .esg-icon-label {
        font-size: 11px;
        line-height: 14px;
    }
}

/* ========================================
   LOCATION SECTION STYLES
   ======================================== */

.location-section {
    padding: 80px 50px;
    background-color: #ffffff;
}

.location-container {
    max-width: 1800px;
    margin: 0 auto;
}

/* Row 1: Header */
.location-header {
    text-align: center;
    margin-bottom: 60px;
}

.location-headline {
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: -1px;
    text-align: center;
    color: #38383E;
    margin-bottom: 30px;
}

.location-headline .unrivalled {
    color: #582C83;
}

.location-description {
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0px;
    text-align: center;
    color: #38383E;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

.location-ulez {
    font-family: 'Grandis Extended', 'Uncut Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 13px;
    line-height: 30px;
    letter-spacing: 1.3px;
    text-align: center;
    text-transform: uppercase;
    color: #582C83;
    margin: 0;
}

/* Row 2: Map - Full Width Edge to Edge */
.location-map {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 60px;
    padding: 0;
}

.location-map iframe {
    width: 100%;
    height: 600px;
    display: block;
}

/* Row 3: Data Tables + Stats */
.location-data-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Left Column: Tables Wrapper */
.location-tables-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.location-table-container {
    display: flex;
    flex-direction: column;
}

.location-table {
    width: 100%;
    border-collapse: collapse;
}

.location-table thead th {
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    line-height: 17px;
    color: #582C83;
    background-color: transparent;
    text-align: left;
    padding: 15px 10px;
    border-bottom: 2px solid rgba(88, 44, 131, 0.2);
}

.location-table thead th:first-child {
    padding-left: 10px;
}

.location-table thead th:nth-child(2),
.location-table thead th:nth-child(3) {
    text-align: right;
}

.location-table thead th:last-child {
    padding-right: 10px;
}

.location-table tbody tr {
    border-bottom: 1px solid rgba(56, 56, 62, 0.1);
}

.location-table tbody tr:last-child {
    border-bottom: none;
}

.location-table tbody td {
    padding: 10px;
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #38383E;
    text-align: left;
}

.location-table tbody td:first-child {
    padding-left: 10px;
}

.location-table tbody td:nth-child(2),
.location-table tbody td:nth-child(3) {
    text-align: right;
}

.location-table tbody td:last-child {
    padding-right: 10px;
}

/* Right Column: Stats */
.location-stats {
    background-color: #F6F7F7;
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
}

.location-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.stat-number {
    font-family: 'Grandis Extended', 'Uncut Sans', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 4px;
    text-align: center;
    text-transform: uppercase;
    color: #582C83;
    margin: 0;
}

.stat-label {
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 0px;
    text-align: center;
    color: #38383E;
    margin: 0;
}

/* ========================================
   LOCATION SECTION RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .location-section {
        padding: 60px 40px;
    }

    .location-headline {
        font-size: 40px;
        line-height: 50px;
    }

    .location-data-row {
        gap: 40px;
    }

    .location-stats {
        padding: 40px;
        gap: 30px;
    }

    .stat-number {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 900px) {
    .location-data-row {
        grid-template-columns: 1fr;
    }

    .location-map iframe {
        height: 500px;
    }

    .location-tables-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

@media (max-width: 768px) {
    .location-section {
        padding: 40px 30px;
    }

    .location-headline {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .location-description {
        font-size: 14px;
        line-height: 22px;
    }

    .location-map iframe {
        height: 400px;
    }

    .location-tables-wrapper {
        gap: 15px;
    }

    .location-table thead th {
        font-size: 12px;
        padding: 12px 8px;
    }

    .location-table tbody td {
        font-size: 13px;
        padding: 8px;
    }

    .location-stats {
        padding: 30px;
        gap: 25px;
    }

    .stat-number {
        font-size: 28px;
        line-height: 36px;
    }

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

@media (max-width: 480px) {
    .location-section {
        padding: 30px 20px;
    }

    .location-headline {
        font-size: 28px;
        line-height: 36px;
    }

    .location-header {
        margin-bottom: 40px;
    }

    .location-map {
        margin-bottom: 40px;
    }

    .location-map iframe {
        height: 300px;
    }

    .location-stats {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 30px;
    }

    .stat-number {
        font-size: 32px;
        line-height: 40px;
    }
}

/* ========================================
   DOWNLOADS SECTION STYLES
   ======================================== */

.downloads-section {
    background-color: #582C83;
    padding: 80px 50px;
}

.downloads-container {
    max-width: 1800px;
    margin: 0 auto;
    text-align: center;
}

.downloads-headline {
    font-family: 'Uncut Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    line-height: 60px;
    letter-spacing: -1px;
    text-align: center;
    color: #B289BE;
    margin-bottom: 50px;
}

.downloads-headline .downloads-word {
    color: #ffffff;
}

.downloads-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 20px;
    background-color: #38383E;
    border: 2px solid #ffffff;
    border-radius: 4px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Uncut Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    min-width: 200px;
}

.download-button:hover {
    background-color: transparent;
    transform: translateY(-2px);
}

.download-label {
    flex: 1;
    text-align: left;
}

.download-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ========================================
   DOWNLOADS SECTION RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .downloads-section {
        padding: 60px 40px;
    }

    .downloads-headline {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .downloads-section {
        padding: 40px 30px;
    }

    .downloads-headline {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 30px;
    }

    .downloads-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .download-button {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .downloads-section {
        padding: 30px 20px;
    }

    .downloads-headline {
        font-size: 28px;
        line-height: 36px;
    }

    .download-button {
        font-size: 12px;
        padding: 10px 15px;
    }
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.site-footer {
    background: linear-gradient(90deg, #0D0F1C 0%, #4E5C66 100%);
    padding: 60px 50px 20px 50px;
    color: #ffffff;
    overflow-x: hidden;
}

.footer-container {
    max-width: 1800px;
    margin: 0 auto;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 19% 19% 19% 15% 28%;
    gap: 0;
    margin-bottom: 40px;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

/* Footer Columns (DTRE, Levy, JLL - 19% each) */
.footer-column {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    min-width: 0;
    overflow: hidden;
    padding-right: 20px;
}

.footer-logo {
    height: 90px;
    width: auto;
    margin-bottom: 20px;
    display: block;
    max-width: 100%;
}

.footer-contact {
    font-family: 'Uncut Sans', sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: #ffffff;
    margin: 0 0 15px 0;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
}

.footer-contact strong {
    font-weight: 600;
    display: block;
    margin-bottom: 0px;
    color: #B289BE;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Add spacing to third column first contact to align with other columns */
.footer-column:nth-child(3) .footer-contact:first-of-type {
    margin-bottom: 31px;
}

/* Spacer (25%) */
.footer-spacer {
    /* Empty spacer column */
}

/* Right Column (35%) */
.footer-right-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%;
    min-width: 0;
    overflow: hidden;
}

.footer-mxpark-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    width: 100%;
}

.footer-mxpark-logo {
    height: 70px;
    width: auto;
    max-width: 100%;
}

.footer-address {
    font-family: 'Uncut Sans', sans-serif;
    font-size: 11px;
    line-height: 16px;
    font-weight: 400;
    color: #ffffff;
    text-align: right;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
}

.footer-developers {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    flex-wrap: nowrap;
}

.footer-developer-logo {
    height: 35px;
    width: auto;
    max-width: 100%;
    flex-shrink: 1;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-credits {
    font-family: 'Uncut Sans', sans-serif;
    font-size: 10px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-credits a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-credits a:hover {
    opacity: 0.7;
}

/* ========================================
   FOOTER RESPONSIVE
   ======================================== */

@media (max-width: 1400px) {
    .footer-content {
        grid-template-columns: 16% 16% 16% 17% 35%;
    }
}

@media (max-width: 1200px) {
    .site-footer {
        padding: 50px 40px 20px 40px;
    }

    .footer-content {
        grid-template-columns: 18% 18% 18% 13% 33%;
    }

    .footer-logo {
        height: 70px;
    }

    .footer-contact {
        font-size: 12px;
        line-height: 16px;
    }
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 20% 20% 20% 10% 30%;
    }

    .footer-logo {
        height: 60px;
    }

    .footer-contact {
        font-size: 11px;
        line-height: 15px;
    }

    .footer-mxpark-logo {
        height: 60px;
    }
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-spacer {
        display: none;
    }

    .footer-right-column {
        align-items: flex-start;
        height: auto;
    }

    .footer-mxpark-section {
        align-items: flex-start;
    }

    .footer-address {
        text-align: left;
    }

    .footer-logo {
        height: 70px;
    }

    .footer-mxpark-logo {
        height: 70px;
    }

    .footer-contact {
        font-size: 13px;
        line-height: 18px;
    }

    .footer-address {
        font-size: 13px;
        line-height: 18px;
    }

    .footer-developers {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 30px 20px 30px;
    }

    .footer-logo {
        height: 60px;
    }

    .footer-mxpark-logo {
        height: 60px;
    }

    .footer-developer-logo {
        height: 35px;
    }

    .footer-contact {
        font-size: 12px;
        line-height: 17px;
    }

    .footer-address {
        font-size: 12px;
        line-height: 17px;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 20px 15px 20px;
    }

    .footer-logo {
        height: 50px;
    }

    .footer-contact {
        font-size: 11px;
        line-height: 16px;
        margin-bottom: 12px;
    }

    .footer-address {
        font-size: 11px;
        line-height: 16px;
    }

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

    .footer-developer-logo {
        height: 28px;
    }

    .footer-developers {
        gap: 12px;
        flex-wrap: wrap;
    }

    .footer-content {
        gap: 30px;
    }
}

/* ========================================
   NAVIGATION RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .nav-link {
        font-size: 28px;
    }

    .nav-menu li {
        margin: 12px 0;
    }
}

@media (max-width: 480px) {
    .nav-link {
        font-size: 22px;
    }

    .nav-menu li {
        margin: 10px 0;
    }
}
