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

/* =============================
   Color Palette (CSS Variables)
   ============================= */
:root {
    --color-ui-red: #E30020;
    --color-bg-red: #860008;
    --color-nav-blue: #CFF5FFA8;
    --color-footer-blue: #baf0ff;
    --color-light-gray: #eeeeee;
    --color-almost-white: #f5f3f3;
}

/* =============================
   Scroll Fade-In Animations
   ============================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.fade-in-stagger .fade-in:nth-child(1) { transition-delay: 0s; }
.fade-in-stagger .fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in-stagger .fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in-stagger .fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in-stagger .fade-in:nth-child(5) { transition-delay: 0.4s; }
.fade-in-stagger .fade-in:nth-child(6) { transition-delay: 0.5s; }
.fade-in-stagger .fade-in:nth-child(7) { transition-delay: 0.6s; }
.fade-in-stagger .fade-in:nth-child(8) { transition-delay: 0.7s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .fade-in-left,
    .fade-in-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* =============================
   Hero Section
   ============================= */
@keyframes heroZoomOut {
    0% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
    }
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 0;
    animation: heroZoomOut 3s ease-out forwards;
    will-change: transform;
}

.hero__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 12.59%, #000000 100%);
    z-index: 1;
    pointer-events: none;
}

/* MODE: overlay — adjust these to reposition/resize */
.hero__mode-overlay {
    position: absolute;
    left: 40px;            /* horizontal position */
    top: 22%;              /* vertical position */
    width: 65%;            /* size */
    max-width: 920px;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}

.hero__mode-overlay img {
    width: 100%;
    height: auto;
    display: block;
}

.hero__vertical-text {
    position: absolute;
    top: 80px;
    right: 30px;
    z-index: 2;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 350;
    font-style: normal;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--color-ui-red);
    text-transform: uppercase;
}

.hero__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 40px 60px;
}

.hero__bottom-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero__cta {
    display: inline-block;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background-color: var(--color-ui-red);
    padding: 10px 24px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    align-self: flex-start;
}

.hero__cta:hover {
    background-color: var(--color-bg-red);
}

.hero__address {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0;
    color: #fff;
    margin: 0;
}

.hero__bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero__partner-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.hero__scroll-down {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    animation: bounceDown 2s ease-in-out infinite;
}

.hero__scroll-down svg {
    display: block;
}

@keyframes bounceDown {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* Hero Responsive */
@media (max-width: 1024px) {
    .hero__vertical-text {
        font-size: 18px;
        right: 20px;
    }

    .hero__mode-overlay {
        width: 75%;
        left: 30px;
    }
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
    }

    .hero__mode-overlay {
        width: 90%;
        left: 20px;
        top: 18%;
    }

    .hero__vertical-text {
        font-size: 14px;
        top: 70px;
        right: 15px;
    }

    .hero__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 0 20px 50px;
    }

    .hero__bottom-right {
        gap: 16px;
    }

    .hero__partner-logo {
        height: 22px;
    }

    .hero__cta {
        font-size: 11px;
        padding: 8px 18px;
    }

    .hero__address {
        font-size: 11px;
    }

    .hero__scroll-down svg {
        width: 20px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .hero__mode-overlay {
        width: 95%;
        left: 10px;
        top: 53%;
    }

    .hero__vertical-text {
        font-size: 35px;
        right: 10px;
    }

    .hero__bottom {
        padding: 0 15px 90px;
    }
}

/* =============================
   Video Section
   ============================= */
.video-section {
    background-color: var(--color-footer-blue);
    padding: 60px 40px 0;
}

.video-section__wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-section__player {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.video-section__placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background-color: var(--color-bg-red);
    border-radius: 12px;
    overflow: hidden;
}

.video-section__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
}

.video-section__play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-section__label {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (max-width: 768px) {
    .video-section {
        padding: 40px 20px 0;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 30px 10px 0;
    }

    .video-section__placeholder {
        border-radius: 8px;
    }
}

/* =============================
   Intro Section
   ============================= */
.intro-section {
    background-color: var(--color-footer-blue);
    padding: 60px 40px;
}

.intro-section__box {
    background-color: #D9F5FE;
    border-radius: 9px;
    padding: 60px 40px;
    text-align: center;
}

.intro-section__content {
    max-width: 700px;
    margin: 0 auto;
}

.intro-section__heading {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 26px;
    line-height: 34px;
    letter-spacing: 0;
    color: #000;
    margin: 0 0 24px;
}

.intro-section__subheading {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 26px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000;
    margin: 0 0 30px;
}

.intro-section__body {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000;
    margin: 0;
}

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

    .intro-section__box {
        padding: 40px 20px;
    }

    .intro-section__heading {
        font-size: 18px;
        line-height: 26px;
    }

    .intro-section__subheading {
        font-size: 18px;
        line-height: 22px;
    }

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

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

    .intro-section__box {
        padding: 30px 15px;
    }

    .intro-section__heading {
        font-size: 16px;
        line-height: 24px;
    }

    .intro-section__subheading {
        font-size: 16px;
    }

    .intro-section__body {
        font-size: 12px;
        line-height: 20px;
    }
}

