/* =====================================================
   UPCLAY — PREMIUM TRAVEL FINTECH WEBSITE
   STYLE.CSS
===================================================== */


/* =====================================================
   01. RESET & GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #f5f1e8;
    color: #17202b;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:root {
    --navy: #101820;
    --navy-light: #18232e;
    --navy-soft: #26333f;

    --cream: #f5f1e8;
    --cream-light: #fbf9f4;
    --cream-dark: #e8e1d4;

    --gold: #c6a15b;
    --gold-light: #dfc487;
    --gold-dark: #9d7a3b;

    --text: #17202b;
    --text-light: #65707c;

    --white: #ffffff;
    --border: rgba(23, 32, 43, 0.12);

    --container: 1240px;
}


/* =====================================================
   02. CONTAINER
===================================================== */

.section-container,
.nav-container,
.hero-container,
.hero-trust-bar {
    width: min(var(--container), calc(100% - 80px));
    margin: 0 auto;
}


/* =====================================================
   03. HEADER
===================================================== */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

    background: rgba(12, 18, 24, 0.25);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-container {
    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* Logo */

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;

    color: var(--white);

    font-family: "Manrope", sans-serif;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo-symbol {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-size: 17px;
    font-weight: 800;
}

.logo-text {
    font-size: 20px;
}


/* Navigation */

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    position: relative;

    color: rgba(255, 255, 255, 0.82);

    font-size: 13px;
    font-weight: 500;

    transition: 0.3s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: 0.3s ease;
}

.main-nav a:hover {
    color: var(--white);
}

.main-nav a:hover::after {
    width: 100%;
}


/* Header CTA */

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    padding: 13px 19px;

    border: 1px solid rgba(198, 161, 91, 0.65);

    color: var(--white);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.7px;
    text-transform: uppercase;

    transition: 0.3s ease;
}

.header-cta span {
    color: var(--gold);
    font-size: 17px;
}

.header-cta:hover {
    background: var(--gold);
    color: var(--navy);
}

.header-cta:hover span {
    color: var(--navy);
}


/* =====================================================
   04. HERO
===================================================== */

.hero {
    position: relative;

    min-height: 900px;

    display: flex;
    align-items: center;

    background: var(--navy);

    color: var(--white);

    overflow: hidden;
}


/* Background */

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: saturate(0.65);
}


/* Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 14, 20, 0.96) 0%,
            rgba(8, 14, 20, 0.86) 42%,
            rgba(8, 14, 20, 0.46) 100%
        );
}


/* Subtle gold glow */

.hero::after {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -250px;
    top: 160px;

    border-radius: 50%;

    background: rgba(198, 161, 91, 0.08);

    filter: blur(90px);
}


/* Hero container */

.hero-container {
    position: relative;
    z-index: 5;

    padding-top: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 80px;
}


/* Hero content */

.hero-content {
    width: min(750px, 100%);
}


/* Pre headline */

.hero-tag {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-bottom: 30px;

    color: var(--gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}

.gold-square {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    background: var(--gold);
}


/* Main heading */

.hero h1 {
    max-width: 800px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(46px, 5.3vw, 76px);

    line-height: 1.05;

    letter-spacing: -3px;

    font-weight: 700;
}

.hero h1 span {
    display: block;

    color: var(--gold-light);
}


/* Description */

.hero-description {
    max-width: 690px;

    margin-top: 32px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 16px;
    line-height: 1.8;
}


/* Buttons */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 40px;
}

.btn {
    min-height: 54px;

    padding: 0 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.8px;
    text-transform: uppercase;

    transition: all 0.3s ease;
}

.btn span {
    font-size: 18px;
}


/* Gold button */

.btn-primary {
    background: var(--gold);

    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-light);

    transform: translateY(-2px);
}


/* Outline */

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.4);

    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--gold);

    color: var(--gold-light);

    transform: translateY(-2px);
}


/* Trust text */

.hero-trust {
    max-width: 680px;

    margin-top: 28px;

    color: rgba(255, 255, 255, 0.52);

    font-size: 12px;
    line-height: 1.7;
}


/* =====================================================
   05. HERO SIDE CARD
===================================================== */

.hero-side-card {
    width: 330px;

    flex-shrink: 0;

    padding: 26px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    background: rgba(13, 22, 29, 0.7);

    backdrop-filter: blur(16px);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.3);
}

.side-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-bottom: 22px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.side-card-top span {
    color: rgba(255, 255, 255, 0.5);

    font-size: 9px;
    letter-spacing: 1.7px;
}

.side-card-top strong {
    color: #9dd3a8;

    font-size: 10px;
    letter-spacing: 1px;
}


/* Route */

.side-route {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 35px 0;
}

.side-route div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.side-route small {
    color: rgba(255, 255, 255, 0.4);

    font-size: 9px;
    letter-spacing: 1.5px;
}

.side-route strong {
    color: var(--white);

    font-family: "Manrope", sans-serif;

    font-size: 25px;
    letter-spacing: 1px;
}

.route-line {
    flex: 1;

    height: 1px;

    position: relative;

    background: rgba(198, 161, 91, 0.45);
}

.route-line::after {
    content: "✦";

    position: absolute;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    padding: 4px;

    background: #14202a;

    color: var(--gold);

    font-size: 10px;
}


/* Tags */

.side-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}

.side-tags span {
    padding: 7px 9px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    color: rgba(255, 255, 255, 0.58);

    font-size: 8px;
    letter-spacing: 1px;
}


/* =====================================================
   06. HERO TRUST BAR
===================================================== */

.hero-trust-bar {
    position: absolute;

    z-index: 10;

    left: 50%;
    bottom: 0;

    transform: translateX(-50%);

    width: min(var(--container), calc(100% - 80px));

    min-height: 105px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr) 1.25fr;

    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-item {
    display: flex;
    align-items: center;

    gap: 14px;

    padding: 20px 18px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(198, 161, 91, 0.5);

    color: var(--gold);

    font-size: 12px;
}

.trust-item strong {
    display: block;

    color: rgba(255, 255, 255, 0.9);

    font-size: 9px;
    letter-spacing: 1.1px;
}

.trust-item span {
    display: block;

    margin-top: 3px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 9px;
}

.trust-message {
    position: relative;

    display: flex;
    align-items: center;

    padding-left: 30px;

    color: var(--gold-light);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
    line-height: 1.7;
}

