/* ======================================================================
   RII HUB TOUR AND TRAVEL
   Public Website Stylesheet
   New Brand Colour Palette
   ====================================================================== */

:root {
    /* --------------------------------------------------------------
       BRAND COLOURS
       -------------------------------------------------------------- */

    --navy: #070f1f;
    --navy-deep: #030812;
    --navy-mid: #111b2d;
    --navy-soft: #202b3e;

    --gold: #f8d239;
    --gold-primary: #f8d239;
    --gold-mid: #e1aa25;
    --gold-deep: #ba832a;
    --gold-soft: #e7d06e;
    --gold-light: #f6ecb5;

    --cream: #f9f9f3;
    --cream-deep: #f6ecb5;
    --cream-soft: #fffdf2;

    --charcoal: #494b51;
    --taupe: #a4998d;

    --black: #070f1f;
    --black-soft: #11151d;

    --white: #ffffff;

    /* --------------------------------------------------------------
       TEXT COLOURS
       -------------------------------------------------------------- */

    --ink: #494b51;
    --ink-dark: #070f1f;
    --ink-muted: #6d6d70;
    --ink-soft: #a4998d;

    /* --------------------------------------------------------------
       UI COLOURS
       -------------------------------------------------------------- */

    --line: rgba(7, 15, 31, 0.12);
    --line-medium: rgba(7, 15, 31, 0.18);
    --line-light: rgba(255, 255, 255, 0.14);

    --shadow:
        0 18px 45px rgba(7, 15, 31, 0.12);

    --shadow-hover:
        0 24px 55px rgba(7, 15, 31, 0.18);

    --shadow-dark:
        0 24px 60px rgba(0, 0, 0, 0.34);

    --radius: 6px;
    --radius-lg: 10px;

    /* --------------------------------------------------------------
       FONTS
       -------------------------------------------------------------- */

    --font-head: 'Raleway', sans-serif;
    --font-nav: 'Montserrat', sans-serif;
    --font-body: 'Inter', 'Montserrat', sans-serif;
}


/* ======================================================================
   RESET / GLOBAL
   ====================================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button,
input,
select,
textarea {
    font-family: inherit;
}


/* ======================================================================
   HEADER / NAVIGATION
   ====================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 100;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 1rem 2.5rem;

    background: rgba(249, 249, 243, 0.97);
    color: var(--navy);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(7, 15, 31, 0.08);

    box-shadow:
        0 4px 20px rgba(7, 15, 31, 0.06);
}


/* ----------------------------------------------------------------------
   BRAND
   ---------------------------------------------------------------------- */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-mark {
    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    border: 1px solid var(--gold-mid);
    border-radius: 50%;

    color: var(--navy);

    font-size: 18px;

    background: var(--gold);
}

.brand strong {
    display: block;

    font-family: var(--font-head);
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 0.02em;

    color: var(--navy);
}

.brand small {
    display: block;

    margin-top: 2px;

    color: var(--gold-deep);

    font-family: var(--font-nav);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* Logo version */

.brand-logo {
    width: 140px;
    height: 50px;
    object-fit: contain;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy);
}

.brand-text small {
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-deep);
}


/* ----------------------------------------------------------------------
   MAIN NAV
   ---------------------------------------------------------------------- */

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav a {
    position: relative;

    padding: 7px 0;

    font-family: var(--font-nav);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: var(--navy);

    border-bottom: 2px solid transparent;

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.main-nav a:not(.nav-cta):hover,
.main-nav a:not(.nav-cta).active {
    color: var(--gold-deep);
    border-color: var(--gold);
}


/* ======================================================================
   BUTTONS
   ====================================================================== */

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    border-radius: var(--radius);

    padding: 13px 26px;

    font-family: var(--font-nav);
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    border: 1px solid transparent;

    cursor: pointer;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease,
        color 0.22s ease,
        border-color 0.22s ease;
}

.nav-cta,
.btn-primary {
    background: var(--gold);
    color: var(--navy);

    box-shadow:
        0 12px 26px rgba(225, 170, 37, 0.25);
}

.nav-cta:hover,
.btn-primary:hover {
    background: var(--gold-mid);
    color: var(--navy);

    transform: translateY(-2px);

    box-shadow:
        0 16px 32px rgba(186, 131, 42, 0.28);
}

.btn-light {
    background: transparent;

    border-color: rgba(255, 255, 255, 0.55);

    color: var(--white);
}

.btn-light:hover {
    background: var(--white);
    border-color: var(--white);

    color: var(--navy);
}

.btn-outline {
    background: transparent;

    border-color: var(--gold);

    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);

    color: var(--navy);
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);

    border-color: var(--gold);
}

.btn-gold:hover {
    background: var(--gold-mid);
    border-color: var(--gold-mid);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-soft);
}

.btn-whatsapp {
    background: #25d366;
    color: #071f10;
}

