/* ==========================================================================
   Base
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Hanken Grotesk", sans-serif;
    color: #0e1e3e;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    position: relative;
    z-index: 100;
}

.nav__logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav__logo img.nav__logo-menu {
    display: none;
}

.nav:has(.nav__burger--active) .nav__logo img.nav__logo-default {
    display: none;
}

.nav:has(.nav__burger--active) .nav__logo img.nav__logo-menu {
    display: block;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
}

.nav__links a {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #0e1e3e;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: opacity 0.2s ease;
}

.nav__links a:hover {
    opacity: 0.6;
}

.nav__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
    position: relative;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #0e1e3e;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 2px;
}

.nav:has(.nav__burger--active) {
    z-index: 200;
}

.nav__burger--active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: #fff;
}

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

.nav__burger--active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: #fff;
}

.nav__overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 30, 63, 0.97);
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav__overlay--active {
    opacity: 1;
    visibility: visible;
}

.nav__overlay-links {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.nav__overlay-links li {
    margin-bottom: 24px;
}

.nav__overlay-links a {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease;
}

.nav__overlay-links a:hover {
    opacity: 0.6;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    padding: 0 28px 28px;
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    overflow: visible;
}

.hero__image {
    width: 100%;
    height: 90vh;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

/* Watch the video - bottom left of hero */
.hero__play {
    position: absolute;
    left: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    z-index: 3;
}

.hero__play-circle {
    position: relative;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.hero__play-circle svg {
    margin-left: 3px;
}

/* Pulsing ring */
.hero__play-circle::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    z-index: -1;
    animation: heroPlayPulse 2s ease-out infinite;
}

@keyframes heroPlayPulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.hero__play:hover .hero__play-circle {
    transform: scale(1.08);
}