.trust-message > span {
    position: absolute;

    right: 20px;
    top: 50%;

    width: 35px;
    height: 1px;

    background: var(--gold);
}


/* =====================================================
   07. PLATFORM INTRO
===================================================== */

.platform-intro {
    padding: 130px 0 100px;

    background: var(--cream);
}

.section-eyebrow {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 24px;

    color: var(--gold-dark);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.section-eyebrow > span {
    width: 25px;
    height: 1px;

    background: var(--gold);
}

.intro-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: start;
}

.intro-grid h2 {
    max-width: 570px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -2.8px;

    font-weight: 700;
}

.intro-description {
    padding-top: 10px;
}

.intro-description p {
    max-width: 570px;

    margin-bottom: 22px;

    color: var(--text-light);

    font-size: 16px;
    line-height: 1.85;
}


/* =====================================================
   08. FEATURES
===================================================== */

.features {
    padding: 30px 0 130px;

    background: var(--cream);
}

.feature-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


/* Card */

.feature-card {
    position: relative;

    background: var(--cream-light);

    border: 1px solid var(--border);

    overflow: hidden;

    transition: 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 30px 70px rgba(23, 32, 43, 0.12);
}


/* Image */

.feature-image {
    position: relative;

    height: 260px;

    overflow: hidden;

    background: var(--navy);
}

.feature-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 40%,
            rgba(10, 17, 22, 0.75)
        );
}

.feature-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.06);
}


/* Number */

.feature-number {
    position: absolute;

    z-index: 3;

    top: 20px;
    right: 20px;

    color: var(--white);

    font-family: "Manrope", sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
}


/* Feature content */

.feature-content {
    padding: 35px 32px 36px;
}

.feature-label {
    color: var(--gold-dark);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.feature-content h3 {
    min-height: 72px;

    margin-top: 15px;

    font-family: "Manrope", sans-serif;

    font-size: 25px;

    line-height: 1.18;

    letter-spacing: -0.8px;
}

.feature-content p {
    margin-top: 20px;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.75;
}


/* Learn more */

.learn-more {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-top: 28px;

    color: var(--text);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.learn-more span {
    color: var(--gold-dark);

    font-size: 17px;

    transition: 0.3s ease;
}

.learn-more:hover span {
    transform: translateX(5px);
}


/* =====================================================
   09. WHY UPCLAY
===================================================== */

.why-section {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 720px;

    background: var(--navy);

    color: var(--white);
}


/* Image */

.why-image {
    position: relative;

    min-height: 650px;

    overflow: hidden;
}

.why-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 16, 21, 0.15),
            rgba(10, 16, 21, 0.75)
        );
}

.why-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: saturate(0.7);
}

.image-caption {
    position: absolute;

    z-index: 3;

    left: 55px;
    bottom: 55px;

    color: var(--white);

    font-family: "Manrope", sans-serif;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
    line-height: 1.7;
}


/* Content */

.why-content {
    padding: 100px 9%;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-eyebrow.light {
    color: var(--gold-light);
}

.why-content h2 {
    max-width: 650px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(42px, 4.5vw, 63px);

    line-height: 1.05;

    letter-spacing: -2.5px;
}

.why-content > p {
    max-width: 570px;

    margin-top: 28px;

    color: rgba(255, 255, 255, 0.6);

    font-size: 15px;
    line-height: 1.8;
}


/* Why grid */

.why-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px 35px;

    margin-top: 45px;
}

.why-item {
    display: flex;

    gap: 15px;

    padding-bottom: 20px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.why-icon {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(198, 161, 91, 0.5);

    color: var(--gold);

    font-size: 12px;
}

.why-item strong {
    display: block;

    color: var(--white);

    font-size: 9px;

    letter-spacing: 1.2px;
}

.why-item span {
    display: block;

    margin-top: 5px;

    color: rgba(255, 255, 255, 0.43);

    font-size: 11px;

    line-height: 1.5;
}


/* Light button */

.light-button {
    align-self: flex-start;

    margin-top: 40px;
}


/* =====================================================
   10. HOW IT WORKS
===================================================== */

.how-it-works {
    padding: 130px 0;

    background: var(--cream-light);
}

.how-it-works h2 {
    max-width: 850px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(42px, 5vw, 67px);

    line-height: 1.05;

    letter-spacing: -2.7px;
}

.how-it-works h2 span {
    color: var(--gold-dark);
}

.section-intro-text {
    max-width: 650px;

    margin-top: 25px;

    color: var(--text-light);

    font-size: 15px;
}


/* Process */

.process-grid {
    display: grid;

    grid-template-columns:
        1fr auto
        1fr auto
        1fr auto
        1fr;

    align-items: center;

    margin-top: 75px;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-step {
    min-height: 260px;

    padding: 35px 25px 35px 0;
}

.process-step > span {
    color: var(--gold-dark);

    font-family: "Manrope", sans-serif;

    font-size: 11px;
    font-weight: 800;
}

.process-step h3 {
    margin-top: 35px;

    font-family: "Manrope", sans-serif;

    font-size: 22px;
    line-height: 1.2;
}

.process-step p {
    margin-top: 15px;

    color: var(--text-light);

    font-size: 12px;
    line-height: 1.7;
}

.process-arrow {
    padding: 0 18px;

    color: var(--gold-dark);

    font-size: 22px;
}


/* =====================================================
   11. TRAVEL BANNER
===================================================== */

.travel-banner {
    position: relative;

    min-height: 650px;

    display: flex;
    align-items: center;

    overflow: hidden;

    color: var(--white);
}

.travel-banner-image {
    position: absolute;
    inset: 0;
}

.travel-banner-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.travel-banner-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 15, 20, 0.94),
            rgba(8, 15, 20, 0.55)
        );
}

.travel-banner-content {
    position: relative;
    z-index: 2;

    width: min(var(--container), calc(100% - 80px));

    margin: 0 auto;
}

.travel-banner-content h2 {
    max-width: 800px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(44px, 5.2vw, 75px);

    line-height: 1.02;

    letter-spacing: -3px;
}

.travel-banner-content p {
    max-width: 600px;

    margin-top: 28px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 15px;
    line-height: 1.8;
}


/* =====================================================
   12. SUPPLIER SECTION
===================================================== */