.btn-whatsapp:hover {
    background: #20ba59;
}


/* ----------------------------------------------------------------------
   MOBILE NAV TOGGLE
   ---------------------------------------------------------------------- */

.nav-toggle {
    display: none;

    background: var(--navy);
    border: 1px solid var(--navy);

    color: var(--gold);

    border-radius: var(--radius);

    padding: 10px 13px;

    font-size: 17px;

    cursor: pointer;
}


/* ======================================================================
   HERO
   ====================================================================== */

.hero {
    min-height: 100vh;

    position: relative;

    display: grid;
    align-items: center;

    padding:
        150px clamp(18px, 7vw, 96px)
        90px;

    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7, 15, 31, 0.50),
            rgba(7, 15, 31, 0.72) 55%,
            rgba(7, 15, 31, 0.94)
        );
}

.hero-content {
    position: relative;
    z-index: 3;

    max-width: 900px;

    text-align: center;

    margin: 0 auto;
}


/* ----------------------------------------------------------------------
   EYEBROW
   ---------------------------------------------------------------------- */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 20px;

    padding: 9px 18px;

    color: var(--gold);

    font-family: var(--font-nav);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 12px;

    border: 1px solid var(--gold);

    border-radius: 2px;
}

.eyebrow i {
    color: var(--gold);
}

.hero .eyebrow {
    background: rgba(7, 15, 31, 0.48);
}


/* ----------------------------------------------------------------------
   HERO TEXT
   ---------------------------------------------------------------------- */

.hero h1,
.page-hero h1 {
    font-family: var(--font-head);
    font-weight: 800;

    font-size: clamp(46px, 8vw, 92px);
    line-height: 1.04;
    letter-spacing: -0.01em;

    margin: 0 0 22px;

    color: var(--white);
}

.hero h1 span {
    display: block;

    color: var(--gold);
}

.hero p,
.page-hero p {
    color: var(--gold-light);

    font-size: 17px;
    line-height: 1.8;

    max-width: 720px;

    margin: 0 auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;

    margin: 34px 0;
}

.hero-stats {
    display: none;
}


/* ----------------------------------------------------------------------
   HERO SLIDER
   ---------------------------------------------------------------------- */

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;

    opacity: 0;

    transition: opacity 1.2s ease;

    z-index: 0;
}

.hero-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;

    object-fit: cover;

    background-size: cover;
    background-position: center;

    position: absolute;
    inset: 0;
}

.hero-slider::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            180deg,
            rgba(7, 15, 31, 0.48),
            rgba(7, 15, 31, 0.72) 55%,
            rgba(7, 15, 31, 0.94)
        );
}

.scroll-pill {
    position: absolute;
    left: 50%;
    bottom: 26px;

    z-index: 3;

    transform: translateX(-50%);

    color: var(--gold-light);

    font-family: var(--font-nav);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    opacity: 0.85;
}


/* ======================================================================
   STATISTICS BAR
   ====================================================================== */

.stats-bar {
    position: relative;
    z-index: 5;

    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));

    text-align: center;

    background: var(--navy);
}

.stats-bar div {
    padding: 34px 14px;

    border-right: 1px solid rgba(248, 210, 57, 0.14);
}

.stats-bar div:last-child {
    border-right: none;
}

.stats-bar strong {
    display: block;

    margin-bottom: 6px;

    font-family: var(--font-head);
    font-size: 34px;
    font-weight: 800;

    color: var(--gold);
}

.stats-bar span {
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--gold-light);
}


/* ======================================================================
   GENERIC SECTIONS
   ====================================================================== */

.section {
    padding:
        100px
        clamp(18px, 6vw, 84px);
}

.section.light {
    background: var(--cream);
    color: var(--ink);
}

.section-head {
    text-align: center;

    max-width: 820px;

    margin: 0 auto 48px;
}

.section-head .eyebrow,
.split-section > div > .eyebrow {
    background: none;
    border: none;

    padding: 0;

    color: var(--gold-deep);

    display: inline-flex;
}

.section-head h2,
.split-section h2,
.cta-section h2 {
    font-family: var(--font-head);
    font-weight: 800;

    font-size: clamp(32px, 4.4vw, 52px);
    letter-spacing: -0.01em;
    line-height: 1.12;

    margin: 10px 0 16px;

    color: var(--navy);
}

.section-head p,
.split-section p {
    color: var(--ink-muted);

    font-size: 17px;
    line-height: 1.8;

    max-width: 720px;

    margin: 0 auto;
}


/* ======================================================================
   DARK SECTION
   ====================================================================== */

.dark-section {
    background:
        linear-gradient(
            145deg,
            var(--navy-deep),
            var(--navy)
        );
}

.dark-section .section-head h2 {
    color: var(--gold);
}

.dark-section .section-head p {
    color: var(--gold-light);
}

.dark-section .eyebrow {
    color: var(--gold) !important;

    border: none;

    padding: 0;

    background: none;
}


