/*
 * Valor Park - Westwood Park Trading Estate
 * Main Stylesheet
 */

/* Import Montserrat Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors from PDF - Dark navy/charcoal and pink/magenta accents */
    --primary-color: #2b2d42;
    --secondary-color: #8d99ae;
    --accent-color: #ef476f;
    --accent-pink: #ff6b9d;
    --text-dark: #2b2d42;
    --text-light: #8d99ae;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

/* Typography */
h1 {
    font-size: 3em;
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2em;
    font-weight: 600;
    line-height: 1.3;
}

h3 {
    font-size: 1.5em;
    font-weight: 600;
}

h4 {
    font-size: 1.25em;
    font-weight: 600;
}

p {
    font-size: 1em;
    line-height: 1.6;
}

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

section {
    padding: 50px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

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

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.btn-download {
    background-color: var(--accent-color);
    color: white;
}

.btn-download:hover {
    background-color: #ff8555;
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2em;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.section-description {
    font-size: 1em;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* Header */
.site-header {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 50px;
}

.main-navigation a {
    color: #555;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #FB8169;
}

.logo {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.logo img {
    height: 50px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #555;
    display: block;
    transition: all 0.3s ease;
}

/* Mobile Off-Canvas Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 40px;
    color: #555;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin: 30px 0;
}

.mobile-menu a {
    color: #555;
    font-family: Montserrat;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #FB8169;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: white;
    background-image: url('../images/hero/top-gradient.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-wrapper {
    width: 100%;
}

.hero-content {
    text-align: center;
    margin: 40px 0px 60px 0;
}

.hero-title {
    color: #000;
    text-align: center;
    font-family: Montserrat;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 49px;
    letter-spacing: 9.6px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero-subtitle {
    color: #000;
    font-family: Montserrat;
    font-size: 48px;
    font-style: normal;
    font-weight: 300;
    line-height: 49px;
    letter-spacing: 9.6px;
    text-transform: uppercase;
}

.hero-info-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
    gap: 0;
}

.hero-info-item {
    padding: 20px 30px;
    text-align: center;
}

.hero-info-divider {
    width: 1px;
    height: 60px;
    background-color: #FB8169;
}

.info-text {
    color: #555;
    text-align: center;
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.65px;
    text-transform: uppercase;
}

.hero-image-wrapper {
    margin-top: 50px;
    width: 100%;
    height: 600px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background-image: inherit;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    animation: kenBurnsZoomIn 4s ease-out forwards;
}

@keyframes kenBurnsZoomIn {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Site Plan Section */
.siteplan-section {
    position: relative;
    background: white;
    padding: 80px 0;
    overflow: hidden;
}

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

.siteplan-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    align-items: center;
    position: relative;
    z-index: 1;
}

.siteplan-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 40px;
}

.siteplan-svg {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.siteplan-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 60px;
}

.siteplan-headline {
    color: #555;
    font-family: Montserrat;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 4.6px;
    text-transform: uppercase;
    margin: 0 0 60px 0;
}

.siteplan-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 50px 30px;
    width: 100%;
}

.siteplan-section .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.feature-icon-circle {
    position: relative;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.feature-svg {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
}

.feature-text {
    color: #555;
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin: 0;
}

/* Accommodation Section - High-End Brochure Style */
.accommodation-section {
    background: #f7f2ef;
    padding: 80px 50px !important;
}

.accommodation-wrapper {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 60px;
    align-items: start;
}

/* Left Column - Introduction */
.intro-column {
    padding-right: 30px;
}

.accommodation-section .section-title {
    color: #8a2f8a;
    font-family: 'Helvetica Neue', 'Inter', 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.intro-description {
    color: #333;
    font-family: 'Helvetica Neue', 'Inter', 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

/* Right Column - Data Tables */
.data-column {
    display: flex;
    flex-direction: column;
}

.tables-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 16px;
    width: 100%;
    max-width: 100%;
}

.table-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
}

/* Unit Tables */
.unit-table {
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.unit-combined {
    background: none;
}

.unit-title-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding: 2px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #9D9D9C;
    min-width: 0;
}

.unit-name {
    color: #8a2f8a;
    font-family: 'Helvetica Neue', 'Inter', 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.unit-col-header {
    color: #8a2f8a;
    font-family: 'Helvetica Neue', 'Inter', 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: right;
}

/* Data Rows */
.unit-data-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding: 1px 0;
    border-bottom: 1px solid #9D9D9C;
    min-width: 0;
}

.data-label {
    color: #555555;
    font-family: 'Helvetica Neue', 'Inter', 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.data-value {
    color: #333;
    font-family: 'Helvetica Neue', 'Inter', 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

/* Total Rows - No Bottom Border */
.total-row {
    border-bottom: none;
    background-color: #8a2f8a20;
}

.total-row .data-label,
.total-row .data-value {
    font-weight: 500;
    color: #555555;
}

/* Gallery Section */
.gallery-section {
    background: white;
    padding: 80px 0;
}

.gallery-headline {
    color: #555;
    text-align: center;
    font-family: Montserrat;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 4.6px;
    text-transform: uppercase;
    margin: 0 0 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    aspect-ratio: 16 / 9;
    background: #f0f0f0;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(138, 47, 138, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

.gallery-icon {
    color: white;
    font-size: 48px;
    font-weight: 300;
}

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

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #8a2f8a;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    padding: 20px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #8a2f8a;
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1200px;
    text-align: center;
    color: white;
    padding: 20px 0;
    font-family: Montserrat;
    font-size: 16px;
}

/* Map Section */
.map-section {
    background-color: var(--bg-white);
    padding: 0;
    width: 100%;
}

.map-container {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.map-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Location Section - Exact Copy of Accommodation Style */
.location-section {
    position: relative;
    background: white;
    padding: 80px 50px !important;
    overflow: hidden;
}

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

.location-section .container {
    position: relative;
    z-index: 1;
}

.location-headline {
    color: #555;
    text-align: center;
    font-family: Montserrat;
    font-size: 23px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: 4.6px;
    text-transform: uppercase;
    margin: 0 0 60px 0;
}

.location-wrapper {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 60px;
    align-items: start;
}

/* Left Column - Introduction */
.location-section .intro-column {
    padding-right: 30px;
}

.location-section .intro-description {
    color: #555555;
    font-family: 'Helvetica Neue', 'Inter', 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

/* Right Column - Data Tables */
.location-section .data-column {
    display: flex;
    flex-direction: column;
}

.location-section .tables-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 0;
    width: 100%;
    max-width: 100%;
}

.location-section .table-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
}

/* Unit Tables */
.location-section .unit-table {
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.location-section .unit-title-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding: 2px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #9D9D9C;
    min-width: 0;
}

.location-section .unit-name {
    color: #8a2f8a;
    font-family: 'Helvetica Neue', 'Inter', 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.location-section .unit-col-header {
    color: #8a2f8a;
    font-family: 'Helvetica Neue', 'Inter', 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: right;
}

/* Data Rows */
.location-section .unit-data-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding: 1px 0;
    border-bottom: 1px solid #9D9D9C;
    min-width: 0;
}

.location-section .unit-data-row:last-child {
    border-bottom: none;
}

.location-section .data-label {
    color: #555555;
    font-family: 'Helvetica Neue', 'Inter', 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.location-section .data-value {
    color: #333;
    font-family: 'Helvetica Neue', 'Inter', 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

/* Footer */
.site-footer {
    background-color: #555555;
    color: white;
    padding: 0;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 50% 5% 45%;
    gap: 0;
    align-items: start;
    margin-bottom: 60px;
}

/* Left Section - Agencies with Contacts */
.footer-agencies-section {
    display: flex;
    flex-direction: row;
    gap: 80px;
}

.agency-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.agency-logo-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.agency-logo {
    height: auto;
    width: 100%;
    max-width: 180px;
    object-fit: contain;
}

.agency-contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.agency-phone {
    color: #FFF;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.agency-website {
    color: #FFF;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.agency-contacts {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-person {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-person h4 {
    color: #FFF;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
}

.contact-person p {
    margin: 0;
    line-height: 1.4;
}

.contact-email {
    color: #FFF;
    font-family: Montserrat;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contact-phone {
    color: #FFF;
    font-family: Montserrat;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contact-person a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-person a:hover {
    color: #FB8169;
}

/* Empty Spacer Column */
.footer-spacer {
    width: 100%;
}

/* Right Section - Newsletter */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.newsletter-logo {
    margin-bottom: 10px;
}

.valor-logo {
    height: 50px;
    width: auto;
}

.newsletter-title {
    color: #FFF;
    text-align: right;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    margin: 0;
}

.newsletter-subtitle {
    color: #FFF;
    text-align: right;
    font-family: Montserrat;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 15px 0;
}

.newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 450px;
}

.email-input-wrapper {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.email-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 2;
}

.newsletter-form input {
    width: 100%;
    padding: 18px 70px 18px 55px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 50px;
    outline: none;
    transition: background 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form input:focus {
    background: rgba(255, 255, 255, 0.2);
}

.newsletter-form .btn-submit {
    position: absolute;
    right: 5px;
    background: #FB8169;
    color: white;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 2;
}

.newsletter-form .btn-submit:hover {
    background: #ff9580;
}

.newsletter-form .btn-submit svg {
    width: 24px;
    height: 24px;
}

/* Newsletter Content Wrapper */
.newsletter-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.newsletter-subtitle {
    transition: color 0.3s ease;
}

/* Error Message State */
.newsletter-subtitle.error-message {
    color: #FF9999 !important;
}

/* Form Transition */
.newsletter-form {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Copyright Section */
.footer-copyright {
    padding-bottom: 40px;
}

.copyright-divider {
    height: 1px;
    background: #FB8169;
    margin-bottom: 30px;
    width: 100%;
}

.footer-copyright p {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0;
}

.footer-copyright a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #FB8169;
}

/* Black Bottom Bar */
.footer-black-bar {
    background-color: #000000;
    height: 30px;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    section {
        padding: 30px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: 7px;
    }

    .hero-subtitle {
        font-size: 36px;
        letter-spacing: 7px;
    }

    .hero-info-grid {
        flex-wrap: wrap;
    }

    .siteplan-grid {
        gap: 0;
    }

    .siteplan-left {
        padding-right: 20px;
    }

    .siteplan-right {
        padding-left: 40px;
    }

    .siteplan-headline {
        font-size: 20px;
        line-height: 26px;
        letter-spacing: 4px;
        margin-bottom: 50px;
    }

    .siteplan-features-grid {
        gap: 40px 25px;
    }

    .accommodation-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .intro-column {
        padding-right: 0;
    }

    .tables-grid {
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }

    .table-stack {
        min-width: 0;
    }

    .unit-table {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .unit-title-row,
    .unit-data-row {
        gap: 12px;
    }

    .data-label,
    .data-value {
        font-size: 13px;
    }

    .accommodation-layout {
        grid-template-columns: 1fr;
    }

    .accommodation-features {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-agencies-section {
        flex-direction: column;
        gap: 50px;
    }

    .footer-spacer {
        display: none;
    }

    .footer-newsletter {
        align-items: flex-start;
    }

    .newsletter-title,
    .newsletter-subtitle {
        text-align: left;
    }

    /* Overlays - expand on medium screens */
    .location-overlay {
        width: 77%;
    }

    .siteplan-overlay {
        width: 77%;
    }
}

@media (max-width: 1000px) {
    .location-overlay {
        width: 100%;
    }

    .siteplan-overlay {
        width: 100%;
    }
}

@media (max-width: 768px) {
	.hero-content {
    margin: 40px 0px 40px 0;
}
    .container {
        padding: 0 20px;
    }

    section {
        padding: 20px;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    .main-navigation {
        display: none;
    }

    .logo {
        position: static;
        transform: none;
        order: 1;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    .hero-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: 4px;
        line-height: 32px;
    }

    .hero-subtitle {
        font-size: 28px;
        letter-spacing: 4px;
        line-height: 32px;
    }

    .hero-info-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 0;
        margin: 30px 0;
    }

    .hero-info-divider {
        display: none;
    }

    .hero-info-item {
        padding: 15px 10px;
        text-align: center;
    }

    .info-text {
        font-size: 11px;
    }

    .hero-image-wrapper {
        height: 200px;
    }

    .section-title {
        font-size: 1.5em;
    }

    .siteplan-section {
        padding: 50px 0;
    }

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

    .siteplan-left {
        padding-right: 0;
    }

    .siteplan-right {
        padding-left: 0;
        align-items: center;
    }

    .siteplan-headline {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 3.6px;
        margin-bottom: 40px;
        text-align: center;
    }

    .siteplan-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 20px;
    }

    .feature-text {
        font-size: 12px;
        line-height: 14px;
    }

    .accommodation-section {
        padding: 60px 0;
    }

    .accommodation-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .intro-column {
        padding-right: 0;
    }

    .accommodation-section .section-title {
        font-size: 15px;
    }

    .intro-description {
        font-size: 13px;
    }

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

    .table-stack {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .unit-table {
        margin-bottom: 16px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .unit-title-row {
        gap: 8px;
    }

    .unit-data-row {
        gap: 8px;
    }

    .unit-name {
        font-size: 11px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .unit-col-header {
        font-size: 10px;
    }

    .data-label {
        font-size: 12px;
        word-break: break-word;
        hyphens: auto;
    }

    .data-value {
        font-size: 12px;
    }

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

    .feature-item p {
        font-size: 0.75em;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Location Section - Mobile */
    .location-section {
        padding: 60px 0;
    }

    .location-headline {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: 3.6px;
        margin-bottom: 40px;
    }

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

    .location-section .intro-column {
        padding-right: 0;
    }

    .location-section .intro-description {
        font-size: 13px;
    }

    .location-section .tables-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        max-width: 100%;
    }

    .location-section .table-stack {
        gap: 30px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .location-section .unit-table {
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .location-section .unit-title-row {
        gap: 8px;
    }

    .location-section .unit-data-row {
        gap: 8px;
    }

    .location-section .unit-name {
        font-size: 11px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .location-section .unit-col-header {
        font-size: 10px;
    }

    .location-section .data-label {
        font-size: 12px;
        word-break: break-word;
        hyphens: auto;
    }

    .location-section .data-value {
        font-size: 12px;
    }

    .location-stats {
        overflow-x: auto;
    }

    .location-stats table {
        font-size: 0.85em;
    }

    .location-stats th,
    .location-stats td {
        padding: 10px;
    }

    .footer-container {
        padding: 60px 20px 0;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-agencies-section {
        flex-direction: column;
        gap: 40px;
    }

    .agency-group {
        gap: 25px;
    }

    .newsletter-form {
        flex-direction: row;
    }

    .newsletter-form input {
        border-right: none;
    }
}

/* Extra small devices - Enhanced table responsiveness */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 15px;
    }

    /* Accommodation Tables */
    .accommodation-wrapper {
        gap: 40px;
    }

    .tables-grid {
        gap: 25px;
    }

    .unit-title-row,
    .unit-data-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 6px;
    }

    .unit-name,
    .unit-col-header {
        font-size: 10px;
    }

    .data-label {
        font-size: 11px;
        line-height: 1.3;
    }

    .data-value {
        font-size: 11px;
    }

    /* Location Tables */
    .location-wrapper {
        gap: 35px;
    }

    .location-section .unit-title-row,
    .location-section .unit-data-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 6px;
    }

    .location-section .unit-name,
    .location-section .unit-col-header {
        font-size: 10px;
    }

    .location-section .data-label {
        font-size: 11px;
        line-height: 1.3;
    }

    .location-section .data-value {
        font-size: 11px;
    }
}