.supplier-section {
    display: grid;

    grid-template-columns: 1fr 1fr;

    min-height: 700px;

    background: var(--cream);
}

.supplier-content {
    padding: 110px 9%;
}

.supplier-content h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(44px, 5vw, 70px);

    line-height: 1.03;

    letter-spacing: -3px;
}

.supplier-content h2 span {
    color: var(--gold-dark);
}

.supplier-content > p {
    max-width: 570px;

    margin-top: 30px;

    color: var(--text-light);

    font-size: 15px;
    line-height: 1.8;
}


/* Supplier points */

.supplier-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 0;

    max-width: 570px;

    margin-top: 40px;
}

.supplier-points div {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 16px 0;

    border-bottom: 1px solid var(--border);
}

.supplier-points strong {
    color: var(--gold-dark);

    font-size: 10px;
}

.supplier-points span {
    color: var(--text);

    font-size: 12px;
}

.btn-dark {
    margin-top: 40px;

    background: var(--navy);

    color: var(--white);
}

.btn-dark:hover {
    background: var(--gold);

    color: var(--navy);
}


/* Supplier visual */

.supplier-visual {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 650px;

    background:
        linear-gradient(
            135deg,
            #17232d,
            #0d151c
        );

    overflow: hidden;
}

.supplier-visual::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(198, 161, 91, 0.18);

    border-radius: 50%;
}

.supplier-visual::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border: 1px solid rgba(198, 161, 91, 0.13);

    border-radius: 50%;
}


/* Dashboard */

.dashboard-card {
    position: relative;
    z-index: 5;

    width: min(500px, 80%);

    padding: 30px;

    background: #f7f4ed;

    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.35);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid #ddd7ca;

    color: #68717a;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.3px;
}

.online {
    color: #4d9b62;
}

.dashboard-title {
    margin-top: 25px;

    color: var(--navy);

    font-family: "Manrope", sans-serif;

    font-size: 25px;
    font-weight: 700;
}

.dashboard-route {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 15px;

    padding: 15px;

    background: #eeeadf;

    color: var(--navy);

    font-size: 11px;
}

.dashboard-route strong {
    color: #65806b;

    font-size: 9px;

    letter-spacing: 0.8px;
}

.dashboard-footer {
    margin-top: 25px;

    color: #8a8d8e;

    font-size: 8px;
    letter-spacing: 1px;
}

.dashboard-footer span {
    color: var(--gold-dark);
}


/* =====================================================
   13. CONTACT
===================================================== */

.contact-section {
    position: relative;

    padding: 110px 0;

    background: var(--gold);

    overflow: hidden;
}

.contact-map-pattern {
    position: absolute;

    inset: 0;

    opacity: 0.12;

    background-image:
        linear-gradient(
            30deg,
            transparent 48%,
            #ffffff 49%,
            transparent 50%
        ),
        linear-gradient(
            -30deg,
            transparent 48%,
            #ffffff 49%,
            transparent 50%
        );

    background-size: 80px 80px;
}

.contact-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;

    gap: 60px;
}

.contact-section .section-eyebrow {
    color: var(--navy);
}

.contact-section .section-eyebrow > span {
    background: var(--navy);
}

.contact-section h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(48px, 6vw, 75px);

    line-height: 1;

    letter-spacing: -3px;

    color: var(--navy);
}

.contact-description p {
    max-width: 400px;

    color: rgba(16, 24, 32, 0.7);

    font-size: 15px;
    line-height: 1.8;
}

.contact-buttons {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 12px;
}

.dark-outline {
    border-color: rgba(16, 24, 32, 0.45);

    color: var(--navy);
}

.dark-outline:hover {
    background: var(--navy);

    border-color: var(--navy);

    color: var(--white);
}


/* =====================================================
   14. FOOTER
===================================================== */

.footer {
    padding: 75px 0 25px;

    background: #0c141b;

    color: var(--white);
}

.footer-container {
    width: min(var(--container), calc(100% - 80px));

    margin: 0 auto;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 70px;
}

.footer-logo {
    display: inline-flex;
}

.footer-brand p {
    max-width: 300px;

    margin-top: 22px;

    color: rgba(255, 255, 255, 0.4);

    font-size: 12px;

    line-height: 1.7;
}


/* Footer columns */

.footer-column {
    display: flex;
    flex-direction: column;

    gap: 12px;
}

.footer-column h4 {
    margin-bottom: 12px;

    color: var(--gold-light);

    font-size: 9px;

    letter-spacing: 1.7px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.48);

    font-size: 11px;

    transition: 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold-light);
}


/* Bottom */

.footer-bottom {
    grid-column: 1 / -1;

    display: flex;
    justify-content: space-between;

    gap: 20px;

    margin-top: 45px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: rgba(255, 255, 255, 0.3);

    font-size: 9px;
}


/* =====================================================
   15. RESPONSIVE — TABLET
===================================================== */