.hero__play-text {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.05em;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* ==========================================================================
   Hero Module (bottom-right, partly off canvas)
   ========================================================================== */

.hero__module {
    position: absolute;
    right: -40px;
    bottom: -60px;
    width: 600px;
    border-radius: 20px 0 0 20px;
    overflow: visible;
    z-index: 10;
    background: white;
    padding: 10px;
    padding-right: 0;
    border-right: none!important;
     /* Add a subtle shadow for better separation from the background */
}

.hero__module-inner {
    position: relative;
    border-radius: 14px 0 0 14px;
    overflow: hidden;
}

.hero__module-bg {
    position: absolute;
    inset: 0;
    background: url('../../assets/images/bero-bg-gradient.jpg') center / cover no-repeat;
    z-index: 0;
}

.hero__module-content {
    position: relative;
    z-index: 1;
    padding: 40px 40px 60px;
}

.hero__module-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.hero__module-subtitle {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 28px;
}

.hero__module-buttons {
    position: relative;
    margin-top: -26px;
    margin-left: 40px;
    display: flex;
    z-index: 20;
}

.hero__module-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0062EE;
    color: #fff;
    text-decoration: none;
    font-family: "Hanken Grotesk", sans-serif;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.hero__module-btn:hover {
    background-color: #0050cc;
}

.hero__module-btn--text {
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 8px;
}

.hero__module-btn--arrow {
    padding: 16px 20px;
    border-radius: 8px;
}

.hero__module-btn--arrow svg {
    width: 17px;
    height: auto;
    display: block;
}

/* ==========================================================================
   Introduction Section
   ========================================================================== */

.intro {
    padding: 140px 40px 50px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 0 0 24px 24px;
}

.intro__label,
.intro__title {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.intro__label {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #0e1e3e;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.intro__label::after {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background-color: #115BFF;
    margin: 12px auto 0;
}

.intro__title {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 70px;
    letter-spacing: 0;
    color: #0e1e3e;
    margin-top: 24px;
}

.intro__video {
    max-width: 1400px;
    margin: 24px auto 0;
    padding: 50px;
}

.intro__video-el {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    object-fit: cover;
    background: #0e1e3e;
}

/* Highlight - progressive fill like a real highlighter */
.highlight {
    position: relative;
    display: inline;
    background-image: linear-gradient(to right, #6DCEED, #6DCEED);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position: left center;
    padding: 2px 6px;
    margin: 0 -6px;
    border-radius: 0;
    transition: none;
}

.highlight--green {
    background-image: linear-gradient(to right, #A9EA98, #A9EA98);
}

.highlight--active {
    animation: highlighterFill 0.6s ease-out forwards;
}

@keyframes highlighterFill {
    0% {
        background-size: 0% 100%;
    }
    100% {
        background-size: 100% 100%;
    }
}

/* ==========================================================================
   Workforce & Location Section
   ========================================================================== */

.workforce {
    background: url('../../assets/images/gradient-bg.png') top center / cover no-repeat;
    min-height: 400px;
}

.workforce__header {
    background: #fff;
    border-radius: 0 0 20px 20px;
    width: 100%;
    height: 60px;
}

.workforce__row {
    display: flex;
    gap: 30px;
    margin-top: -20px;
}

.workforce__left {
    flex: 1;
    padding: 20px 50px;
    min-height: 300px;
}

.workforce__right {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    min-height: 300px;
    position: relative;
}

.workforce__corner {
    position: absolute;
    top: 20px;
    right: 100%;
    width: 20px;
    height: 20px;
    display: block;
}

.workforce__label {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    margin: 50px 0;
}

.workforce__stats {
    display: flex;
    gap: 40px;
}

.workforce__stat {
    text-align: center;
    flex: 1;
}

.workforce__stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: block;
}

.workforce__stat-number {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 600;
    font-size: 22px;
    color: #fff;
    margin-bottom: 6px;
}

.workforce__stat-desc {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    opacity: 0.85;
}

.workforce__text {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 300;
    font-size: 24px;
    line-height: 1.2;
    color: #0e1e3e;
    margin-bottom: 36px;
}

.workforce__buttons {
    display: flex;
}

.workforce__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0062EE;
    color: #fff;
    text-decoration: none;
    font-family: "Hanken Grotesk", sans-serif;
    transition: background-color 0.2s ease;
    cursor: pointer;
}

.workforce__btn:hover {
    background-color: #0050cc;
}

.workforce__btn--text {
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-radius: 8px;
}

.workforce__btn--arrow {
    padding: 16px 20px;
    border-radius: 8px;
}

.workforce__btn--arrow svg {
    width: 17px;
    height: auto;
    display: block;
}

.workforce__image {
    padding: 30px 50px 50px;
}

.workforce__aerial-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* ==========================================================================
   Accommodation Section
   ========================================================================== */

.accommodation {
    padding: 100px 40px 80px;
    text-align: center;
    background: #fff;
    position: relative;
    z-index: 2;
}

.accommodation__label {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #0e1e3e;
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
}

.accommodation__label::after {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background-color: #115BFF;
    margin: 12px auto 0;
}

.accommodation__title {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 70px;
    letter-spacing: 0;
    color: #0e1e3e;
    max-width: 900px;
    margin: 24px auto 60px;
}

.accommodation__title .highlight {
    color: #115BFF;
}

.accommodation__tabs-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 10;
}

.accommodation__tabs {
    display: inline-flex;
    gap: 12px;
    background: #fff;
    padding: 10px;
    border-radius: 14px;
}

.accommodation__tab {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.accommodation__tab--active {
    background-color: #0062EE;
    color: #fff;
}

.accommodation__tab:not(.accommodation__tab--active) {
    background-color: #fff;
    color: #0e1e3e;
}

.accommodation__tab:not(.accommodation__tab--active):hover {
    background-color: #e8e8e8;
}

.plans {
    padding: 80px 40px 80px;
    text-align: center;
    background: #EAEAEA;
}

.plans__panel {
    display: none;
}

.plans__panel--active {
    display: block;
}

.accommodation__plan {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 20px;
    overflow: hidden;
}

.accommodation__plan-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.plans__data {
    max-width: 1000px;
    margin: 60px auto 0;
    text-align: left;
}

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

.plans__table th,
.plans__table td {
    font-family: "Hanken Grotesk", sans-serif;
    padding: 16px 0;
    border-bottom: 2px solid #115BFF;
}

.plans__table-title {
    font-weight: 700;
    font-size: 28px;
    color: #0e1e3e;
    text-align: left;
}

.plans__table-head {
    font-weight: 700;
    font-size: 28px;
    color: #0e1e3e;
    text-align: right;
}

.plans__table tbody td {
    font-weight: 300;
    font-size: 24px;
    color: #0e1e3e;
    border-bottom: 2px solid #115BFF;
}

.plans__table tbody td:first-child {
    text-align: left;
}

.plans__table tbody td:not(:first-child) {
    text-align: right;
}

.plans__table-total td {
    font-weight: 700;
}

.plans__features {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.plans__tags {
    display: flex;
    gap: 8px;
}

.plans__tag {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 24px;
    background: #6DCEED;
    color: #0e1e3e;
    border-radius: 8px;
}

.plans__download {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 24px;
    background: #0062EE;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    margin-left: auto;
    transition: background-color 0.2s ease;
}

.plans__download:hover {
    background-color: #0050cc;
}

/* ==========================================================================
   Specification Section
   ========================================================================== */

.specification {
    padding: 100px 40px 80px;
    text-align: center;
    background: #EAEAEA;
}

.specification__label {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #0e1e3e;
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
}

.specification__label::after {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background-color: #115BFF;
    margin: 12px auto 0;
}

.specification__title {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 70px;
    letter-spacing: 0;
    color: #0e1e3e;
    max-width: 900px;
    margin: 24px auto 0;
}

.specification__title .highlight {
    background-image: none;
    color: #0F1E3F;
    position: relative;
    padding: 2px 6px;
    margin: 0 -6px;
}

.specification__title .highlight::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    padding: 2px 6px;
    color: #fff;
    background: #115BFF;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}

.specification__title .highlight.highlight--active::before {
    animation: highlighterReveal 0.6s ease-out forwards;
}

/* ==========================================================================
   Specification Grid Section
   ========================================================================== */

.specgrid {
    display: flex;
    gap: 10px;
    padding: 0 40px 80px;
    background: #EAEAEA;
}

.specgrid__image {
    width: 50%;
    flex-shrink: 0;
}

.specgrid__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.specgrid__items {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.specgrid__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 20px;
}

.specgrid__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.specgrid__text {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    color: #fff;
}

.specgrid__text--dark {
    color: #000;
}

/* ==========================================================================
   Location Section
   ========================================================================== */

.location {
    padding-top: 80px;
}

.location__hero {
    background: url('../../assets/images/gradient-bg-2.png') top center / cover no-repeat;
    padding: 80px 40px 100px;
    text-align: center;
    position: relative;
    border-radius: 20px;
    margin: 0 28px;
}

.location__hero-content {
    max-width: 750px;
    margin: 0 auto;
}

.location__label {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
}

.location__label::after {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background-color: #115BFF;
    margin: 12px auto 0;
}

.location__title {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 70px;
    letter-spacing: 0;
    color: #fff;
    margin: 24px auto 40px;
}

.location__title .highlight {
    background-image: none;
    color: #fff;
    position: relative;
    padding: 2px 6px;
    margin: 0 -6px;
}

.location__title .highlight::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    padding: 2px 6px;
    color: #fff;
    background: #A9EA98;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}

.location__title .highlight.highlight--active::before {
    animation: highlighterReveal 0.6s ease-out forwards;
}

.location__text {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 20px;
}

.location__tabs-wrapper {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 10;
}

.location__tabs {
    display: inline-flex;
    gap: 12px;
    background: #fff;
    padding: 10px;
    border-radius: 14px;
}

.location__tab {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.location__tab--active {
    background-color: #0062EE;
    color: #fff;
}

.location__tab:not(.location__tab--active) {
    background-color: #fff;
    color: #0e1e3e;
}

.location__tab:not(.location__tab--active):hover {
    background-color: #e8e8e8;
}

.location__data {
    padding: 80px 40px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.location__panel {
    display: none;
}

.location__panel--active {
    display: block;
}

.location__table {
    width: 100%;
    border-collapse: collapse;
}

.location__table th,
.location__table td {
    font-family: "Hanken Grotesk", sans-serif;
    padding: 16px 0;
    border-bottom: 2px solid #115BFF;
}

.location__table-title {
    font-weight: 700;
    font-size: 28px;
    color: #0e1e3e;
    text-align: left;
}

.location__table-head {
    font-weight: 700;
    font-size: 28px;
    color: #0e1e3e;
    text-align: right;
}

.location__table tbody td {
    font-weight: 300;
    font-size: 24px;
    color: #0e1e3e;
}

.location__table tbody td:first-child {
    text-align: left;
}

.location__table tbody td:not(:first-child) {
    text-align: right;
}

/* ==========================================================================
   Local Wages Section
   ========================================================================== */

.wages {
    position: relative;
    background: url('../../assets/images/local-bg.jpg') top center / cover no-repeat;
    padding: 100px 40px;
    text-align: center;
}

.wages__overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.5);
}

.wages__content {
    position: relative;
    z-index: 1;
}

.wages__label {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #0e1e3e;
    margin-bottom: 12px;
    display: inline-block;
    position: relative;
}

.wages__label::after {
    content: '';
    display: block;
    width: 22px;
    height: 1px;
    background-color: #115BFF;
    margin: 12px auto 0;
}

.wages__title {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 400;
    font-size: 55px;
    line-height: 70px;
    letter-spacing: 0;
    color: #0e1e3e;
    max-width: 900px;
    margin: 24px auto 60px;
}

.wages__title .highlight {
    background-image: none;
    color: #0e1e3e;
    position: relative;
    padding: 2px 6px;
    margin: 0 -6px;
}

.wages__title .highlight::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    padding: 2px 6px;
    color: #0e1e3e;
    background: #A9EA98;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}

.wages__title .highlight.highlight--active::before {
    animation: highlighterReveal 0.6s ease-out forwards;
}

.wages__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 700px;
    margin: 0 auto;
}

.wages__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 24px;
    background: rgba(220, 220, 220, 0.6);
    border-radius: 12px;
}

.wages__item--highlight {
    background: #A9EA98;
}

.wages__city {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #0e1e3e;
}

.wages__amount {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #0e1e3e;
}

/* ==========================================================================
   Map Section
   ========================================================================== */

.map {
    padding: 0 28px 20px;
}

.map__container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
}