/* ======================================================================
   DESTINATION / IMAGE CARDS
   ====================================================================== */

.card-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.image-card,
.plain-card {
    background: var(--white);

    border: 1px solid var(--line);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.image-card:hover,
.plain-card:hover {
    transform: translateY(-5px);

    border-color: rgba(225, 170, 37, 0.35);

    box-shadow: var(--shadow-hover);
}

.image-card {
    position: relative;
}

.image-card img {
    height: 230px;
    width: 100%;

    object-fit: cover;
}

.image-card-body {
    padding: 24px;
}

.image-card-body span,
.plain-card > span {
    display: inline-block;

    position: relative;
    top: -48px;

    margin-bottom: -24px;

    padding: 5px 11px;

    border-radius: 2px;

    background: rgba(7, 15, 31, 0.92);

    color: var(--gold);

    font-family: var(--font-nav);
    font-weight: 800;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.plain-card {
    padding: 26px;
}

.plain-card > span {
    position: static;

    top: 0;

    margin-bottom: 6px;

    padding: 0;

    background: none;

    color: var(--gold-deep);
}

.image-card h3,
.plain-card h3,
.feature-card h3 {
    font-family: var(--font-head);
    font-weight: 800;

    margin: 8px 0 10px;

    font-size: 22px;

    color: var(--navy);
}

.image-card p,
.plain-card p,
.contact-card p,
.feature-card p {
    color: var(--ink-muted);

    line-height: 1.7;

    font-size: 15px;
}

.image-card a {
    color: var(--gold-deep);

    font-weight: 800;

    font-family: var(--font-nav);

    font-size: 12.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.image-card a:hover {
    color: var(--navy);
}


/* ======================================================================
   SERVICE CARDS
   ====================================================================== */

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 22px;
}

.service-card {
    background: var(--navy-mid);

    border: 1px solid rgba(248, 210, 57, 0.12);

    border-radius: var(--radius-lg);

    padding: 30px 26px;

    box-shadow: var(--shadow-dark);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    border-color: rgba(248, 210, 57, 0.45);
}

.service-card span {
    display: grid;
    place-items: center;

    width: 54px;
    height: 54px;

    border-radius: 50%;

    background: rgba(248, 210, 57, 0.10);

    border: 1px solid var(--gold);

    color: var(--gold);

    font-size: 22px;

    margin-bottom: 16px;
}

.service-card h3 {
    font-family: var(--font-head);

    color: var(--white);

    margin: 0 0 8px;

    font-size: 21px;
}

.service-card p {
    color: var(--gold-light);

    line-height: 1.7;

    font-size: 14.5px;
}


/* ======================================================================
   IMAGE SERVICE CARDS
   ====================================================================== */

.service-card--image {
    position: relative;

    min-height: 230px;

    border-radius: var(--radius-lg);

    overflow: hidden;

    background-image: var(--service-bg);
    background-size: cover;
    background-position: center;

    box-shadow: var(--shadow-dark);

    border: 1px solid rgba(248, 210, 57, 0.12);

    display: flex;
    align-items: flex-end;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.service-card--image:hover {
    transform: translateY(-5px);

    border-color: rgba(248, 210, 57, 0.50);
}

.service-card--image::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(7, 15, 31, 0.02) 35%,
            rgba(7, 15, 31, 0.94) 100%
        );
}

.service-card-overlay {
    position: relative;
    z-index: 1;

    padding: 20px;

    width: 100%;
}

.service-card-overlay h3 {
    font-family: var(--font-head);
    font-weight: 800;

    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    color: var(--white);

    margin: 0 0 8px;
}

.service-card-overlay p {
    color: var(--gold-light);

    font-size: 13.5px;
    line-height: 1.6;

    margin: 0;
}


/* ======================================================================
   SPLIT / ABOUT SECTION
   ====================================================================== */

.split-section {
    padding:
        100px
        clamp(18px, 6vw, 84px);

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 56px;

    align-items: center;

    background: var(--white);
}

.split-section .eyebrow {
    color: var(--gold-deep);

    border: none;

    padding: 0;

    background: none;

    font-size: 12px;
}


/* ----------------------------------------------------------------------
   ABOUT IMAGE PANEL
   ---------------------------------------------------------------------- */

.about-copy {
    position: relative;

    border-radius: var(--radius-lg);

    overflow: hidden;

    min-height: 340px;

    background-image: var(--about-bg);
    background-size: cover;
    background-position: center;

    box-shadow: var(--shadow);

    display: flex;
    align-items: flex-end;
}

.about-copy::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(7, 15, 31, 0.80),
            rgba(186, 131, 42, 0.42)
        );
}

.about-copy-inner {
    position: relative;
    z-index: 1;

    padding: 34px;

    color: var(--white);
}

.about-copy-inner .eyebrow {
    color: var(--gold) !important;
}

.about-copy-inner h2 {
    color: var(--white);
}