@media (max-width: 1050px) {

    .main-nav {
        gap: 18px;
    }

    .main-nav a {
        font-size: 11px;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-side-card {
        width: 290px;
    }

    .hero-trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-message {
        display: none;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        display: grid;
        grid-template-columns: 40% 60%;
    }

    .feature-image {
        height: 100%;
        min-height: 320px;
    }

    .intro-grid {
        gap: 50px;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-arrow {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-buttons {
        flex-direction: row;
    }

    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-column:last-of-type {
        display: none;
    }
}


/* =====================================================
   16. RESPONSIVE — MOBILE
===================================================== */

@media (max-width: 760px) {

    .section-container,
    .nav-container,
    .hero-container,
    .travel-banner-content,
    .footer-container {
        width: min(100% - 40px, var(--container));
    }


    /* Header */

    .site-header {
        position: absolute;
    }

    .nav-container {
        min-height: 76px;
    }

    .main-nav,
    .header-cta {
        display: none;
    }


    /* Hero */

    .hero {
        min-height: 950px;

        align-items: flex-start;
    }

    .hero-container {
        padding-top: 160px;

        flex-direction: column;
        align-items: flex-start;

        gap: 45px;
    }

    .hero-tag {
        font-size: 9px;

        line-height: 1.5;
    }

    .hero h1 {
        font-size: 46px;

        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-side-card {
        width: 100%;

        max-width: 420px;
    }


    /* Hero trust */

    .hero-trust-bar {
        width: calc(100% - 40px);

        min-height: auto;

        grid-template-columns: 1fr 1fr;
    }

    .trust-item {
        min-height: 80px;

        padding: 12px;
    }

    .trust-item:nth-child(2) {
        border-right: none;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .trust-item strong {
        font-size: 8px;
    }

    .trust-item span {
        font-size: 8px;
    }


    /* Intro */

    .platform-intro {
        padding: 90px 0 70px;
    }

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .intro-grid h2 {
        font-size: 43px;
    }


    /* Features */

    .features {
        padding: 0 0 90px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        display: block;
    }

    .feature-image {
        height: 230px;
        min-height: 0;
    }

    .feature-content h3 {
        min-height: 0;
    }


    /* Why */

    .why-section {
        grid-template-columns: 1fr;
    }

    .why-image {
        min-height: 450px;
    }

    .why-content {
        padding: 80px 25px;
    }

    .why-content h2 {
        font-size: 44px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }


    /* How it works */

    .how-it-works {
        padding: 90px 0;
    }

    .how-it-works h2 {
        font-size: 44px;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        min-height: auto;

        padding: 30px 0;

        border-bottom: 1px solid var(--border);
    }

    .process-step h3 {
        margin-top: 20px;
    }


    /* Travel banner */

    .travel-banner {
        min-height: 550px;
    }

    .travel-banner-content h2 {
        font-size: 46px;
    }


    /* Supplier */

    .supplier-section {
        grid-template-columns: 1fr;
    }

    .supplier-content {
        padding: 80px 25px;
    }

    .supplier-content h2 {
        font-size: 46px;
    }

    .supplier-points {
        grid-template-columns: 1fr;
    }

    .supplier-visual {
        min-height: 500px;
    }

    .dashboard-card {
        width: 88%;

        padding: 20px;
    }


    /* Contact */

    .contact-section {
        padding: 85px 0;
    }

    .contact-section h2 {
        font-size: 50px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-buttons .btn {
        width: 100%;
    }


    /* Footer */

    .footer {
        padding-top: 60px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 45px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-of-type {
        display: flex;
    }

    .footer-bottom {
        grid-column: 1 / -1;

        flex-direction: column;

        gap: 8px;

        margin-top: 20px;
    }

}


/* =====================================================
   17. SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .hero h1 {
        font-size: 39px;
    }

    .hero {
        min-height: 1020px;
    }

    .hero-container {
        padding-top: 140px;
    }

    .hero-trust-bar {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .trust-item:first-child {
        border-top: none;
    }

    .feature-content {
        padding: 28px 24px;
    }

    .why-content h2,
    .supplier-content h2,
    .travel-banner-content h2,
    .how-it-works h2 {
        font-size: 39px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-column:last-of-type {
        display: flex;
    }

}


/* =====================================================
   18. SIMPLE ANIMATION
===================================================== */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.hero-content {
    animation: fadeUp 0.9s ease both;
}

.hero-side-card {
    animation: fadeUp 0.9s 0.15s ease both;
}


/* =====================================================
   19. SELECTION
===================================================== */

::selection {
    background: var(--gold);
    color: var(--navy);
}

/* =====================================================
   PREMIUM SCROLL ANIMATIONS
===================================================== */

/* Scroll reveal */

.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* Different animation for cards */

.feature-card.reveal {
    transform: translateY(55px);
}

.feature-card.revealed {
    transform: translateY(0);
}


/* Why section items */

.why-item.reveal {
    transform: translateX(-30px);
}

.why-item.revealed {
    transform: translateX(0);
}


/* Process steps */

.process-step.reveal {
    transform: translateY(30px);
}

.process-step.revealed {
    transform: translateY(0);
}


/* =====================================================
   CARD HOVER EFFECT
===================================================== */

.feature-card {
    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}


/* =====================================================
   IMAGE ZOOM ON HOVER
===================================================== */

.feature-image img,
.why-image img,
.travel-banner-image img {
    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover .feature-image img {
    transform: scale(1.07);
}


/* =====================================================
   BUTTON HOVER
===================================================== */

.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -110%;

    width: 80%;
    height: 100%;

    background: rgba(255, 255, 255, 0.18);

    transform: skewX(-25deg);

    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 130%;
}


/* =====================================================
   GOLD LINE ANIMATION
===================================================== */

.section-eyebrow > span {
    transform-origin: left;

    animation: goldLine 1.2s ease forwards;
}

@keyframes goldLine {

    from {
        transform: scaleX(0);
        opacity: 0;
    }

    to {
        transform: scaleX(1);
        opacity: 1;
    }

}


/* =====================================================
   HERO FLOATING CARD
===================================================== */

.hero-side-card {
    animation:
        heroCardFloat 5s ease-in-out infinite;
}

@keyframes heroCardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

}


/* =====================================================
   DASHBOARD GLOW
===================================================== */

.dashboard-card {
    animation:
        dashboardFloat 4.5s ease-in-out infinite;
}

@keyframes dashboardFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =====================================================
   GOLD ACCENT PULSE
===================================================== */

.gold-square {
    animation:
        goldPulse 2.5s ease-in-out infinite;
}

@keyframes goldPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.25);
    }

}


/* =====================================================
   PAGE LOAD
===================================================== */

body {
    opacity: 0;
}

body.page-loaded {
    opacity: 1;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 760px) {

    .hero-side-card,
    .dashboard-card {
        animation: none;
    }

    .reveal {
        transform: translateY(25px);
    }

}


/* =====================================================
   WHY UPCLAY — PREMIUM SECTION
===================================================== */

.why-section {
    min-height: 760px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    background: #0b141d;
    color: #ffffff;
    overflow: hidden;
}

.why-content {
    padding: 110px 70px 100px 7%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-eyebrow.light {
    color: #c49a4a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-eyebrow.light span {
    width: 35px;
    height: 1px;
    background: #c49a4a;
    display: inline-block;
}

.why-content h2 {
    max-width: 650px;
    margin: 0 0 28px;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -2.5px;
}

.why-content h2 span {
    display: block;
    color: #c49a4a;
}

.why-content > p {
    max-width: 620px;
    margin: 0 0 55px;
    color: #aeb7c1;
    font-size: 17px;
    line-height: 1.8;
}


/* WHY GRID */

.why-grid {
    max-width: 700px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 45px;
    row-gap: 0;
    margin-bottom: 45px;
}

.why-item {
    min-height: 105px;
    padding: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.why-item:nth-child(3),
.why-item:nth-child(4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.why-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border: 1px solid rgba(196, 154, 74, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c49a4a;
    font-size: 14px;
}

.why-item strong {
    display: block;
    color: #ffffff;
    font-size: 11px;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
}

.why-item span {
    display: block;
    max-width: 240px;
    color: #87929e;
    font-size: 13px;
    line-height: 1.6;
}


/* WHY BUTTON */

.light-button {
    width: fit-content;
    min-width: 190px;
    height: 55px;
    padding: 0 25px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    transition: all 0.35s ease;
}

.light-button span {
    font-size: 21px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.light-button:hover {
    border-color: #c49a4a;
    background: #c49a4a;
    color: #0b141d;
}

.light-button:hover span {
    transform: translateX(6px);
}


/* WHY IMAGE */

.why-image {
    position: relative;
    min-height: 760px;
    overflow: hidden;
}

.why-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(11, 20, 29, 0.25),
            transparent 45%
        ),
        linear-gradient(
            0deg,
            rgba(11, 20, 29, 0.65),
            transparent 50%
        );
    pointer-events: none;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s ease;
}

.why-image:hover img {
    transform: scale(1.045);
}

.image-caption {
    position: absolute;
    left: 45px;
    bottom: 40px;
    z-index: 2;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 1.8px;
}


/* =====================================================
   HOW IT WORKS
===================================================== */

.how-it-works {
    background: #f7f5ef;
    color: #17212d;
    padding: 120px 0 0;
    overflow: hidden;
}

.section-container {
    width: min(1240px, 90%);
    margin: 0 auto;
}

.how-it-works .section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a77b2e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 28px;
}

.how-it-works .section-eyebrow span {
    width: 35px;
    height: 1px;
    background: #a77b2e;
}


.how-heading-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 100px;
    align-items: end;
    margin-bottom: 85px;
}

.how-heading-grid h2 {
    margin: 0;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.03;
    letter-spacing: -2.5px;
    font-weight: 500;
}

.how-heading-grid h2 span {
    display: block;
    color: #a77b2e;
}

.how-heading-grid p {
    margin: 0;
    color: #697582;
    font-size: 16px;
    line-height: 1.8;
}


/* PROCESS */

.process-grid {
    display: grid;
    grid-template-columns:
        1fr 45px
        1fr 45px
        1fr 45px
        1fr;

    gap: 0;
    border-top: 1px solid #d9d5cb;
    border-bottom: 1px solid #d9d5cb;
    padding: 42px 0 70px;
}

.process-step {
    position: relative;
    padding-right: 25px;
}

.process-number {
    color: #a77b2e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.process-number span {
    display: block;
    width: 25px;
    height: 1px;
    background: #a77b2e;
    margin-top: 10px;
}


/* PROCESS IMAGE */

.process-image {
    width: 100%;
    height: 155px;
    overflow: hidden;
    margin-bottom: 27px;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.8);
    transition: transform 0.7s ease;
}

.process-step:hover .process-image img {
    transform: scale(1.06);
}

.process-step h3 {
    margin: 0 0 15px;
    color: #17212d;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.process-step p {
    margin: 0;
    color: #737e89;
    font-size: 13px;
    line-height: 1.75;
    max-width: 235px;
}


/* PROCESS ARROW */

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 205px;
    color: #a77b2e;
    font-size: 24px;
    font-weight: 300;
}


/* =====================================================
   WORKFLOW TRUST STRIP
===================================================== */

.workflow-trust {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid #d9d5cb;
}

.workflow-trust-item {
    min-height: 125px;
    padding: 30px 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-right: 1px solid #d9d5cb;
    color: #596572;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1.6;
}

.workflow-trust-item:last-child {
    border-right: 0;
}

.workflow-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border: 1px solid #b08a43;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a77b2e;
    font-size: 14px;
}