.map__canvas {
    width: 100%;
    height: 100%;
}

.map__labels {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 10;
}

.map__label-satnav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #115BFF;
    padding: 16px 24px;
    border-radius: 8px;
}

.map__label-line {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
}

.map__google-btn {
    position: absolute;
    bottom: 28px;
    right: 28px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0e1e3e;
    background: #fff;
    padding: 16px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    transition: background 0.2s ease;
}

.map__google-btn:hover {
    background: #f0f0f0;
}

/* ==========================================================================
   Aerial Bottom
   ========================================================================== */

.aerial-bottom {
    overflow: hidden;
}

.aerial-bottom__img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.15);
    transition: transform 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.aerial-bottom.is-visible .aerial-bottom__img {
    transform: scale(1);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    background: linear-gradient(135deg, #0F1E3F 0%, #115BFF 50%, #3BB8F0 100%);
    padding: 80px 60px 40px;
}

.footer__inner {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer__left {
    flex: 1;
}

.footer__right {
    flex: 1;
}

.footer__label {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 24px;
}

.footer__title {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 64px;
    letter-spacing: 0;
    color: #fff;
    margin-bottom: 60px;
}

.footer__title .highlight {
    background-image: none;
    color: #fff;
    position: relative;
    padding: 2px 6px;
    margin: 0 -6px;
}

.footer__title .highlight::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    padding: 2px 6px;
    color: #0F1E3F;
    background: #A9EA98;
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
}

.footer__title .highlight.highlight--active::before {
    animation: highlighterReveal 0.6s ease-out forwards;
}

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

.footer__logo-core {
    height: 40px;
    width: auto;
}

.footer__logo-trammell {
    height: 28px;
    width: auto;
}

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

.footer__agent {
    flex: 1;
}

.footer__agent-logo {
    height: 28px;
    width: auto;
    margin-bottom: 28px;
    display: block;
}

.footer__agent:first-child .footer__agent-logo {
    height: 34px;
    margin-bottom: 22px;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 24px;
}

.footer__name {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #0F1E3F;
    background: #A9EA98;
    display: inline-block;
    padding: 2px 8px;
    margin-left: -8px;
    margin-bottom: 4px;
    width: fit-content;
}

.footer__phone {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #fff;
}

.footer__email {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

.footer__email:hover {
    text-decoration: underline;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer__disclaimer {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
}

.footer__credit {
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

/* ==========================================================================
   Reveal Animations
   ========================================================================== */

[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal="fade"] {
    transform: none;
}

[data-reveal="scale"] {
    transform: scale(0.95);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

[data-reveal-children] > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-reveal-children].is-visible > * {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    [data-reveal-children] > * {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero__image {
        animation: none;
    }
}

@keyframes highlighterReveal {
    0% {
        -webkit-clip-path: inset(0 100% 0 0);
        clip-path: inset(0 100% 0 0);
    }
    100% {
        -webkit-clip-path: inset(0 0 0 0);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes heroPan {
    0% {
        object-position: center center;
    }
    50% {
        object-position: right center;
    }
    100% {
        object-position: center center;
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* ---------- 1200px - Large tablets / small desktops ---------- */
@media (max-width: 1200px) {
    .hero__module {
        width: 420px;
    }

    .hero__module-title {
        font-size: 23px;
    }

    .hero__module-subtitle {
        font-size: 18px;
    }

    .intro__title,
    .accommodation__title,
    .specification__title,
    .location__title,
    .wages__title {
        font-size: 45px;
        line-height: 58px;
    }

    .footer__title {
        font-size: 42px;
        line-height: 54px;
    }

    .workforce__text {
        font-size: 20px;
    }

    .plans__table-title,
    .plans__table-head,
    .location__table-title,
    .location__table-head {
        font-size: 24px;
    }

    .plans__table tbody td,
    .location__table tbody td {
        font-size: 20px;
    }
}

/* ---------- 1024px - Tablets landscape ---------- */
@media (max-width: 1024px) {
    .nav {
        padding: 20px 28px;
    }

    .nav__links {
        gap: 32px;
    }

    .nav__links a {
        font-size: 14px;
    }

    .hero__module {
        width: 380px;
        bottom: -50px;
    }

    .hero__module-content {
        padding: 32px 32px 28px;
    }

    .hero__module-title {
        font-size: 20px;
    }

    .hero__module-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .workforce__corner {
        display: none;
    }

    .workforce__row {
        flex-direction: column;
        gap: 20px;
    }

    .workforce__left {
        padding: 20px 28px;
    }

    .workforce__right {
        margin: 0 28px;
        padding: 40px;
    }

    .workforce__image {
        padding: 30px 28px 50px;
    }

    .specgrid {
        flex-direction: column;
        padding: 0 28px 60px;
    }

    .specgrid__image {
        width: 100%;
        height: 300px;
    }

    .specgrid__items {
        width: 100%;
    }

    .location__hero {
        margin: 0 20px;
        padding: 60px 32px 80px;
    }

    .location__tabs {
        gap: 8px;
        padding: 8px;
    }

    .location__tab {
        padding: 14px 24px;
        font-size: 12px;
    }

    .location__data {
        padding: 60px 28px 40px;
    }

    .wages {
        padding: 80px 28px;
    }

    .map {
        padding: 0 20px 20px;
    }

    .map__container {
        height: 500px;
    }

    .footer {
        padding: 60px 40px 32px;
    }

    .footer__top {
        gap: 40px;
    }

    .footer__title {
        font-size: 36px;
        line-height: 46px;
        margin-bottom: 40px;
    }
}

/* ---------- 768px - Tablets portrait ---------- */
@media (max-width: 768px) {
    .nav {
        padding: 16px 20px;
    }

    .nav__logo img {
        height: 32px;
    }

    .nav__links {
        gap: 20px;
    }

    .nav__links a {
        font-size: 13px;
    }

    .hero {
        padding: 0 16px 16px;
    }

    .hero__image {
        border-radius: 12px;
        aspect-ratio: 4 / 3;
        /* animation: heroPan 20s ease-in-out infinite; */
    }

    .hero__module {
        width: 340px;
        right: 0;
        bottom: -40px;
        border-radius: 12px;
        padding-right: 10px;
    }

    .hero__module-inner {
        border-radius: 10px;
    }

    .hero__module-content {
        padding: 28px 28px 44px;
    }

    .hero__module-buttons {
        margin-top: -22px;
        margin-left: 28px;
    }

    .hero__module-title {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .hero__module-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .hero__module-btn {
        font-size: 12px;
        padding: 12px 24px;
    }

    .intro {
        padding: 100px 24px 60px;
    }

    .intro__title {
        font-size: 36px;
        line-height: 46px;
    }

    .intro__title,
    .accommodation__title,
    .specification__title,
    .location__title,
    .wages__title {
        font-size: 36px;
        line-height: 46px;
    }

    .workforce__label {
        margin: 30px 0;
    }

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

    .workforce__stat {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

    .workforce__stat-icon {
        width: 48px;
        height: 48px;
        margin: 0;
        flex-shrink: 0;
    }

    .workforce__right {
        padding: 32px;
    }

    .workforce__text {
        font-size: 18px;
    }

    .accommodation {
        padding: 80px 24px 60px;
    }

    .accommodation__title {
        margin: 24px auto 40px;
    }

    .accommodation__tab {
        padding: 14px 28px;
    }

    .plans {
        padding: 60px 24px;
    }

    .plans__table-title,
    .plans__table-head {
        font-size: 20px;
    }

    .plans__table tbody td {
        font-size: 18px;
        padding: 12px 0;
    }

    .plans__features {
        flex-direction: column;
        align-items: flex-start;
    }

    .plans__tags {
        flex-wrap: wrap;
    }

    .plans__download {
        margin-left: 0;
    }

    .specification {
        padding: 80px 24px 60px;
    }

    .specgrid {
        padding: 0 20px 60px;
        gap: 8px;
    }

    .specgrid__image {
        height: 240px;
    }

    .specgrid__item {
        padding: 16px 18px;
        gap: 12px;
        border-radius: 14px;
    }

    .specgrid__icon {
        width: 40px;
        height: 40px;
    }

    .specgrid__text {
        font-size: 13px;
    }

    .location__hero {
        margin: 0 16px;
        padding: 50px 24px 70px;
    }

    .location__title {
        font-size: 36px;
        line-height: 46px;
    }

    .location__text {
        font-size: 16px;
    }

    .location__tabs-wrapper {
        width: calc(100% - 32px);
        left: 50%;
    }

    .location__tabs {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
        padding: 6px;
        border-radius: 12px;
    }

    .location__tab {
        padding: 12px 18px;
        font-size: 11px;
        border-radius: 6px;
    }

    .location__table-title,
    .location__table-head {
        font-size: 20px;
    }

    .location__table tbody td {
        font-size: 18px;
    }

    .wages {
        padding: 80px 24px;
    }

    .wages__grid {
        gap: 8px;
    }

    .wages__item {
        padding: 14px 18px;
    }

    .wages__city,
    .wages__amount {
        font-size: 14px;
    }

    .map {
        padding: 0 16px 16px;
    }

    .map__container {
        height: 450px;
        border-radius: 16px;
    }

    .map__label-satnav {
        padding: 12px 18px;
    }

    .map__label-line {
        font-size: 12px;
    }

    .map__google-btn {
        padding: 12px 20px;
        font-size: 12px;
    }

    .footer {
        padding: 50px 28px 28px;
    }

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

    .footer__title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 36px;
    }

    .footer__agents {
        gap: 40px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 16px;
    }
}

/* ---------- 640px - Large phones ---------- */
@media (max-width: 640px) {
    .nav__links {
        display: none;
    }

    .nav__burger {
        display: block;
    }

    .hero {
        padding: 0 12px 12px;
    }

    .hero__image {
        border-radius: 10px;
        aspect-ratio: 3 / 2;
    }

    .hero__module {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: -30px;
        border-radius: 10px;
        padding: 10px;
        padding-right: 10px;
        border-right: none;
    }

    .hero__module-inner {
        border-radius: 8px;
    }

    .hero__module-content {
        padding: 28px 24px 44px;
    }

    .hero__module-buttons {
        margin-top: -20px;
        margin-left: 24px;
    }

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

    .hero__module-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .intro {
        padding: 80px 20px 50px;
        border-radius: 0 0 16px 16px;
    }

    .intro__title,
    .accommodation__title,
    .specification__title,
    .location__title,
    .wages__title {
        font-size: 28px;
        line-height: 38px;
    }

    .workforce__header {
        height: 40px;
        margin-top: -10px;
    }

    .workforce__left {
        padding: 16px 20px;
    }

    .workforce__right {
        margin: 0 16px;
        padding: 28px 24px;
    }

    .workforce__image {
        padding: 20px 16px 40px;
    }

    .workforce__aerial-img {
        border-radius: 14px;
    }

    /* Fix highlight negative margins */
    .highlight {
        margin: 0;
        padding: 2px 4px;
    }

    .specification__title .highlight,
    .location__title .highlight,
    .wages__title .highlight,
    .footer__title .highlight {
        margin: 0;
        padding: 2px 4px;
    }

    .specification__title .highlight::before,
    .location__title .highlight::before,
    .wages__title .highlight::before,
    .footer__title .highlight::before {
        padding: 2px 4px;
    }

    /* Fix footer name negative margin */
    .footer__name {
        margin-left: 0;
        padding: 2px 6px;
    }

    /* Fix workforce row negative margin */
    .workforce__row {
        margin-top: 0;
    }

    /* Fix accommodation tabs - make static on mobile */
    .accommodation {
        padding: 60px 20px 30px;
    }

    .accommodation__tabs-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 32px;
    }

    .accommodation__title {
        margin: 20px auto 0;
    }

    .accommodation__tabs {
        gap: 8px;
        padding: 8px;
        border-radius: 12px;
    }

    .accommodation__tab {
        padding: 12px 24px;
        font-size: 12px;
        border-radius: 6px;
    }

    /* Fix location tabs - make static on mobile */
    .location__tabs-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        margin-top: 32px;
    }

    .location__hero {
        padding-bottom: 40px;
    }

    .location__data {
        padding-top: 30px;
    }

    .plans {
        padding: 40px 16px;
    }

    .accommodation__plan {
        padding: 12px;
        border-radius: 14px;
    }

    .accommodation__plan-img {
        border-radius: 8px;
    }

    .plans__data {
        margin: 40px auto 0;
    }

    .plans__table-title,
    .plans__table-head {
        font-size: 16px;
    }

    .plans__table tbody td {
        font-size: 15px;
        padding: 10px 0;
    }

    .plans__tag {
        font-size: 10px;
        padding: 10px 16px;
    }

    .plans__download {
        font-size: 10px;
        padding: 10px 16px;
        width: 100%;
        text-align: center;
    }

    .specification {
        padding: 1px 20px 60px;
    }

    .specification__title {
        margin: 20px auto 0;
    }

    .specgrid {
        padding: 0 16px 40px;
        gap: 6px;
    }

    .specgrid__image {
        height: 200px;
    }

    .specgrid__img {
        border-radius: 14px;
    }

    .specgrid__items {
        gap: 6px;
    }

    .specgrid__item {
        padding: 14px 14px;
        gap: 10px;
        border-radius: 12px;
    }

    .specgrid__icon {
        width: 32px;
        height: 32px;
    }

    .specgrid__text {
        font-size: 11px;
    }

    .location {
        padding-top: 60px;
    }

    .location__hero {
        margin: 0 12px;
        padding: 40px 20px 60px;
        border-radius: 16px;
    }

    .location__label {
        font-size: 13px;
    }

    .location__title {
        margin: 16px auto 28px;
    }

    .location__text {
        font-size: 15px;
    }

    .location__tab {
        flex: 1;
        padding: 10px 12px;
        font-size: 10px;
        letter-spacing: 0.08em;
        text-align: center;
    }

    .location__data {
        padding: 50px 20px 30px;
    }

    .location__table-title,
    .location__table-head {
        font-size: 16px;
    }

    .location__table tbody td {
        font-size: 15px;
        padding: 10px 0;
    }

    .wages {
        padding: 60px 16px;
    }

    .wages__title {
        margin: 16px auto 40px;
    }

    .wages__grid {
        grid-template-columns: 1fr 1fr;
        max-width: none;
    }

    .wages__item {
        padding: 10px 12px;
        gap: 4px;
        justify-content: flex-start;
    }

    .wages__city {
        font-size: 11px;
    }

    .wages__amount {
        font-size: 11px;
        margin-left: auto;
    }

    .map {
        padding: 0 12px 12px;
    }

    .map__container {
        height: 380px;
        border-radius: 14px;
    }

    .map__labels {
        top: 16px;
        left: 16px;
    }

    .map__label-satnav {
        padding: 10px 14px;
        border-radius: 6px;
    }

    .map__label-line {
        font-size: 11px;
        letter-spacing: 0.08em;
    }

    .map__google-btn {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px;
        font-size: 11px;
        border-radius: 6px;
    }

    .footer {
        padding: 40px 20px 24px;
    }

    .footer__top {
        gap: 32px;
        margin-bottom: 40px;
    }

    .footer__title {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 32px;
    }

    .footer__logos {
        gap: 24px;
    }

    .footer__logo-core {
        height: 32px;
    }

    .footer__logo-trammell {
        height: 22px;
    }

    .footer__agents {
        flex-direction: column;
        gap: 32px;
    }

    .footer__agent-logo {
        height: 24px;
        margin-bottom: 20px;
    }

    .footer__name {
        font-size: 16px;
    }

    .footer__phone,
    .footer__email {
        font-size: 16px;
    }

    .footer__disclaimer {
        font-size: 11px;
    }

    .footer__credit {
        font-size: 12px;
    }
}

/* ---------- 480px - Small phones ---------- */
@media (max-width: 480px) {
    .intro {
        padding: 30px 16px 40px;
    }

    .intro__title,
    .accommodation__title,
    .specification__title {
        font-size: 24px;
        line-height: 34px;
    }

    .location__title,
    .wages__title {
        font-size: 24px;
        line-height: 34px;
    }

    .hero__module-title {
        font-size: 18px;
    }

    .hero__module-subtitle {
        font-size: 14px;
    }

    .hero__module-btn {
        font-size: 11px;
        padding: 10px 20px;
    }

    .workforce__label {
        font-size: 13px;
        margin: 20px 0;
    }

    .workforce__stat-number {
        font-size: 18px;
    }

    .workforce__stat-icon {
        width: 40px;
        height: 40px;
    }

    .workforce__text {
        font-size: 16px;
    }

    .workforce__btn--text {
        padding: 12px 24px;
        font-size: 12px;
    }

    .workforce__btn--arrow {
        padding: 12px 16px;
    }

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

    .specgrid__icon {
        width: 24px;
        height: 24px;
    }

    .specgrid__text {
        font-size: 10px;
    }

    .specgrid__item {
        padding: 10px 10px;
        gap: 8px;
        border-radius: 10px;
    }

    .accommodation__tab {
        padding: 10px 18px;
        font-size: 11px;
    }

    .plans__data {
        overflow-x: auto;
    }

    .plans__table {
        min-width: 340px;
    }

    .plans__table th,
    .plans__table td {
        padding: 8px 0;
    }

    .plans__table-title,
    .plans__table-head {
        font-size: 14px;
    }

    .plans__table tbody td {
        font-size: 13px;
    }

    .location__data {
        overflow-x: auto;
    }

    .location__table {
        min-width: 340px;
    }

    .plans__features {
        gap: 8px;
    }

    .plans__tags {
        flex-direction: column;
        width: 100%;
    }

    .plans__tag {
        width: 100%;
        text-align: center;
    }

    .location__tabs {
        flex-wrap: wrap;
    }

    .location__tab {
        flex: 0 0 calc(50% - 4px);
    }

    .location__table th,
    .location__table td {
        padding: 8px 0;
    }

    .location__table-title,
    .location__table-head {
        font-size: 14px;
    }

    .location__table tbody td {
        font-size: 13px;
    }

    .wages__item {
        padding: 8px 10px;
        border-radius: 8px;
    }

    .wages__city {
        font-size: 12px;
    }

    .wages__amount {
        font-size: 12px;
    }

    .map__container {
        height: 320px;
    }

    .footer__title {
        font-size: 22px;
        line-height: 30px;
    }

    .footer__name {
        font-size: 14px;
    }

    .footer__phone,
    .footer__email {
        font-size: 14px;
    }

    .footer__bottom {
        padding-top: 20px;
    }
}