.about-copy-inner h3 {
    margin: 0 0 14px;

    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;

    color: var(--gold);
}

.about-copy-inner p {
    margin: 0;

    color: var(--gold-light);

    font-size: 14.5px;
    line-height: 1.75;
}


/* ----------------------------------------------------------------------
   TRUST BOX
   ---------------------------------------------------------------------- */

.trust-box .eyebrow {
    display: inline-flex;

    color: var(--gold-deep);

    border: none;
    background: none;

    padding: 0;

    font-size: 12px;
}

.trust-box h2 {
    margin: 10px 0 26px;

    font-family: var(--font-head);
    font-weight: 800;

    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.15;

    color: var(--navy);
}

.trust-box h3 {
    margin: 0 0 22px;

    font-family: var(--font-head);
    font-weight: 800;

    font-size: 28px;

    color: var(--navy);
}

.trust-box ul {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.trust-box li {
    display: flex;
    gap: 14px;
    align-items: flex-start;

    color: var(--navy);

    font-family: var(--font-nav);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.trust-box li::before {
    content: "\f00c";

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    width: 30px;
    height: 30px;

    background: var(--gold);

    color: var(--navy);

    border-radius: 3px;

    font-size: 13px;
}

.trust-box li .li-desc {
    display: block;

    margin-top: 6px;

    font-family: var(--font-body);
    font-weight: 400;

    text-transform: none;
    letter-spacing: 0;

    color: var(--ink-muted);

    font-size: 14.5px;
}

.split-image {
    position: relative;

    border-radius: var(--radius-lg);

    overflow: hidden;

    min-height: 280px;

    background:
        linear-gradient(
            135deg,
            var(--navy),
            var(--gold-deep)
        );

    padding: 34px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    box-shadow: var(--shadow);
}

.split-image h4 {
    margin: 0 0 12px;

    font-family: var(--font-head);

    color: var(--gold);

    font-size: 24px;
}

.split-image p {
    color: var(--gold-light);

    font-size: 14.5px;
    line-height: 1.7;
}


/* ======================================================================
   LICENSE BAND
   ====================================================================== */

.license-band {
    padding: 0;

    background:
        linear-gradient(
            120deg,
            var(--navy),
            var(--navy-soft)
        );

    color: var(--white);

    border-top: 1px solid rgba(248, 210, 57, 0.16);
    border-bottom: 1px solid rgba(248, 210, 57, 0.16);
}

.license-band .license-inner {
    max-width: 1200px;

    margin: 0 auto;

    padding:
        34px
        clamp(18px, 6vw, 84px);

    display: flex;
    align-items: center;

    gap: 20px;

    flex-wrap: wrap;
}

.license-badge {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    padding: 8px 16px;

    border: 1px solid var(--gold);

    border-radius: 2px;

    background: rgba(248, 210, 57, 0.09);

    color: var(--gold);

    font-family: var(--font-nav);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    white-space: nowrap;
}

.license-band p {
    margin: 0;

    color: var(--gold-light);

    font-size: 15px;
    line-height: 1.7;
}

.license-band strong {
    color: var(--white);
}


/* ======================================================================
   SERVICES LIST / FEATURE CARDS
   ====================================================================== */

.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 26px;
}

.feature-card {
    background: var(--white);

    border: 1px solid var(--line);

    border-radius: var(--radius-lg);

    overflow: hidden;

    box-shadow: var(--shadow);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-hover);
}

.feature-card-header {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 18px 22px;

    color: var(--navy);
}

.feature-card-header i {
    font-size: 18px;
}

.feature-card-header h3 {
    margin: 0;

    font-family: var(--font-nav);
    font-weight: 800;

    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    color: inherit;
}


/* Controlled palette rotation */

.feature-card:nth-child(3n + 1) .feature-card-header {
    background: var(--navy);

    color: var(--gold);
}

.feature-card:nth-child(3n + 2) .feature-card-header {
    background: var(--gold);

    color: var(--navy);
}

.feature-card:nth-child(3n) .feature-card-header {
    background: var(--gold-deep);

    color: var(--white);
}

.mini-list {
    margin: 0;

    padding: 20px 22px 22px;

    color: var(--ink-muted);

    font-size: 14px;
    line-height: 1.5;
}

.mini-list li {
    padding: 9px 0;

    border-bottom: 1px dashed var(--line);

    display: flex;

    gap: 10px;
}

.mini-list li:last-child {
    border-bottom: none;
}

.mini-list li::before {
    content: "\f111";

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    font-size: 5px;

    color: var(--gold-deep);

    margin-top: 7px;
}


/* ======================================================================
   TRANSPORT SECTION
   ====================================================================== */

.transport-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;

    gap: 26px;

    margin-top: 8px;
}