/* =====================================================
   PREMIUM FOOTER
===================================================== */

.footer {
    position: relative;
    background: #08111a;
    color: #ffffff;
    padding: 100px 0 0;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    right: -280px;
    top: -220px;
    border: 1px solid rgba(196, 154, 74, 0.12);
    border-radius: 50%;
}

.footer::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    right: -200px;
    top: -140px;
    border: 1px solid rgba(196, 154, 74, 0.08);
    border-radius: 50%;
}


.footer-container {
    width: min(1240px, 90%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 0.8fr 1.2fr;
    gap: 65px;
}


/* BRAND */

.footer-brand {
    padding-right: 25px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
}

.footer-logo .logo-symbol {
    width: 38px;
    height: 38px;
    border: 1px solid #c49a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c49a4a;
    font-weight: 700;
}

.footer-logo .logo-text {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.footer-brand > p {
    margin: 28px 0 35px;
    max-width: 280px;
    color: #778493;
    font-size: 14px;
    line-height: 1.8;
}


/* SOCIAL */

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 35px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid #26323d;
    color: #8995a1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 11px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: #c49a4a;
    color: #c49a4a;
    transform: translateY(-3px);
}

.footer-location {
    color: #c49a4a;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* FOOTER COLUMNS */

.footer-column h4,
.footer-contact h5 {
    margin: 5px 0 28px;
    color: #c49a4a;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.footer-column a {
    width: fit-content;
    color: #84909c;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}


/* FOOTER CONTACT */

.footer-contact {
    position: relative;
}

.footer-map {
    height: 105px;
    margin-bottom: 25px;
    position: relative;
    opacity: 0.45;
    background:
        radial-gradient(
            ellipse at center,
            transparent 25%,
            rgba(196, 154, 74, 0.06) 26%,
            transparent 27%
        );
}

.footer-map::before {
    content: "";
    position: absolute;
    inset: 15px 0;
    background:
        linear-gradient(
            145deg,
            transparent 42%,
            rgba(196, 154, 74, 0.3) 43%,
            transparent 44%
        ),
        linear-gradient(
            35deg,
            transparent 48%,
            rgba(196, 154, 74, 0.2) 49%,
            transparent 50%
        );
    border-radius: 50%;
}


.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
    color: #8a96a1;
    font-size: 12px;
    line-height: 1.6;
}

.footer-contact-item > span {
    color: #c49a4a;
    font-size: 16px;
}

.footer-contact-item small {
    display: block;
    margin-bottom: 4px;
    color: #c49a4a;
    font-size: 12px;
    letter-spacing: 1.5px;
}


/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom {
    grid-column: 1 / -1;
    margin-top: 65px;
    min-height: 70px;
    border-top: 1px solid #202b35;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #596673;
    font-size: 10px;
}

.footer-bottom span {
    white-space: nowrap;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .why-section {
        grid-template-columns: 1fr;
    }

    .why-content {
        padding: 90px 7%;
    }

    .why-image {
        min-height: 500px;
    }

    .how-heading-grid {
        gap: 50px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 55px 35px;
    }

    .process-arrow {
        display: none;
    }

    .workflow-trust {
        grid-template-columns: repeat(2, 1fr);
    }

    .workflow-trust-item:nth-child(2) {
        border-right: 0;
    }

    .workflow-trust-item:nth-child(3),
    .workflow-trust-item:nth-child(4) {
        border-top: 1px solid #d9d5cb;
    }

    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 55px 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        grid-column: 1 / -1;
    }

}


@media (max-width: 760px) {

    /* WHY */

    .why-content {
        padding: 75px 25px;
    }

    .why-content h2 {
        font-size: 45px;
        letter-spacing: -1.5px;
    }

    .why-content > p {
        font-size: 15px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .why-item:nth-child(2) {
        border-top: 0;
    }

    .why-item:nth-child(3) {
        border-bottom: 0;
    }

    .why-image {
        min-height: 420px;
    }


    /* HOW IT WORKS */

    .how-it-works {
        padding-top: 80px;
    }

    .section-container {
        width: calc(100% - 50px);
    }

    .how-heading-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 55px;
    }

    .how-heading-grid h2 {
        font-size: 43px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-bottom: 55px;
    }

    .process-step {
        padding-right: 0;
    }

    .process-image {
        height: 190px;
    }

    .process-step p {
        max-width: 100%;
    }

    .workflow-trust {
        grid-template-columns: 1fr;
    }

    .workflow-trust-item {
        border-right: 0;
        border-bottom: 1px solid #d9d5cb;
    }

    .workflow-trust-item:last-child {
        border-bottom: 0;
    }


    /* FOOTER */

    .footer {
        padding-top: 75px;
    }

    .footer-container {
        width: calc(100% - 50px);
        grid-template-columns: 1fr 1fr;
        gap: 50px 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 25px 0;
        gap: 12px;
    }

    .footer-bottom span {
        white-space: normal;
    }

}

.footer-contact {
    position: relative;
    align-self: start;
    padding-top: 0;
}

.footer-contact h5 {
    margin-top: 5px;
    margin-bottom: 28px;
}

.footer-map {
    height: 105px;
    margin-bottom: 25px;
    position: absolute;
    top: -100px;
    right: -40px;
    width: 300px;
    opacity: 0.45;
}

.footer-contact {
    position: relative;
    align-self: start;
}

.footer-contact h5 {
    margin-top: 5px;
}

.footer-contact {
    position: relative;
    align-self: start;
}

.footer-contact h5 {
    margin-top: 5px;
    margin-bottom: 28px;
}


/* =====================================================
   JAVASCRIPT SCROLL REVEAL
===================================================== */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}