/* =============================
   Redefine Section
   ============================= */
.redefine {
    position: relative;
    width: 100%;
    height: 120vh;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-color: var(--color-footer-blue);
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.redefine__content {
    padding: 80px 40px;
    max-width: 50%;
    text-align: right;
}

.redefine__heading {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 200;
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: 0;
    color: #000;
    margin: 0;
    text-transform: uppercase;
}

.redefine__heading strong {
    font-weight: 400;
}

.redefine__logo {
    height: 38px;
    width: auto;
    display: inline-block;
    vertical-align: baseline;
    margin-right: 4px;
}

@media (max-width: 1024px) {
    .redefine__heading {
        font-size: 36px;
    }

    .redefine__logo {
        height: 32px;
    }
}

@media (max-width: 768px) {
    .redefine {
        height: 80vh;
    }

    .redefine__content {
        max-width: 80%;
        padding: 60px 20px;
    }

    .redefine__heading {
        font-size: 28px;
    }

    .redefine__logo {
        height: 22px;
    }
}

@media (max-width: 480px) {
    .redefine {
        height: 60vh;
    }

    .redefine__content {
        max-width: 90%;
        padding: 40px 15px;
    }

    .redefine__heading {
        font-size: 22px;
    }

    .redefine__logo {
        height: 18px;
    }
}

/* =============================
   Performance Section
   ============================= */
.performance {
    background-color: var(--color-bg-red);
    padding: 40px;
}

.performance__content {
    padding: 40px;
    border-radius: 9px;
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: var(--color-bg-red);
    min-height: 130vh;
}

.performance__top {
    display: flex;
    gap: 60px;
}

.performance__left {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.performance__heading {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 200;
    font-size: 60px;
    line-height: 1.1;
    letter-spacing: 0;
    color: #fff;
    margin: 0 0 30px;
    text-transform: uppercase;
}

.performance__heading strong {
    font-weight: 400;
}

.performance__logo {
    height: 38px;
    width: auto;
    display: inline-block;
    vertical-align: baseline;
    margin-right: 4px;
}

.performance__body {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0;
    color: #fff;
    margin: 0 0 30px;
}

.performance__buttons {
    display: flex;
    gap: 12px;
}

.performance__btn {
    display: inline-block;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background-color: var(--color-ui-red);
    padding: 10px 24px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.performance__btn:hover {
    background-color: var(--color-bg-red);
}

.performance__right {
    flex: 0 0 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.performance__siteplan {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .performance__heading {
        font-size: 42px;
    }

    .performance__logo {
        height: 30px;
    }
}

@media (max-width: 768px) {
    .performance {
        padding: 15px;
    }

    .performance__content {
        padding: 30px 20px;
        min-height: 90vh;
    }

    .performance__top {
        flex-direction: column;
        gap: 30px;
    }

    .performance__heading {
        font-size: 32px;
    }

    .performance__logo {
        height: 24px;
    }

    .performance__body {
        font-size: 13px;
    }

    .performance__buttons {
        flex-wrap: wrap;
    }

    .performance__btn {
        font-size: 11px;
        padding: 8px 18px;
    }
}

@media (max-width: 480px) {
    .performance {
        padding: 10px;
    }

    .performance__content {
        padding: 20px 15px;
        min-height: 80vh;
    }

    .performance__heading {
        font-size: 24px;
    }

    .performance__logo {
        height: 20px;
    }

    .performance__body {
        font-size: 12px;
        line-height: 20px;
    }
}

/* =============================
   Marquee Scroller
   ============================= */
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee {
    background-color: var(--color-footer-blue);
    overflow: hidden;
    padding: 30px 0;
    white-space: nowrap;
}

.marquee__track {
    display: inline-flex;
    align-items: center;
    animation: marqueeScroll 20s linear infinite;
}

.marquee__item {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    gap: 12px;
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 200;
    font-size: 42px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
}

.marquee__logo {
    height: 28px;
    width: auto;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.marquee__dot {
    display: inline-block;
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    margin: 0 24px;
}

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

    .marquee__logo {
        height: 20px;
    }

    .marquee__dot {
        width: 6px;
        height: 6px;
        margin: 0 16px;
    }
}

@media (max-width: 480px) {
    .marquee__item {
        font-size: 22px;
        gap: 8px;
    }

    .marquee__logo {
        height: 16px;
    }

    .marquee__dot {
        width: 5px;
        height: 5px;
        margin: 0 12px;
    }

    .marquee {
        padding: 20px 0;
    }
}

/* =============================
   Site Header / Nav Bar
   ============================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-nav-blue);
    height: 60px;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 40px;
    height: 100%;
}

.site-header__logo img {
    height: 20px;
    width: auto;
    display: block;
}

.site-header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.site-header__nav .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 40px;
}

.site-header__nav .nav-menu li a {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    transition: color 0.2s ease;
}

.site-header__nav .nav-menu li a:hover,
.site-header__nav .nav-menu li.current-menu-item a {
    color: var(--color-ui-red);
}

.site-header__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 28px;
}

.site-header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

.site-header__burger[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.site-header__burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.site-header__burger[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: var(--color-ui-red);
    border-radius: 50%;
    transition: opacity 0.2s ease;
}

.contact-icon:hover {
    opacity: 0.85;
}

.contact-icon img {
    width: 16px;
    height: 16px;
    display: block;
    filter: brightness(0) invert(1);
}

body {
    padding-top: 0;
    margin: 0;
}

/* =============================
   Site Footer
   ============================= */
.site-footer {
    background-color: var(--color-footer-blue);
    position: relative;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 700;
    font-size: 13px;
    line-height: 19px;
    letter-spacing: 0;
    color: #000;
}

.site-footer__inner {
    width: 100%;
    padding: 60px 40px 0;
}

.site-footer__top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.site-footer__agencies {
    display: flex;
    gap: 80px;
}

.site-footer__agency {
    display: flex;
    flex-direction: column;
}

.agency-logo {
    height: 50px;
    width: auto;
    margin-bottom: 30px;
    object-fit: contain;
    align-self: flex-start;
}

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

.agency-contact p {
    margin: 0;
}

.agency-contact__name {
    font-weight: 700;
}

.agency-contact__phone,
.agency-contact__email {
    font-weight: 400;
}

.agency-contact__phone a,
.agency-contact__email a {
    color: #000;
    text-decoration: none;
}

.agency-contact__phone a:hover,
.agency-contact__email a:hover {
    text-decoration: underline;
}

.site-footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.site-footer__address {
    text-align: right;
    font-weight: 400;
}

.site-footer__address p {
    margin: 0;
}

.site-footer__logos {
    display: flex;
    align-items: center;
    gap: 30px;
}

.partner-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.site-footer__divider {
    border: none;
    border-top: 1px solid #000;
    margin: 40px 0 0;
}

.site-footer__bottom {
    padding: 40px 0;
}

.site-footer__full-logo {
    width: 100%;
    height: auto;
    display: block;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--color-ui-red);
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.back-to-top img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.back-to-top:hover {
    opacity: 0.85;
}

/* =============================
   Responsive Header & Footer
   ============================= */
@media (max-width: 1024px) {
    .site-header__nav .nav-menu {
        gap: 20px;
    }

    .site-header__nav .nav-menu li a {
        font-size: 11px;
        letter-spacing: 0.15em;
    }

    .site-footer__agencies {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .site-header__inner {
        padding: 0 20px;
    }

    .site-header__burger {
        display: flex;
    }

    .site-header__nav {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background-color: var(--color-nav-blue);
        padding: 20px;
    }

    .site-header__nav.is-open {
        display: block;
    }

    .site-header__nav .nav-menu {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .site-footer__inner {
        padding: 40px 20px 0;
    }

    .site-footer__top {
        flex-direction: column;
    }

    .site-footer__agencies {
        flex-direction: column;
        gap: 40px;
    }

    .site-footer__right {
        align-items: flex-start;
        gap: 20px;
    }

    .site-footer__address {
        text-align: left;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 34px;
        height: 34px;
    }

    .back-to-top img {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .site-header__inner {
        padding: 0 15px;
    }

    .site-footer__inner {
        padding: 30px 15px 0;
    }

    .agency-logo {
        height: 36px;
        margin-bottom: 20px;
    }

    .agency-contacts {
        gap: 16px;
    }

    .site-footer__logos {
        gap: 20px;
    }

    .partner-logo {
        height: 22px;
    }

    .site-footer__bottom {
        padding: 30px 0;
    }
}

/* =============================
   Accommodation Page
   ============================= */

/* Subpage Hero Zoom-Out Effect */
.accom-hero::before,
.loc-hero::before,
.sus-hero::before,
.demo-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: inherit;
    background-repeat: no-repeat;
    z-index: 0;
    animation: heroZoomOut 3s ease-out forwards;
    will-change: transform;
}

.accom-hero,
.loc-hero,
.sus-hero,
.demo-hero {
    background-size: 0;
}

/* Accommodation Hero */
.accom-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-position: center bottom;
    background-repeat: no-repeat;
    overflow: hidden;
}

.accom-hero__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.accom-hero__content {
    position: absolute;
    bottom: 60px;
    left: 40px;
    z-index: 2;
    max-width: 50%;
}

.accom-hero__heading {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 200;
    font-size: 60px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.accom-hero__heading strong {
    font-weight: 400;
}

.accom-hero__logo {
    height: 38px;
    width: auto;
    display: inline-block;
    vertical-align: baseline;
    margin-right: 4px;
}

.accom-hero__address {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    color: #fff;
    margin: 0;
}

.accom-hero__bottom-right {
    position: absolute;
    bottom: 60px;
    right: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 24px;
}

.accom-hero__partner-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
}

/* Siteplan */
.accom-siteplan {
    background-color: var(--color-bg-red);
    padding: 40px;
}

.accom-siteplan__img {
    width: 100%;
    max-width: 1400px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Specs Section */
.accom-specs {
    background-color: #D9F6FF;
    padding: 80px 40px;
    min-height: 150vh;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.accom-specs__intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.accom-specs__heading {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 26px;
    line-height: 34px;
    color: #000;
    margin: 0 0 24px;
    text-transform: uppercase;
}

.accom-specs__body {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #000;
    margin: 0;
}

.accom-specs__content {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.accom-specs__left {
    flex: 0 0 50%;
}

.accom-specs__right {
    flex: 0 0 50%;
}

/* Table */
.accom-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #000;
    table-layout: fixed;
}

.accom-table col:nth-child(1) { width: 18%; }
.accom-table col:nth-child(2) { width: 18%; }
.accom-table col:nth-child(3) { width: 18%; }
.accom-table col:nth-child(4) { width: 18%; }
.accom-table col:nth-child(5) { width: 14%; }
.accom-table col:nth-child(6) { width: 14%; }

.accom-table thead th {
    font-weight: 400;
    font-size: 11px;
    text-transform: uppercase;
    padding: 0 8px 12px;
    vertical-align: bottom;
    border-bottom: 1px solid #000;
}

.accom-table thead th:first-child {
    text-align: left;
    padding-left: 5px;
}

.accom-table thead th:nth-child(n+2) {
    text-align: right;
}

.accom-table tbody td {
    padding: 10px 8px;
    border-bottom: 1px solid #ddd;
}

.accom-table tbody td:first-child {
    text-align: left;
    padding-left: 5px;
}

.accom-table tbody td:nth-child(n+2) {
    text-align: right;
}

.accom-table tbody tr:nth-child(even) {
    background-color: #EAFAFF;
}

.accom-table tfoot td {
    padding: 12px 8px;
    font-weight: 700;
    border-top: 1px solid #000;
}

.accom-table tfoot td:first-child {
    text-align: left;
    padding-left: 5px;
}

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

.accom-table tfoot td:last-child {
    text-align: right;
    font-weight: 400;
    font-size: 11px;
}

.accom-table tfoot td.tfoot-bg {
    background-color: #EAFAFF;
}

@media (max-width: 768px) {
    .accom-table tfoot td {
        padding: 8px 8px 8px 0;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .accom-table tfoot td {
        padding: 6px 6px 6px 0;
        font-size: 10px;
    }
}

/* Icons Grid */
.accom-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.accom-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.accom-icon__circle {
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.accom-icon__circle img {
    width: 32px;
    height: 32px;
}

.accom-icon__label {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #000;
    margin: 0;
}

.accom-icon__label strong {
    font-weight: 700;
}

/* Buttons */
.accom-specs__buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.accom-specs__btn {
    display: inline-block;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background-color: var(--color-ui-red);
    padding: 10px 24px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.accom-specs__btn:hover {
    background-color: var(--color-bg-red);
}

/* Accommodation Responsive */
@media (max-width: 1024px) {
    .accom-hero__heading {
        font-size: 42px;
    }

    .accom-hero__logo {
        height: 30px;
    }

    .accom-hero__content {
        max-width: 60%;
    }
}

@media (max-width: 768px) {
    .accom-hero__content {
        max-width: 80%;
        left: 20px;
        bottom: 40px;
    }

    .accom-hero__heading {
        font-size: 32px;
    }

    .accom-hero__logo {
        height: 24px;
    }

    .accom-hero__bottom-right {
        bottom: 40px;
        right: 20px;
        gap: 16px;
    }

    .accom-hero__partner-logo {
        height: 22px;
    }

    .accom-siteplan {
        padding: 20px;
    }

    .accom-specs {
        padding: 50px 20px;
    }

    .accom-specs__content {
        flex-direction: column;
        gap: 40px;
    }

    .accom-specs__left,
    .accom-specs__right {
        flex: 1;
    }

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

    .accom-table {
        font-size: 11px;
    }

    .accom-table thead th {
        font-size: 10px;
        padding: 0 8px 8px 0;
    }

    .accom-table tbody td {
        padding: 8px 8px 8px 0;
    }

}

@media (max-width: 480px) {
    .accom-hero__content {
        max-width: 90%;
        left: 15px;
        bottom: 30px;
    }

    .accom-hero__heading {
        font-size: 24px;
    }

    .accom-hero__logo {
        height: 20px;
    }

    .accom-hero__bottom-right {
        display: none;
    }

    .accom-siteplan {
        padding: 15px;
    }

    .accom-specs {
        padding: 40px 15px;
    }

    .accom-specs__heading {
        font-size: 20px;
    }

    .accom-specs__body {
        font-size: 13px;
    }

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

    .accom-icon__circle {
        width: 56px;
        height: 56px;
    }

    .accom-icon__circle img {
        width: 26px;
        height: 26px;
    }

    .accom-icon__label {
        font-size: 11px;
    }

    .accom-table {
        font-size: 10px;
    }

    .accom-specs__buttons {
        flex-direction: column;
        align-items: center;
    }

}

/* =============================
   Location Page
   ============================= */

/* Location Hero — reuse accom-hero pattern */
.loc-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.loc-hero__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.loc-hero__content {
    position: absolute;
    bottom: 60px;
    left: 40px;
    z-index: 2;
    max-width: 50%;
}

.loc-hero__heading {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 200;
    font-size: 60px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.loc-hero__heading strong {
    font-weight: 400;
}

.loc-hero__logo {
    height: 38px;
    width: auto;
    display: inline-block;
    vertical-align: baseline;
    margin-right: 4px;
}

.loc-hero__address {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    color: #fff;
    margin: 0;
}

.loc-hero__bottom-right {
    position: absolute;
    bottom: 60px;
    right: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 24px;
}

.loc-hero__partner-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
}

/* Prime Freight Connectivity */
.loc-freight {
    background-color: var(--color-footer-blue);
    padding: 80px 40px;
}

.loc-freight__intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.loc-freight__heading {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 26px;
    line-height: 34px;
    color: #000;
    margin: 0 0 24px;
    text-transform: uppercase;
}

.loc-freight__body {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #000;
    margin: 0;
}

.loc-freight__content {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.loc-freight__map {
    flex: 0 0 50%;
}

.loc-freight__map-placeholder {
    width: 100%;
    min-height: 500px;
    border-radius: 9px;
    overflow: hidden;
    background-color: #ddd;
}

.loc-freight__map-placeholder #ccgm-map,
.loc-freight__map-placeholder iframe {
    display: block;
    width: 100%;
    height: 500px;
    min-height: 500px;
}

.loc-freight__tables {
    flex: 0 0 50%;
}

.loc-freight__table-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.loc-freight__table-block {
    flex: 1;
}

.loc-freight__table-title {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #000;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.loc-freight__title-icon {
    width: 20px;
    height: 20px;
}

.loc-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #000;
}

.loc-table td {
    padding: 6px 8px 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.loc-table td:first-child {
    white-space: nowrap;
}

.loc-table td:nth-child(2),
.loc-table td:nth-child(3) {
    text-align: right;
    white-space: nowrap;
}

/* Population Stats */
.loc-freight__stats {
    display: flex;
    gap: 0;
    margin-top: 40px;
}

.loc-freight__stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    border-left: 1px solid #000;
}

.loc-freight__stat-label {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #000;
}

.loc-freight__stat-number {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.1;
    color: #000;
    margin: 4px 0;
}

.loc-freight__stat-desc {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #000;
}

/* Positioned Two Minutes */
.loc-positioned {
    background-color: var(--color-footer-blue);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    min-height: 120vh;
    padding: 40px;
}

.loc-positioned__content {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.loc-positioned__left {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
}

.loc-positioned__icon {
    width: 50px;
    height: auto;
    margin-bottom: 20px;
}

.loc-positioned__heading {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 26px;
    line-height: 34px;
    color: #000;
    margin: 0 0 20px;
    text-transform: uppercase;
}

.loc-positioned__body {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #000;
    margin: 0 0 30px;
}

.loc-positioned__btn {
    display: inline-block;
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background-color: var(--color-ui-red);
    padding: 10px 24px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    align-self: flex-start;
}

.loc-positioned__btn:hover {
    background-color: var(--color-bg-red);
}

.loc-positioned__right {
    flex: 0 0 60%;
}

.loc-positioned__local-map {
    background-color: var(--color-bg-red);
    border-radius: 9px;
    overflow: hidden;
}

.loc-positioned__map-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Location Responsive */
@media (max-width: 1024px) {
    .loc-hero__heading {
        font-size: 42px;
    }

    .loc-hero__logo {
        height: 30px;
    }

    .loc-hero__content {
        max-width: 60%;
    }

    .loc-freight__content {
        flex-direction: column;
    }

    .loc-freight__map,
    .loc-freight__tables {
        flex: 1;
    }

    .loc-freight__stat-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .loc-hero__content {
        max-width: 80%;
        left: 20px;
        bottom: 40px;
    }

    .loc-hero__heading {
        font-size: 32px;
    }

    .loc-hero__logo {
        height: 24px;
    }

    .loc-hero__bottom-right {
        bottom: 40px;
        right: 20px;
        gap: 16px;
    }

    .loc-hero__partner-logo {
        height: 22px;
    }

    .loc-freight {
        padding: 50px 20px;
    }

    .loc-freight__table-row {
        flex-direction: column;
        gap: 20px;
    }

    .loc-freight__stats {
        flex-direction: column;
        gap: 0;
    }

    .loc-freight__stat {
        border-left: none;
        border-top: 1px solid #000;
        padding: 16px 0;
    }

    .loc-freight__stat-number {
        font-size: 28px;
    }

    .loc-positioned {
        padding: 40px 20px;
        min-height: 80vh;
    }

    .loc-positioned__content {
        flex-direction: column;
        gap: 30px;
    }

    .loc-positioned__left,
    .loc-positioned__right {
        flex: 1;
    }

    .loc-positioned__heading {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .loc-hero__content {
        max-width: 90%;
        left: 15px;
        bottom: 30px;
    }

    .loc-hero__heading {
        font-size: 24px;
    }

    .loc-hero__logo {
        height: 20px;
    }

    .loc-hero__bottom-right {
        display: none;
    }

    .loc-freight {
        padding: 40px 15px;
    }

    .loc-freight__heading {
        font-size: 20px;
    }

    .loc-freight__body {
        font-size: 13px;
    }

    .loc-table {
        font-size: 11px;
    }

    .loc-freight__stat-number {
        font-size: 24px;
    }

    .loc-positioned {
        padding: 30px 15px;
        min-height: 60vh;
    }

    .loc-positioned__heading {
        font-size: 18px;
        line-height: 26px;
    }

    .loc-positioned__body {
        font-size: 13px;
    }

    .loc-positioned__local-map {
        padding: 15px;
    }
}

/* =============================
   Sustainability Page
   ============================= */

/* Sustainability Hero */
.sus-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.sus-hero__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.sus-hero__content {
    position: absolute;
    bottom: 60px;
    left: 40px;
    z-index: 2;
    max-width: 50%;
}

.sus-hero__heading {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 200;
    font-size: 60px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.sus-hero__heading strong {
    font-weight: 400;
}

.sus-hero__logo {
    height: 38px;
    width: auto;
    display: inline-block;
    vertical-align: baseline;
    margin-right: 4px;
}

.sus-hero__address {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    color: #fff;
    margin: 0;
}

.sus-hero__bottom-right {
    position: absolute;
    bottom: 60px;
    right: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 24px;
}

.sus-hero__partner-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
}

/* Photo Grid */
.sus-grid {
    background-color: var(--color-almost-white);
    padding: 40px;
}

.sus-grid__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.sus-grid__tile {
    border-radius: 9px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.sus-grid__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

.sus-grid__tile:hover img {
    transform: scale(1);
}

/* Info Section */
.sus-info {
    background-color: var(--color-almost-white);
    padding: 60px 40px 80px;
    min-height: 120vh;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.sus-info__intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.sus-info__heading {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 26px;
    line-height: 34px;
    color: #000;
    margin: 0 0 24px;
    text-transform: uppercase;
}

.sus-info__body {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #000;
    margin: 0;
}

.sus-info__icons-box {
    max-width: 1400px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 9px;
    padding: 50px 40px;
}

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

.sus-info__icon {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sus-info__icon-circle {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sus-info__icon-circle img {
    width: 30px;
    height: 30px;
}

.sus-info__icon-text {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 18px;
    color: #000;
}

.sus-info__icon-text p {
    margin: 0;
}

.sus-info__icon-text strong {
    font-weight: 700;
}

/* Sustainability Responsive */
@media (max-width: 1024px) {
    .sus-hero__heading {
        font-size: 42px;
    }

    .sus-hero__logo {
        height: 30px;
    }

    .sus-hero__content {
        max-width: 60%;
    }

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

@media (max-width: 768px) {
    .sus-hero__content {
        max-width: 80%;
        left: 20px;
        bottom: 40px;
    }

    .sus-hero__heading {
        font-size: 32px;
    }

    .sus-hero__logo {
        height: 24px;
    }

    .sus-hero__bottom-right {
        bottom: 40px;
        right: 20px;
        gap: 16px;
    }

    .sus-hero__partner-logo {
        height: 22px;
    }

    .sus-grid {
        padding: 20px;
    }

    .sus-grid__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .sus-info {
        padding: 40px 20px 60px;
    }

    .sus-info__icons-box {
        padding: 30px 20px;
    }

    .sus-info__icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
    }

}

@media (max-width: 480px) {
    .sus-hero__content {
        max-width: 90%;
        left: 15px;
        bottom: 30px;
    }

    .sus-hero__heading {
        font-size: 24px;
    }

    .sus-hero__logo {
        height: 20px;
    }

    .sus-hero__bottom-right {
        display: none;
    }

    .sus-grid {
        padding: 15px;
    }

    .sus-grid__row {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .sus-info {
        padding: 30px 15px 50px;
    }

    .sus-info__heading {
        font-size: 20px;
    }

    .sus-info__body {
        font-size: 13px;
    }

    .sus-info__icons-box {
        padding: 24px 15px;
    }

    .sus-info__icons {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sus-info__icon-circle {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .sus-info__icon-circle img {
        width: 24px;
        height: 24px;
    }

}

/* 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;
    }
}

/* =============================
   Demographics Page
   ============================= */

/* Demographics Hero */
.demo-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    overflow: hidden;
}

.demo-hero__gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.demo-hero__content {
    position: absolute;
    bottom: 60px;
    left: 40px;
    z-index: 2;
    max-width: 50%;
}

.demo-hero__heading {
    font-family: "sweet-sans-pro", sans-serif;
    font-weight: 200;
    font-size: 60px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 16px;
    text-transform: uppercase;
}

.demo-hero__heading strong {
    font-weight: 400;
}

.demo-hero__logo {
    height: 38px;
    width: auto;
    display: inline-block;
    vertical-align: baseline;
    margin-right: 4px;
}

.demo-hero__address {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    color: #fff;
    margin: 0;
}

.demo-hero__bottom-right {
    position: absolute;
    bottom: 60px;
    right: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 24px;
}

.demo-hero__partner-logo {
    height: 28px;
    width: auto;
    object-fit: contain;
}

/* Demographics Stats Section */
.demo-stats {
    background-color: var(--color-footer-blue);
    padding: 80px 40px;
}

.demo-stats__intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.demo-stats__heading {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 26px;
    line-height: 34px;
    color: #000;
    margin: 0 0 24px;
    text-transform: uppercase;
}

.demo-stats__body {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #000;
    margin: 0;
}

.demo-stats__content {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.demo-stats__photo {
    flex: 0 0 28%;
}

.demo-stats__photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 9px;
}

.demo-stats__grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 0;
}

.demo-stats__card {
    padding: 0 20px;
    border-left: 1px solid #000;
}

.demo-stats__card-icon {
    width: 56px;
    height: 56px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.demo-stats__card-icon img {
    width: 28px;
    height: 28px;
}

.demo-stats__card-title {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #000;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.demo-stats__card-text {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #000;
    margin: 0;
}

/* Port Connections Section */
.demo-port {
    background-color: var(--color-footer-blue);
    padding: 60px 40px 0;
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
}

.demo-port__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 40px;
    gap: 40px;
}

.demo-port__left {
    flex: 0 0 30%;
}

.demo-port__heading {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #000;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.demo-port__body {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #000;
    margin: 0;
}

.demo-port__illustration {
    flex: 0 0 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-port__ship-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.demo-port__right {
    flex: 0 0 22%;
    text-align: right;
}

.demo-port__stat-intro {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #000;
    margin: 0 0 8px;
}

.demo-port__stat-number {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 36px;
    line-height: 1.1;
    color: #000;
}

/* Demographics Responsive */
@media (max-width: 1024px) {
    .demo-hero__heading {
        font-size: 42px;
    }

    .demo-hero__logo {
        height: 30px;
    }

    .demo-hero__content {
        max-width: 60%;
    }

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

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

    .demo-port__content {
        flex-wrap: wrap;
    }

    .demo-port__illustration {
        order: -1;
        flex: 0 0 100%;
    }

    .demo-port__left,
    .demo-port__right {
        flex: 0 0 45%;
    }

    .demo-port__stat-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .demo-hero__content {
        max-width: 80%;
        left: 20px;
        bottom: 40px;
    }

    .demo-hero__heading {
        font-size: 32px;
    }

    .demo-hero__logo {
        height: 24px;
    }

    .demo-hero__bottom-right {
        bottom: 40px;
        right: 20px;
        gap: 16px;
    }

    .demo-hero__partner-logo {
        height: 22px;
    }

    .demo-stats {
        padding: 50px 20px;
    }

    .demo-stats__content {
        flex-direction: column;
    }

    .demo-stats__photo {
        flex: none;
        max-height: 350px;
        overflow: hidden;
        border-radius: 9px;
    }

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

    .demo-stats__card {
        padding: 24px 16px;
    }

    .demo-port {
        padding: 40px 20px 0;
    }

    .demo-port__content {
        flex-direction: column;
        gap: 24px;
    }

    .demo-port__left,
    .demo-port__right {
        flex: none;
    }

    .demo-port__right {
        text-align: left;
    }

    .demo-port__illustration {
        order: 0;
    }
}

@media (max-width: 480px) {
    .demo-hero__content {
        max-width: 90%;
        left: 15px;
        bottom: 30px;
    }

    .demo-hero__heading {
        font-size: 24px;
    }

    .demo-hero__logo {
        height: 20px;
    }

    .demo-hero__bottom-right {
        display: none;
    }

    .demo-stats {
        padding: 40px 15px;
    }

    .demo-stats__heading {
        font-size: 20px;
    }

    .demo-stats__body {
        font-size: 13px;
    }

    .demo-stats__grid {
        grid-template-columns: 1fr;
    }

    .demo-port {
        padding: 30px 15px 0;
    }

    .demo-port__heading {
        font-size: 18px;
    }

    .demo-port__stat-number {
        font-size: 24px;
    }
}

/* =============================
   Contact Page
   ============================= */
.contact-page {
    background-color: var(--color-footer-blue);
    min-height: 100vh;
    padding: 120px 40px 80px;
}

.contact-page__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-page__heading {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 26px;
    line-height: 34px;
    color: #000;
    margin: 0 0 24px;
    text-transform: uppercase;
    text-align: center;
}

.contact-page__body {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #000;
    margin: 0 0 60px;
    text-align: center;
}

.contact-page__agencies {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.contact-page__agency {
    flex: 1;
}

.contact-page__agency-logo {
    height: 50px;
    width: auto;
    margin-bottom: 30px;
    object-fit: contain;
    display: block;
}

.contact-page__contacts {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-page__person p {
    margin: 0;
    font-family: "IBM Plex Mono", monospace;
    font-size: 13px;
    line-height: 19px;
    color: #000;
}

.contact-page__name {
    font-weight: 700;
}

.contact-page__detail {
    font-weight: 400;
}

.contact-page__detail a {
    color: #000;
    text-decoration: none;
}

.contact-page__detail a:hover {
    text-decoration: underline;
}

.contact-page__address {
    text-align: center;
    margin-bottom: 30px;
}

.contact-page__address p {
    font-family: "IBM Plex Mono", monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 19px;
    color: #000;
    margin: 0;
}

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

.contact-page__partner-logo {
    height: 30px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .contact-page {
        padding: 100px 20px 60px;
    }

    .contact-page__agencies {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding: 80px 15px 40px;
    }

    .contact-page__heading {
        font-size: 20px;
    }

    .contact-page__body {
        font-size: 13px;
        margin-bottom: 40px;
    }

    .contact-page__agency-logo {
        height: 36px;
        margin-bottom: 20px;
    }

    .contact-page__logos {
        gap: 20px;
    }

    .contact-page__partner-logo {
        height: 22px;
    }
}