.transport-banner {
    max-width: none;

    border-radius: var(--radius-lg);

    padding: 34px;

    background:
        linear-gradient(
            160deg,
            var(--navy),
            var(--navy-soft)
        );

    box-shadow: var(--shadow-dark);

    color: var(--white);

    border: 1px solid rgba(248, 210, 57, 0.14);
}

.transport-banner h4 {
    margin: 0 0 12px;

    font-family: var(--font-head);

    color: var(--gold);

    font-size: 26px;
}

.transport-banner p {
    margin: 0 0 20px;

    color: var(--gold-light);

    font-size: 14.5px;
}

.transport-perks {
    margin-bottom: 22px;

    padding: 16px 18px;

    background: rgba(248, 210, 57, 0.07);

    border: 1px solid rgba(248, 210, 57, 0.16);

    border-radius: var(--radius);
}

.transport-perks span {
    display: block;

    margin-bottom: 10px;

    color: var(--gold);

    font-family: var(--font-nav);
    font-weight: 800;
    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.transport-perks li {
    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 14px;

    color: var(--cream);
    
    padding: 4px 0;
}

.transport-perks li i {
    width: 16px;

    color: var(--gold);
}

.transport-list {
    display: flex;
    flex-direction: column;

    gap: 16px;
}

.transport-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;

    padding: 20px 22px;

    background: var(--white);

    border-left: 4px solid var(--gold);

    border-radius:
        0
        var(--radius)
        var(--radius)
        0;

    box-shadow: var(--shadow);
}

.transport-item .ic {
    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: var(--gold-light);

    color: var(--navy);

    font-size: 17px;

    flex-shrink: 0;
}

.transport-item h3 {
    margin: 0 0 6px;

    font-family: var(--font-nav);
    font-weight: 800;

    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    color: var(--navy);
}

.transport-item p {
    margin: 0;

    color: var(--ink-muted);

    font-size: 14px;
    line-height: 1.6;
}


/* ======================================================================
   GALLERY
   ====================================================================== */

.gallery-section {
    background: var(--navy);

    padding:
        90px
        clamp(18px, 6vw, 84px);
}

.gallery-section .section-head {
    text-align: left;

    margin: 0 0 40px;

    max-width: none;
}

.gallery-section .eyebrow {
    color: var(--gold) !important;

    border: none;

    background: none;

    padding: 0;
}

.gallery-section h2 {
    color: var(--gold);

    text-align: left;

    margin: 8px 0 6px;
}

.gallery-section .section-head p {
    color: var(--gold-light);

    font-family: var(--font-nav);

    letter-spacing: 0.1em;
    text-transform: uppercase;

    font-size: 12px;

    text-align: left;
}

.gallery-grid {
    display: grid;

    grid-template-columns:
        1.4fr
        1fr
        1fr;

    grid-template-rows:
        1fr
        1fr;

    gap: 12px;
}

.gallery-grid a:first-child {
    grid-row: 1 / 3;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: 4px;

    border: 1px solid rgba(248, 210, 57, 0.10);
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    min-height: 170px;

    transition:
        transform 0.45s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item span {
    position: absolute;

    left: 14px;
    bottom: 12px;

    z-index: 2;

    color: var(--white);

    font-family: var(--font-nav);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.7);
}

.gallery-item::before {
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(7, 15, 31, 0.86)
        );

    pointer-events: none;
}


/* ======================================================================
   FORMS
   ====================================================================== */

.form-section {
    padding:
        64px
        clamp(18px, 6vw, 84px)
        104px;

    background:
        linear-gradient(
            145deg,
            var(--navy-deep),
            var(--navy)
        );
}

.form-section .section-head .eyebrow {
    color: var(--gold) !important;

    border: none;

    background: none;

    padding: 0;
}

.form-section .section-head h2 {
    color: var(--white);
}

.form-section .section-head p {
    color: var(--gold-light);
}