/* Process images */

.process-image img {
    transition: transform 0.7s ease;
}


/* Header after scrolling */

.site-header.scrolled {
    background: rgba(8, 17, 26, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* =====================================================
   CONTACT PAGE
===================================================== */

/* -----------------------------------------------------
   CONTACT HERO
----------------------------------------------------- */

.contact-hero {
    min-height: 520px;
    background:
        linear-gradient(
            90deg,
            rgba(7, 16, 25, 0.96) 0%,
            rgba(7, 16, 25, 0.88) 48%,
            rgba(7, 16, 25, 0.65) 100%
        ),
        url("images/contact-hero.jpg") center / cover no-repeat;

    display: flex;
    align-items: center;

    position: relative;
    overflow: hidden;
}

.contact-hero::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -180px;
    top: -180px;

    border: 1px solid rgba(196, 154, 74, 0.16);

    border-radius: 50%;
}

.contact-hero-content {
    width: min(1240px, 90%);
    margin: 0 auto;

    padding: 90px 0 80px;

    position: relative;
    z-index: 2;
}

.contact-hero-content h1 {
    max-width: 850px;

    margin: 0 0 30px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 82px);

    line-height: 1.02;

    font-weight: 500;

    letter-spacing: -3px;
}

.contact-hero-content h1 span {
    display: block;

    color: #c49a4a;
}

.contact-hero-content > p {
    max-width: 680px;

    margin: 0;

    color: #aeb8c2;

    font-size: 17px;

    line-height: 1.8;
}


/* -----------------------------------------------------
   CONTACT MAIN SECTION
----------------------------------------------------- */

.contact-section {
    background: #f7f5ef;

    padding: 120px 0;
}

.contact-container {
    width: min(1240px, 90%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    gap: 110px;

    align-items: start;
}


/* -----------------------------------------------------
   CONTACT INFORMATION
----------------------------------------------------- */

.contact-information {
    padding-top: 10px;
}

.contact-information .section-eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 28px;

    color: #a77b2e;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;
}

.contact-information .section-eyebrow span {
    width: 35px;

    height: 1px;

    background: #a77b2e;

    display: inline-block;
}

.contact-information h2 {
    margin: 0 0 25px;

    color: #17212d;

    font-size: clamp(45px, 5vw, 68px);

    line-height: 1.03;

    font-weight: 500;

    letter-spacing: -2.5px;
}

.contact-information h2 span {
    display: block;

    color: #a77b2e;
}

.contact-information > p {
    max-width: 480px;

    margin: 0 0 55px;

    color: #697582;

    font-size: 16px;

    line-height: 1.8;
}


/* -----------------------------------------------------
   CONTACT DETAILS
----------------------------------------------------- */

.contact-detail {
    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 25px 0;

    border-top: 1px solid #d9d5cb;
}

.contact-detail:last-of-type {
    border-bottom: 1px solid #d9d5cb;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;

    border: 1px solid #b08a43;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #a77b2e;

    font-size: 15px;
}

.contact-detail small {
    display: block;

    margin-bottom: 7px;

    color: #a77b2e;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.8px;
}

.contact-detail a {
    color: #17212d;

    text-decoration: none;

    font-size: 15px;

    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: #a77b2e;
}

.contact-detail p {
    margin: 0;

    color: #66727e;

    font-size: 13px;

    line-height: 1.75;
}


/* -----------------------------------------------------
   SUPPLIER NOTE
----------------------------------------------------- */

.contact-note {
    margin-top: 45px;

    padding: 25px 28px;

    border-left: 2px solid #b08a43;

    background: #eeece5;
}

.contact-note strong {
    display: block;

    margin-bottom: 10px;

    color: #17212d;

    font-size: 10px;

    letter-spacing: 1.5px;
}

.contact-note p {
    margin: 0;

    color: #6e7984;

    font-size: 13px;

    line-height: 1.7;
}


/* -----------------------------------------------------
   CONTACT FORM WRAPPER
----------------------------------------------------- */

.contact-form-wrapper {
    position: relative;
}

.contact-form-wrapper::before {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -45px;
    top: -45px;

    border-top: 1px solid #c49a4a;
    border-right: 1px solid #c49a4a;

    opacity: 0.6;
}

.contact-form {
    background: #0b141d;

    padding: 55px;

    position: relative;

    box-shadow:
        0 25px 70px rgba(7, 16, 25, 0.12);
}

.form-heading {
    margin-bottom: 42px;
}