.public-form {
    padding: 38px;

    max-width: 1080px;

    margin: 0 auto;

    background: var(--white);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.public-form label {
    display: block;

    margin-bottom: 20px;

    color: var(--navy);

    font-family: var(--font-nav);
    font-weight: 800;

    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.public-form input,
.public-form select,
.public-form textarea {
    width: 100%;

    margin-top: 9px;

    border: 1px solid var(--line-medium);

    background: var(--cream);

    color: var(--navy);

    border-radius: 4px;

    padding: 14px 15px;

    font: inherit;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.public-form input::placeholder,
.public-form textarea::placeholder {
    color: var(--taupe);
}

.public-form input:focus,
.public-form select:focus,
.public-form textarea:focus {
    border-color: var(--gold-mid);

    background: var(--white);

    box-shadow:
        0 0 0 3px rgba(248, 210, 57, 0.18);
}

.public-form textarea {
    resize: vertical;
}

.public-form .btn {
    width: 100%;

    justify-content: center;

    background: var(--gold);

    color: var(--navy);
}

.public-form .btn:hover {
    background: var(--gold-mid);
}

.form-response {
    margin-top: 16px;

    font-weight: 700;

    font-family: var(--font-nav);

    font-size: 13px;
}

.form-response.success {
    color: #1f7a3d;
}

.form-response.error {
    color: #b52e42;
}


/* ======================================================================
   CONTACT
   ====================================================================== */

.contact-layout {
    padding:
        100px
        clamp(18px, 6vw, 84px);

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 56px;

    align-items: start;

    background: var(--cream);
}

.contact-layout h2 {
    color: var(--navy);
}

.contact-layout .eyebrow {
    color: var(--gold-deep);

    border: none;

    background: none;

    padding: 0;
}

.contact-cards {
    display: flex;
    flex-direction: column;

    gap: 0;

    margin-top: 30px;
}

.contact-card {
    display: flex;
    gap: 16px;
    align-items: center;

    padding: 18px 0;

    border-bottom: 1px solid var(--line);

    background: none;

    box-shadow: none;

    border-radius: 0;
}

.contact-card > span {
    display: grid;
    place-items: center;

    width: 44px;
    height: 44px;

    border-radius: 4px;

    color: var(--navy);

    font-size: 17px;

    flex-shrink: 0;
}

.contact-card > div {
    flex: 1;
}

.contact-card:nth-child(1) > span {
    background: var(--gold);
}

.contact-card:nth-child(2) > span {
    background: #25d366;
    color: #071f10;
}

.contact-card:nth-child(3) > span {
    background: var(--navy);
    color: var(--gold);
}

.contact-card:nth-child(4) > span {
    background: var(--gold-deep);
    color: var(--white);
}

.contact-card h3 {
    margin: 2px 0 4px;

    font-family: var(--font-nav);
    font-weight: 800;

    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: var(--ink-soft);
}

.contact-card a,
.contact-card p {
    margin: 0;

    color: var(--navy);

    font-weight: 700;

    font-size: 15px;
}

.contact-card a:hover {
    color: var(--gold-deep);
}

.contact-layout .public-form {
    margin: 0;
}

.contact-layout .public-form h3 {
    margin: 0 0 22px;

    font-family: var(--font-head);

    color: var(--navy);

    font-size: 24px;
}


/* ======================================================================
   ATTESTATION / DOCUMENT SERVICES
   ====================================================================== */

.attestation-section {
    background:
        linear-gradient(
            135deg,
            var(--navy-deep),
            var(--navy) 70%
        );

    padding:
        100px
        clamp(18px, 6vw, 84px);

    color: var(--white);
}

.attestation-grid {
    display: grid;

    grid-template-columns:
        1.15fr
        0.85fr;

    gap: 56px;

    max-width: 1200px;

    margin: 0 auto;

    align-items: start;
}

.attestation-copy .eyebrow {
    color: var(--gold);

    border: none;

    background: none;

    padding: 0;

    font-size: 12px;
}

.attestation-copy h2 {
    margin: 14px 0 18px;

    font-family: var(--font-head);
    font-weight: 800;

    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;

    color: var(--white);
}

.attestation-copy p {
    color: var(--gold-light);

    font-size: 15px;
    line-height: 1.8;

    max-width: 480px;

    margin: 0 0 28px;
}

.attestation-badges {
    display: flex;

    gap: 14px;

    margin-bottom: 28px;

    flex-wrap: wrap;
}

.country-badge {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    padding: 11px 18px;

    border:
        1px solid
        rgba(248, 210, 57, 0.28);

    border-radius: var(--radius);

    font-family: var(--font-nav);

    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;

    color: var(--white);

    background:
        rgba(248, 210, 57, 0.05);
}

.flag-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: var(--gold);

    color: var(--navy);

    font-size: 10px;
    font-weight: 800;
}

.attestation-note {
    margin-top: 16px;

    font-size: 13px;
    font-style: italic;

    color: var(--gold-soft);
}

.attestation-panel {
    background:
        rgba(255, 255, 255, 0.045);

    border:
        1px solid
        rgba(248, 210, 57, 0.18);

    border-radius: var(--radius-lg);

    padding: 34px;

    box-shadow: var(--shadow-dark);
}

.panel-eyebrow {
    display: block;

    margin-bottom: 18px;

    color: var(--gold);

    font-family: var(--font-nav);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.attestation-checklist {
    margin: 0;
    padding: 0;
}

.attestation-checklist li {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 16px 0;

    border-bottom:
        1px solid
        rgba(248, 210, 57, 0.10);

    font-size: 14.5px;

    color: var(--white);
}

.attestation-checklist li:last-child {
    border-bottom: none;
}

.check-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: var(--gold);

    color: var(--navy);

    font-size: 10px;

    flex-shrink: 0;
}

.attestation-divider {
    height: 1px;

    background:
        rgba(248, 210, 57, 0.14);

    margin: 26px 0;
}

.attestation-contacts {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.attestation-contacts a {
    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--gold);

    font-family: var(--font-nav);

    font-size: 14px;
    font-weight: 700;

    transition: color 0.2s ease;
}

.attestation-contacts a i {
    width: 16px;

    text-align: center;
}

.attestation-contacts a:last-child {
    color: var(--gold-light);
}

.attestation-contacts a:hover {
    color: var(--white);

    text-decoration: none;
}


/* ======================================================================
   PAGE HERO / SUBPAGES
   ====================================================================== */

.page-hero {
    padding:
        170px
        clamp(18px, 6vw, 84px)
        80px;

    background:
        linear-gradient(
            140deg,
            var(--navy-deep),
            var(--navy)
        );

    position: relative;

    overflow: hidden;

    text-align: center;
}

.page-hero::after {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background:
        rgba(248, 210, 57, 0.07);

    pointer-events: none;
}

.page-hero .eyebrow {
    position: relative;
    z-index: 2;
}

.page-hero h1,
.page-hero p {
    position: relative;
    z-index: 2;
}

.small-hero h1 {
    font-size:
        clamp(
            40px,
            5.5vw,
            64px
        );
}


/* ======================================================================
   FOOTER
   ====================================================================== */

.site-footer {
    padding:
        70px
        clamp(18px, 6vw, 84px)
        26px;

    background: var(--navy-deep);

    border-top:
        3px solid
        var(--gold);
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.6fr
        1fr
        1fr;

    gap: 40px;
}

.footer-brand-block {
    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 16px;
}

.footer-brand-block .brand-mark {
    width: 40px;
    height: 40px;
}

.footer-brand {
    font-family: var(--font-head);
    font-weight: 800;

    font-size: 19px;

    color: var(--gold);
}

.footer-sub {
    display: block;

    margin-top: 2px;

    font-family: var(--font-nav);

    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--gold-soft);
}

.footer-grid p {
    color: var(--gold-light);

    line-height: 1.8;

    font-size: 14.5px;

    margin: 0;
}

.footer-grid h4 {
    margin: 0 0 16px;

    font-family: var(--font-nav);
    font-weight: 800;

    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: var(--gold);
}

.footer-grid a {
    display: block;

    color: #d6d2c8;

    line-height: 2;

    font-size: 14.5px;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}

.footer-grid a:hover {
    color: var(--gold);

    padding-left: 3px;
}

.footer-bottom {
    border-top:
        1px solid
        rgba(248, 210, 57, 0.14);

    margin-top: 40px;

    padding-top: 22px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    flex-wrap: wrap;

    gap: 14px;

    color: var(--taupe);

    font-size: 13px;

    font-family: var(--font-nav);
}

.footer-badge {
    border: 1px solid var(--gold);

    color: var(--gold);

    font-weight: 800;

    font-size: 10.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    padding: 8px 14px;

    border-radius: 2px;
}


/* ======================================================================
   WHATSAPP WIDGET
   ====================================================================== */

.whatsapp-widget {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 90;
}

.whatsapp-float {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    border: 0;

    border-radius: 999px;

    background: #25d366;

    color: var(--white);

    padding:
        13px
        20px
        13px
        14px;

    box-shadow:
        0 16px 34px
        rgba(0, 0, 0, 0.30);

    cursor: pointer;

    font-family: var(--font-nav);

    position: relative;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);

    box-shadow:
        0 20px 40px
        rgba(0, 0, 0, 0.34);
}

.whatsapp-float .fa-whatsapp {
    font-size: 24px;
}

.whatsapp-float .wa-text {
    display: flex;
    flex-direction: column;

    text-align: left;

    line-height: 1.2;
}

.whatsapp-float .wa-text small {
    font-size: 10px;

    font-weight: 600;

    opacity: 0.9;
}

.whatsapp-float .wa-text strong {
    font-size: 13px;

    font-weight: 800;
}

.whatsapp-float .wa-badge {
    position: absolute;

    top: -4px;
    right: -2px;

    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: var(--gold);

    color: var(--navy);

    font-size: 10.5px;

    display: grid;
    place-items: center;

    font-weight: 800;
}

.whatsapp-card {
    position: absolute;

    right: 0;
    bottom: 72px;

    width:
        min(
            320px,
            calc(100vw - 44px)
        );

    padding: 22px;

    border-radius: var(--radius-lg);

    background: var(--white);

    color: var(--ink);

    border:
        1px solid
        rgba(7, 15, 31, 0.08);

    box-shadow: var(--shadow-dark);

    transform: translateY(12px);

    opacity: 0;

    pointer-events: none;

    transition: 0.2s;
}

.whatsapp-widget.open .whatsapp-card {
    opacity: 1;

    transform: translateY(0);

    pointer-events: auto;
}

.whatsapp-card strong {
    font-family: var(--font-head);

    color: var(--navy);

    font-size: 17px;
}

.whatsapp-card p {
    color: var(--ink-muted);

    font-size: 14px;

    margin: 8px 0 16px;
}