.form-heading > span {
    display: block;

    margin-bottom: 12px;

    color: #c49a4a;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}

.form-heading h3 {
    margin: 0;

    color: #ffffff;

    font-size: 31px;

    font-weight: 500;

    letter-spacing: -0.8px;
}


/* -----------------------------------------------------
   FORM ROW
----------------------------------------------------- */

.form-row {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}


/* -----------------------------------------------------
   FORM GROUP
----------------------------------------------------- */

.form-group {
    margin-bottom: 27px;
}

.form-group label {
    display: block;

    margin-bottom: 10px;

    color: #c49a4a;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid #2b3742;

    background: #101c27;

    color: #ffffff;

    padding: 15px 16px;

    outline: none;

    font-family: inherit;

    font-size: 13px;

    transition:
        border-color 0.3s ease,
        background 0.3s ease;
}

.form-group input,
.form-group select {
    height: 52px;
}

.form-group textarea {
    min-height: 145px;

    resize: vertical;

    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #687582;
}

.form-group select {
    color: #9ba6b0;

    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #c49a4a;

    background: #13212d;
}


/* -----------------------------------------------------
   SUBMIT BUTTON
----------------------------------------------------- */

.contact-submit {
    width: 100%;

    height: 58px;

    margin-top: 5px;

    padding: 0 25px;

    border: 1px solid #c49a4a;

    background: #c49a4a;

    color: #0b141d;

    display: flex;

    align-items: center;

    justify-content: space-between;

    font-family: inherit;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.2px;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.contact-submit span {
    font-size: 22px;

    font-weight: 300;

    transition: transform 0.3s ease;
}

.contact-submit:hover {
    background: transparent;

    color: #c49a4a;

    transform: translateY(-2px);
}

.contact-submit:hover span {
    transform: translateX(7px);
}


/* -----------------------------------------------------
   CONTACT PAGE RESPONSIVE
----------------------------------------------------- */

@media (max-width: 1050px) {

    .contact-container {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .contact-information {
        max-width: 750px;
    }

}


@media (max-width: 760px) {

    .contact-hero {
        min-height: 500px;
    }

    .contact-hero-content {
        width: calc(100% - 50px);

        padding: 80px 0;
    }

    .contact-hero-content h1 {
        font-size: 47px;

        letter-spacing: -1.5px;
    }

    .contact-hero-content > p {
        font-size: 15px;
    }


    .contact-section {
        padding: 80px 0;
    }

    .contact-container {
        width: calc(100% - 50px);

        gap: 60px;
    }

    .contact-information h2 {
        font-size: 45px;
    }


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .form-heading h3 {
        font-size: 27px;
    }

}


@media (max-width: 480px) {

    .contact-hero-content h1 {
        font-size: 40px;
    }

    .contact-detail {
        gap: 14px;
    }

    .contact-detail-icon {
        width: 36px;
        height: 36px;

        min-width: 36px;
    }

    .contact-form {
        padding: 30px 20px;
    }

}


/* =====================================================
   UPCLAY LEGAL PAGE
===================================================== */

.legal-hero {
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(7, 16, 25, 0.96),
            rgba(7, 16, 25, 0.78)
        ),
        url("images/legal-hero.jpg") center / cover no-repeat;
}

.legal-hero-content {
    width: min(1180px, 90%);
    margin: auto;
    padding: 100px 0;
}

.legal-hero-content h1 {
    max-width: 850px;
    margin: 25px 0;

    color: #fff;

    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.05;

    font-weight: 400;
    letter-spacing: -3px;
}

.legal-hero-content h1 span {
    display: block;
    color: #c49a4a;
}

.legal-hero-content > p {
    max-width: 680px;

    margin-bottom: 30px;

    color: #aeb8c2;

    font-size: 17px;
    line-height: 1.8;
}

.legal-updated {
    color: #7e8a95;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.legal-updated strong {
    color: #c49a4a;
}


/* =====================================================
   MAIN LEGAL AREA
===================================================== */

.legal-section {
    background: #f7f5ef;
    padding: 110px 0 130px;
}

.legal-container {
    width: min(1050px, 88%);
    margin: auto;

    display: block;
}


/* =====================================================
   SIDEBAR HIDDEN
===================================================== */

.legal-sidebar {
    display: none;
}


/* =====================================================
   INTRO
===================================================== */

.legal-intro {
    padding-bottom: 60px;

    border-bottom: 1px solid #d7d3ca;
}

.legal-number {
    display: none;
}

.legal-intro::before {
    content: "LEGAL INFORMATION";

    display: block;

    margin-bottom: 20px;

    color: #a77b2e;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.legal-intro h2 {
    margin: 0 0 25px;

    color: #17212d;

    font-size: 48px;
    line-height: 1.1;

    font-weight: 500;
    letter-spacing: -1.5px;
}

.legal-intro p {
    max-width: 780px;

    margin: 0;

    color: #6d7882;

    font-size: 16px;
    line-height: 1.9;
}


/* =====================================================
   EVERY LEGAL SECTION
===================================================== */

.legal-block {
    display: grid;

    grid-template-columns: 70px 1fr;

    gap: 30px;

    padding: 75px 0;

    border-bottom: 1px solid #d7d3ca;
}

.legal-block-number {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #b99658;

    color: #a77b2e;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
}

.legal-block-content {
    max-width: 820px;
}

.legal-block-content h2 {
    margin: 2px 0 28px;

    color: #17212d;

    font-size: 34px;
    line-height: 1.2;

    font-weight: 500;

    letter-spacing: -0.8px;
}

.legal-block-content p {
    margin: 0 0 24px;

    color: #626e79;

    font-size: 15px;
    line-height: 1.95;
}

.legal-block-content p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   SUB HEADING
===================================================== */

.legal-block-content h3 {
    margin: 38px 0 20px;

    color: #17212d;

    font-size: 16px;
    font-weight: 700;

    line-height: 1.5;
}


/* =====================================================
   BULLET POINTS
===================================================== */

.legal-block-content ul {
    margin: 25px 0 5px;
    padding: 0;

    list-style: none;
}

.legal-block-content li {
    position: relative;

    margin-bottom: 20px;

    padding-left: 28px;

    color: #626e79;

    font-size: 15px;
    line-height: 1.9;
}

.legal-block-content li:last-child {
    margin-bottom: 0;
}

.legal-block-content li::before {
    content: "";

    position: absolute;

    left: 2px;
    top: 11px;

    width: 7px;
    height: 7px;

    border: 1px solid #b08a43;

    transform: rotate(45deg);
}


/* =====================================================
   HIGHLIGHTED LEGAL TEXT
===================================================== */

.legal-highlight {
    margin: 35px 0;

    padding: 27px 30px;

    background: #ece9e1;

    border-left: 3px solid #b08a43;
}

.legal-highlight strong {
    display: block;

    margin-bottom: 12px;

    color: #a77b2e;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.legal-highlight p {
    margin: 0;

    color: #5f6a75;

    font-size: 15px;
    line-height: 1.8;
}


/* =====================================================
   IMPORTANT NOTICE
===================================================== */

.legal-notice {
    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 20px;

    margin-top: 65px;

    padding: 32px;

    background: #0b141d;
}

.legal-notice-icon {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #c49a4a;

    color: #c49a4a;

    font-weight: 700;
}

.legal-notice strong {
    display: block;

    margin-bottom: 10px;

    color: #c49a4a;

    font-size: 10px;

    letter-spacing: 1.7px;
}

.legal-notice p {
    margin: 0;

    color: #929da7;

    font-size: 14px;
    line-height: 1.8;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 768px) {

    .legal-hero {
        min-height: 470px;
    }

    .legal-hero-content {
        width: 88%;
        padding: 80px 0;
    }

    .legal-hero-content h1 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .legal-section {
        padding: 80px 0 90px;
    }

    .legal-intro h2 {
        font-size: 38px;
    }

    .legal-block {
        grid-template-columns: 1fr;
        gap: 22px;

        padding: 60px 0;
    }

    .legal-block-content h2 {
        font-size: 29px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 500px) {

    .legal-hero-content {
        width: calc(100% - 40px);
    }

    .legal-hero-content h1 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .legal-hero-content > p {
        font-size: 14px;
    }

    .legal-section {
        padding: 65px 0 80px;
    }

    .legal-container {
        width: calc(100% - 40px);
    }

    .legal-intro {
        padding-bottom: 45px;
    }

    .legal-intro h2 {
        font-size: 32px;
    }

    .legal-intro p {
        font-size: 14px;
    }

    .legal-block {
        padding: 50px 0;
    }

    .legal-block-number {
        width: 38px;
        height: 38px;
    }

    .legal-block-content h2 {
        font-size: 26px;
    }

    .legal-block-content p,
    .legal-block-content li {
        font-size: 14px;
        line-height: 1.85;
    }

    .legal-highlight {
        padding: 22px;
    }

    .legal-notice {
        grid-template-columns: 1fr;
        gap: 15px;

        padding: 25px 22px;
    }

}

/* =====================================================
   HEADER SCROLL EFFECT
===================================================== */

.site-header {
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        padding 0.3s ease;
}

.site-header.scrolled {
    background: rgba(7, 16, 25, 0.97);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);
}


/* =====================================================
   FORM BUTTON
===================================================== */

.contact-submit:disabled {
    opacity: 0.7;

    cursor: not-allowed;

    transform: none;
}


/* =====================================================
   REVEAL FALLBACK / ANIMATION
===================================================== */

.contact-detail,
.contact-form-wrapper {
    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.contact-detail.revealed,
.contact-form-wrapper.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   CONTENT VISIBILITY FIX
===================================================== */

body {
    opacity: 1 !important;
    visibility: visible !important;
}

.site-header,
main,
section,
footer,
.hero,
.intro-section,
.features-section,
.process-section,
.cta-section,
.footer {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* =====================================================
   CONTACT FORM STATUS
===================================================== */

.form-success,
.form-error {
    display: none;

    margin-top: 22px;

    padding: 16px 18px;

    font-size: 13px;

    line-height: 1.6;
}


/* Success */

.form-success {
    background: #edf3ed;

    border-left: 3px solid #5d7d5d;

    color: #506650;
}

.form-success span {
    margin-right: 8px;

    font-weight: 700;
}

.form-success.show {
    display: block;
}


/* Error */

.form-error {
    background: #f5eded;

    border-left: 3px solid #9b5b5b;

    color: #805050;
}

.form-error.show {
    display: block;
}


/* Submit Button */

.contact-submit {
    position: relative;

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.contact-submit:disabled {
    opacity: 0.65;

    cursor: not-allowed;

    transform: none;
}

/* =====================================================
   FORM STATUS
===================================================== */

.form-status {
    display: none;

    margin-top: 20px;

    padding: 16px 20px;

    font-size: 14px;

    line-height: 1.6;
}


.form-status.success {
    display: block;

    background: #edf3ed;

    border-left: 3px solid #607d60;

    color: #4f654f;
}


.form-status.error {
    display: block;

    background: #f5eded;

    border-left: 3px solid #9a5a5a;

    color: #7b4848;
}


.form-status span {
    font-weight: 700;

    margin-right: 8px;
}