.widget-close {
    position: absolute;

    right: 12px;
    top: 8px;

    border: 0;

    background: transparent;

    font-size: 18px;

    cursor: pointer;

    color: var(--ink-muted);
}

.widget-close:hover {
    color: var(--navy);
}


/* ======================================================================
   COMMON HOVER / INTERACTIVE EFFECTS
   ====================================================================== */

.image-card,
.plain-card,
.feature-card,
.service-card,
.service-card--image,
.transport-item,
.contact-card {
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.transport-item:hover {
    transform: translateX(4px);

    border-left-color: var(--gold-deep);
}

::selection {
    background: var(--gold);

    color: var(--navy);
}


/* ======================================================================
   SCROLLBAR
   ====================================================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-mid);

    border-radius: 999px;

    border: 2px solid var(--cream);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-deep);
}


/* ======================================================================
   FOCUS ACCESSIBILITY
   ====================================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline:
        3px solid
        rgba(248, 210, 57, 0.55);

    outline-offset: 3px;
}


/* ======================================================================
   RESPONSIVE - TABLET
   ====================================================================== */

@media (max-width: 1100px) {

    .service-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }

}


/* ======================================================================
   RESPONSIVE - TABLET / MOBILE
   ====================================================================== */

@media (max-width: 980px) {

    .site-header {
        padding: 14px 18px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;

        position: absolute;

        left: 18px;
        right: 18px;
        top: 74px;

        flex-direction: column;

        align-items: flex-start;

        gap: 6px;

        padding: 18px;

        background: var(--cream);

        border:
            1px solid
            rgba(7, 15, 31, 0.10);

        border-top:
            3px solid
            var(--gold);

        border-radius: var(--radius);

        box-shadow:
            0 20px 45px
            rgba(7, 15, 31, 0.16);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        width: 100%;

        padding: 10px 8px;

        border-bottom:
            1px solid
            rgba(7, 15, 31, 0.07);
    }

    .main-nav a:last-child {
        border-bottom: none;
    }

    .main-nav .nav-cta {
        width: 100%;

        margin-top: 6px;
    }

    .stats-bar,
    .card-grid,
    .values-grid,
    .split-section,
    .contact-layout,
    .footer-grid,
    .services-list,
    .transport-layout,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .stats-bar div {
        border-right: none;

        border-bottom:
            1px solid
            rgba(248, 210, 57, 0.12);
    }

    .stats-bar div:last-child {
        border-bottom: none;
    }

    .gallery-grid {
        grid-template-columns:
            1fr
            1fr;
    }

    .gallery-grid a:first-child {
        grid-row: auto;

        grid-column: 1 / 3;
    }

    .brand small {
        display: none;
    }

    .hero {
        padding-top: 120px;
    }

    .attestation-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .attestation-section {
        padding:
            70px
            clamp(18px, 6vw, 84px);
    }

}


/* ======================================================================
   RESPONSIVE - SMALL MOBILE
   ====================================================================== */

@media (max-width: 600px) {

    .site-header {
        padding: 12px 15px;
    }

    .brand-logo {
        width: 118px;
        height: 44px;
    }

    .brand-text strong {
        font-size: 1.05rem;
    }

    .hero {
        min-height: 92vh;

        padding:
            110px
            18px
            74px;
    }

    .hero h1 {
        font-size:
            clamp(
                38px,
                12vw,
                58px
            );
    }

    .hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;

        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section,
    .split-section,
    .contact-layout,
    .gallery-section {
        padding:
            70px
            18px;
    }

    .section-head {
        margin-bottom: 34px;
    }

    .section-head h2,
    .split-section h2,
    .cta-section h2 {
        font-size:
            clamp(
                28px,
                9vw,
                38px
            );
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid a:first-child {
        grid-column: auto;
    }

    .gallery-item img {
        min-height: 220px;
    }

    .public-form {
        padding: 24px 18px;
    }

    .attestation-panel {
        padding: 24px 20px;
    }

    .country-badge {
        width: 100%;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

    .whatsapp-widget {
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float {
        padding: 13px;
    }

    .whatsapp-float .wa-text {
        display: none;
    }

    .whatsapp-card {
        right: 0;

        width:
            min(
                300px,
                calc(100vw - 30px)
            );
    }

}


/* ======================================================================
   VERY SMALL DEVICES
   ====================================================================== */

@media (max-width: 420px) {

    .brand-text {
        display: none;
    }

    .hero h1 {
        font-size: 38px;
    }

    .eyebrow {
        font-size: 10.5px;

        letter-spacing: 0.12em;
    }

    .stats-bar strong {
        font-size: 30px;
    }

    .transport-item {
        padding: 18px 16px;
    }

    .transport-item .ic {
        width: 38px;
        height: 38px;
    }

}


/* ======================================================================
   REDUCED MOTION ACCESSIBILITY
   ====================================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}

