:root {
    --brand-theme: #F5F5DC;
    --brand-dark: #1A1A1A;
    --brand-light: #ffffff;
    --brand-blue: #01a9ef;
}

* {
    box-sizing: border-box;
}

html {
    background-color: var(--brand-theme);
    background-size: cover;
}

body {
    font-family: 'Inter', sans-serif;
    color: #2c4442;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.display-font {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    margin: 0;
}

a {
    text-decoration: none;
}

.kdmar {
    font-family: 'Kdam Thmor Pro', sans-serif;
}

.container {
    max-width: 1080px;
}


/* HEADER */

.site-header {
    position: relative;
    z-index: 1000;
    background: var(--brand-theme);
    padding: 18px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.brand .logo-img {
    width: 81px;
    height: auto;
    display: block;
}

.brand p {
    margin: 0;
    color: var(--brand-dark);
    font-family: 'Bebas Neue', sans-serif;
    max-width: 255px;
    line-height: 1.2;
}

.brand-title-large {
    font-size: 2rem;
    letter-spacing: 1px;
    color: inherit;
}

.brand-title-small {
    font-weight: normal;
    font-size: 1.2rem;
    color: inherit;
}

.nav-wrap {
    position: relative;
}

.menu-toggle {
    width: 34px;
    height: 34px;
    padding: 7px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0;
    background: var(--brand-dark);
    transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}



.main-menu {
    position: absolute;
    top: 50px;
    right: 0;
    width: 220px;
    padding: 12px;
    background: var(--brand-theme);
    border: 1px solid var(--brand-dark);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
}

.main-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu a {
    position: relative;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--brand-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.main-menu a:hover {
    background: var(--brand-dark);
    color: var(--brand-light);
    padding-left: 20px;
}

/* ---------- HERO ---------- */

.hero {
    position: relative;
    overflow: hidden;
    background: var(--brand-theme);
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 18px;
    padding-bottom: 110px;
}

.hero-row {
    min-height: 610px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    margin-bottom: 24px;
    color: var(--brand-dark);
    font-size: clamp(54px, 5.3vw, 75px);
    font-weight: 500;
    line-height: 1.1em;
}

.hero-description {
    max-width: 560px;
    margin: 0 0 22px;
    color: var(--brand-dark);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.35;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--brand-blue);
    color: var(--brand-light);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    transition: transform .2s ease, opacity .2s ease;
}

.hero-cta:hover {
    color: #111;
    opacity: .9;
    transform: translateY(-1px);
}

.hero-cta span {
    font-size: 18px;
    line-height: .7;
}

.hero-stats {
    display: flex;
    gap: 14px;
}

.hero-stat {
    min-width: 92px;
    padding: 8px 12px 7px;
    border-radius: 7px;
    background: var(--brand-light);
    color: #111;
}

.hero-stat strong {
    display: block;
    font-family: 'Kdam Thmor Pro', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: .9;
}

.hero-stat span {
    display: block;
    margin-top: 3px;
    font-size: 13px;
    line-height: 1.1;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}



/* PROCESS STRIP */

.process-strip {
    background: var(--brand-blue);
    padding: 24px 0;
}

.process-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process-item {
    flex: 1;
    text-align: center;
}

.process-item span {
    font-family: 'Kdam Thmor Pro', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: var(--brand-theme);
    text-transform: uppercase;
    white-space: nowrap;
}

.process-arrow {
    flex: 0 0 auto;
    padding: 0 12px;

    color: var(--brand-light);
    font-size: 22px;
    line-height: 1;
}


/* SERVICES */

.services-section {
    background: var(--brand-dark);
    padding: 90px 0 100px;
}







.service-card {
    position: relative;

    height: 250px;
    padding: 28px;

    background: var(--brand-theme);
    color: #111;

    border-radius: 38px;
    overflow: hidden;
    cursor: pointer;
}


/* TITLE */

.service-card h3 {
    position: relative;
    z-index: 2;

    width: 100%;
    margin: 0;

    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.25;

    color: #111;

    transition:
        font-size .2s ease,
        line-height .3s ease;
}


/* DESCRIPTION */

.service-card p {
    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 28px;

    margin: 0;
    padding-top: 14px;

    border-top: 1px solid rgba(0, 0, 0, .45);

    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.4;
    color: #111;

    opacity: 0;
    transform: translateY(25px);

    transition:
        opacity .3s ease,
        transform .35s ease;
}


/* HOVER */

.service-card:hover h3 {
    font-size: 24px;
    line-height: 1.2;
}

.service-card:hover p {
    opacity: 1;
    transform: translateY(0);
}





/* EXHIBITION GOALS */

.goals-section {
    background: var(--brand-theme);
    padding: 90px 0 110px;
}


/* Right column */

.goals-list {
    height: 100%;

    display: flex;
    flex-direction: column;

    gap: 16px;
}


/* Cards */
.goals-swiper {
    border: 4px solid var(--brand-dark);
    box-sizing: border-box;
}



.goal-card {
    flex: 1;

    padding: 18px 22px;

    background: var(--brand-dark);
    color: #111;

    border-radius: 7px;
}


/* Card title */

.goal-card h3 {
    margin: 0 0 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--brand-theme);
}


/* Description */

.goal-card p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3em;
    color: var(--brand-light);
}



/* PROPOSAL SECTION */

.proposal-section {
    background: var(--brand-theme);
    padding: 90px 0 120px;
}


/* Heading */






/* Benefits */

.proposal-benefits {
    display: flex;
    flex-direction: column;
    gap: 18px;

    max-width: 440px;
    margin-bottom: 40px;
}

.proposal-benefit {
    display: flex;
    align-items: center;
    gap: 8px;

    min-height: 66px;
    padding: 14px 24px;

    background: var(--brand-dark);
    color: var(--brand-light);

    border-radius: 10px;

    font-family: 'Kdam Thmor Pro', sans-serif;
    font-size: 16px;
    line-height: 1.35;
}

.proposal-benefit span {
    flex: 0 0 auto;
}


/* Form */

.proposal-form {
    padding-top: 14px;
}

.proposal-form label {
    display: block;

    margin: 0 0 6px;

    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;

    color: var(--brand-dark);
}

.proposal-form .form-control,
.proposal-form .form-select {
    min-height: 42px;

    padding: 9px 14px;

    background: var(--brand-light);
    color: #111;

    border: 0;
    border-radius: 7px;
    box-shadow: none;

    font-family: 'Inter', sans-serif;
    font-size: 12px;
}

.proposal-form .form-control:focus,
.proposal-form .form-select:focus {
    border: 0;
    box-shadow: 0 0 0 2px var(--brand-theme);
}


/* Textarea */

.proposal-form textarea.form-control {
    min-height: 105px;
    resize: vertical;
}


/* Placeholder */

.proposal-form .form-control::placeholder {
    color: #777;
    opacity: 1;
}


/* Submit */

.proposal-submit {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;

    margin-top: 20px;
    padding: 14px 24px;

    background: var(--brand-blue);
    color: var(--brand-light);

    border: 0;
    border-radius: 999px;

    font-family: 'Kdam Thmor Pro', sans-serif;
    font-size: 15px;
    font-weight: 400;

    cursor: pointer;

    transition:
        transform .2s ease,
        opacity .2s ease;
}

.proposal-submit span {
    font-size: 21px;
    line-height: 1;
}

.proposal-submit:hover {
    opacity: .9;
    transform: translateY(-2px);
}


/* FOOTER  */

.site-footer {
    padding: 70px 0 0;

    background: var(--brand-dark);
    color: var(--brand-light);
}


/* Main */

.footer-main {
    padding-bottom: 50px;
}


/* Brand */

.footer-brand {
    padding-right: 25px;
}

.footer-logo-img {
    display: block;

    width: 81px;
    height: auto;

    margin-bottom: 24px;
}

.site-footer .brand p {
    color: var(--brand-light);
}

.footer-brand>p {
    margin: 0;
    margin-top: 24px;

    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;

    color: var(--brand-light);
}


/* Columns */

.footer-col {
    padding-left: 30px;

    border-left: 1px solid rgba(255, 255, 255, .55);
}


/* Headings */

.footer-col h6 {
    margin: 0 0 20px;

    font-family: 'Kdam Thmor Pro', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;

    text-transform: uppercase;

    color: var(--brand-theme);
}


/* Lists */

.footer-col ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.footer-col li {
    position: relative;

    margin-bottom: 10px;
    padding-left: 10px;

    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.3;

    color: var(--brand-light);
}

.footer-col li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand-blue);
}

.footer-col li a {
    color: var(--brand-light);
    text-decoration: none;

    transition: color .2s ease;
}

.footer-col li a:hover {
    color: var(--brand-theme);
}


/* Contact */

.footer-contact {
    margin-top: 30px;
}

.footer-contact-item {
    margin-bottom: 14px;
}

.footer-contact-item span {
    display: block;

    margin-bottom: 2px;

    font-family: 'Kdam Thmor Pro', sans-serif;
    font-size: 16px;

    color: var(--brand-theme);
}

.footer-contact-item a,
.footer-contact-item p {
    display: block;

    margin: 0;

    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.35;

    color: var(--brand-light);
}

.footer-contact-item a:hover {
    color: var(--brand-theme);
}


/* Bottom */

.footer-bottom {
    padding: 16px 0;

    border-top: 1px solid rgba(255, 255, 255, .55);

    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 300;

    color: var(--brand-light);
}


/* ==========================================================
   CONTACT PAGE
   ========================================================== */

.contact-page {
    background: var(--brand-theme);
    color: var(--brand-dark);
}


/* Intro */

.contact-hero {
    padding: 25px 0 45px;
}

.contact-hero-content {
    text-align: center;
}

.contact-hero h1 {
    margin: 0 0 22px;

    font-family: 'Bebas Neue', sans-serif;
    font-size: 70px;
    font-weight: 400;
    line-height: 1;

    color: var(--brand-dark);
}

.contact-hero h1 span {
    color: var(--brand-blue);
}

.contact-hero p {
    max-width: 650px;
    margin: 0 auto;

    font-family: 'Inter', sans-serif;
    font-size: 23px;
    font-weight: 300;
    line-height: 1.35;

    color: var(--brand-dark);
}


/* Form Section */

.contact-form-section {
    padding: 0 0 110px;
}

.contact-form-card {
    padding: 48px 50px 55px;

    background: #cccccc;
    border-radius: 28px;
}

/* Contact Info Wrapper */

.contact-info-wrapper {
    background: transparent;
    padding: 0;
    border-radius: 0;
    height: 100%;
}

.contact-info-wrapper h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    margin: 0 0 28px;
    color: var(--brand-dark);
}

.contact-info-item {
    margin-bottom: 26px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item strong {
    display: block;
    font-family: 'Kdam Thmor Pro', sans-serif;
    font-size: 20px;
    color: var(--brand-dark);
    margin-bottom: 6px;
    text-transform: capitalize;
}

.contact-info-item p,
.contact-info-item a {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--brand-dark);
    text-decoration: none;
}

.contact-info-item a:hover {
    color: var(--brand-blue);
    text-decoration: none;
}


/* Override homepage form colours */

.contact-proposal-form {
    padding-top: 0;
}

.contact-proposal-form label {
    margin-bottom: 8px;

    font-size: 18px;
    font-weight: 400;

    color: #111;
}

.contact-proposal-form .form-control,
.contact-proposal-form .form-select {
    min-height: 52px;

    padding: 12px 14px;

    border-radius: 7px;

    font-size: 15px;
}

.contact-proposal-form textarea.form-control {
    min-height: 72px;
}


/* Submit */

.contact-submit-wrap {
    display: flex;
    justify-content: center;
}

.contact-submit {
    width: 310px;

    margin-top: 20px;
    padding: 15px 25px;

    font-size: 15px;
}



/* ==========================================================
   SERVICES PAGE
   ========================================================== */

.services-page {
    background: var(--brand-theme);
    color: var(--brand-dark);
}


/* Banner */

.services-banner {
    position: relative;
    height: 110px;
    display: flex;
    align-items: center;
    background: transparent;
    overflow: hidden;
}

.services-banner .container {
    position: relative;
    z-index: 2;
}

.services-banner h1 {
    margin: 0;

    text-align: center;

    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1;

    color: var(--brand-dark);
}


/* Services */

.services-detail-section {
    padding: 90px 0 120px;
}


/* Individual row */

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 65px;

    margin-bottom: 105px;
}

.service-detail-row:last-child {
    margin-bottom: 0;
}


/* Alternating layout */

.service-detail-reverse .service-detail-image {
    order: 2;
}

.service-detail-reverse .service-detail-content {
    order: 1;
}


/* Image */

.service-detail-image img {
    display: block;

    width: 100%;
    aspect-ratio: 1 / 1;

    object-fit: cover;

    padding: 8px;

    border: 2px solid var(--brand-light);
    border-radius: 3.4rem;
}


/* Content */

.service-detail-content h2 {
    margin: 0 0 24px;

    font-family: 'Bebas Neue', sans-serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.05;

    color: var(--brand-theme);
}


/* List */

.service-detail-content ul {
    margin: 0 0 22px;
    padding-left: 20px;
}

.service-detail-content li {
    margin-bottom: 6px;

    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;

    color: var(--brand-light);
}


/* Description */

.service-detail-content p {
    position: relative;

    margin: 0;
    padding-top: 22px;

    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.45;

    color: var(--brand-light);
}

.service-detail-content p::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 110px;
    height: 2px;

    background: var(--brand-theme);
}



/* ==========================================================
   ABOUT PAGE
   ========================================================== */

.about-page {
    background: var(--brand-theme);
    color: var(--brand-dark);
}


/* ==========================================================
   ABOUT INTRO
   ========================================================== */

.about-intro {
    padding: 25px 0 55px;
}

.about-intro-row {
    min-height: 580px;
}


/* Heading */






/* Copy */

.about-intro-copy {
    max-width: 510px;
    margin: 0;

    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.4;

    color: var(--brand-dark);
}


/* Empty visual area */

.about-intro-visual {
    width: 100%;
    min-height: 450px;
}


/* Divider */

.about-divider {
    width: 100%;
    height: 1px;

    margin-top: 35px;

    background: var(--brand-dark)
}



/* ==========================================================
   WHY CHOOSE US
   ========================================================== */

.why-section {
    padding: 0 0 110px;
}


/* Stats */

.why-stats {
    display: flex;
    flex-direction: column;

    gap: 24px;

    padding-right: 65px;
}


.why-stat-card {
    min-height: 245px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 35px 55px;

    background: var(--brand-blue);
    color: var(--brand-light);

    border-radius: 38px;
}


/* Number */

.why-stat-number {
    display: flex;
    align-items: baseline;
    gap: 10px;

    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1;

    color: var(--brand-light);
}

.why-stat-number span {
    font-size: 18px;
    font-weight: 500;
}


/* Small divider */

.why-stat-line {
    width: 35px;
    height: 2px;

    margin: 25px 0 14px;

    background: var(--brand-light);
}


/* Stat label */

.why-stat-card p {
    margin: 0;

    font-family: 'Kdam Thmor Pro', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;

    text-transform: uppercase;

    color: var(--brand-light);
}


/* Right side */

.why-content {
    padding-left: 20px;
}

.why-content .section-heading {
    text-align: center;
}


/* Heading */






/* Reason cards */

.why-reasons {
    display: flex;
    flex-direction: column;

    gap: 28px;
}

.why-reason-card {
    padding: 22px 24px;

    background: var(--brand-dark);
    color: var(--brand-light);

    border-radius: 6px;
}


/* Reason title */

.why-reason-card h3 {
    margin: 0 0 10px;

    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;

    color: var(--brand-light);
}


/* Little orange line */

.why-reason-card h3::after {
    content: "";

    display: block;

    width: 18px;
    height: 2px;

    margin-top: 8px;

    background: var(--brand-theme);
}


/* Copy */

.why-reason-card p {
    max-width: 520px;
    margin: 0;

    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;

    color: #111;
}



/** ABOUT US - BANNER RIGHT ANIMATION **/

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.evx-frame {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 0.5px solid var(--color-border-tertiary);
}

.evx-chrome {
    background: var(--color-background-secondary);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.evx-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-text-tertiary);
}

.evx-url {
    margin-left: 8px;
    font-size: 12px;
    color: var(--color-text-tertiary);
    background: var(--color-background-primary);
    border-radius: var(--border-radius-md);
    padding: 3px 12px;
}

.evx-hero {
    background: linear-gradient(135deg, #6CA4A6 0%, #87B9B6 100%);
    position: relative;
    overflow: hidden;
    padding: 48px 28px 40px;
    text-align: center;
}

.evx-bg-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.evx-top {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    margin-bottom: 36px;
}

.evx-logo {
    font-family: 'Bebas Neue', sans-serif;
    color: #F5F5F5;
    font-size: 20px;
    letter-spacing: 1px;
}

.evx-body {
    position: relative;
    z-index: 1;
}

.evx-eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    color: #FF6B2B;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.evx-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 46px;
    line-height: 1.1;
    color: #F5F5F5;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.evx-headline em {
    font-style: normal;
    color: #FF6B2B;
}

.evx-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #B7B7B7;
    max-width: 460px;
    margin: 0 auto 8px;
}

.evx-visual {
    margin: 32px auto 8px;
    max-width: 680px;
}

.evx-scene {
    perspective: 1000px;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
}

.evx-scene.dragging {
    cursor: grabbing;
}

.evx-stage {
    position: relative;
    width: 1px;
    height: 1px;
    transform-style: preserve-3d;
}

.evx-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 128px;
    height: 164px;
    margin: -82px 0 0 -64px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
    border: 0.5px solid rgba(255, 255, 255, 0.07);
    backface-visibility: hidden;
    user-select: none;
}

.evx-hint {
    font-size: 12px;
    color: #7A7A7A;
    margin: 14px 0 28px;
}

.evx-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 18px;
}

.evx-cta-primary {
    background: #FF6B2B;
    color: #1C1C1C;
    border: none;
    font-size: 14px;
    font-weight: 500;
    padding: 14px 26px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.evx-cta-secondary {
    background: transparent;
    color: #F5F5F5;
    border: 1px solid rgba(245, 245, 245, 0.35);
    font-size: 14px;
    font-weight: 500;
    padding: 14px 26px;
    border-radius: 4px;
    cursor: pointer;
}

.evx-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #8A8A8A;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    justify-content: center;
    margin-bottom: 32px;
}

.evx-tag i {
    font-size: 14px;
    color: #FF6B2B;
}

.evx-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #6B6B6B;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.evx-scroll i {
    font-size: 16px;
    animation: evxBounce 1.8s ease-in-out infinite;
}

@keyframes evxBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

@media (max-width:560px) {
    .evx-hero {
        padding: 32px 18px 32px;
    }

    .evx-headline {
        font-size: 32px;
    }

    .evx-scene {
        height: 280px;
    }

    .evx-panel {
        width: 96px;
        height: 124px;
        margin: -62px 0 0 -48px;
    }
}








/* UTILITIES */
/*.txt-borange {*/
/*    color: var(--brand-dark) !important;*/
/*}*/





/* TABLET */
@media (max-width: 991px) {


    .hero-content {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .hero-row {
        min-height: 0;
    }

    .carousel-inner,
    .carousel-item {
        min-height: 0 !important;
        height: auto;
    }

    .carousel-item img {
        height: auto;
    }

    .hero-content h1 {
        max-width: 390px;
        font-size: 64px;
    }

    .hero-description {
        max-width: 520px;
    }

    .hero-visual {
        justify-content: center;
        margin-top: 44px;
    }

    .hero-image {
        width: min(100%, 470px);
        margin: 0 auto;
    }

    .process-strip {
        padding: 20px 0;
    }

    .process-item span {
        font-size: 13px;
    }

    .process-arrow {
        padding: 0 6px;
        font-size: 18px;
    }

    .service-card {
        height: auto;
        min-height: 0;
        padding: 20px;
        border-radius: 20px;
    }

    .service-card h3,
    .service-card:hover h3 {
        width: 100%;
        margin-bottom: 12px;
        font-size: 28px;
    }

    .service-card p,
    .service-card:hover p {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        opacity: 1;
        padding-top: 12px;
        transform: translateY(0);
    }

    .goals-section {
        padding: 70px 0 70px;
    }

    .goals-swiper {
        min-height: 0 !important;
    }


    .goal-card {
        padding: 18px 20px;
    }

    .proposal-section {
        padding: 70px 0 90px;
    }

    .proposal-benefits {
        max-width: 100%;
    }

    .proposal-form {
        padding-top: 0;
    }

    .footer-col {
        padding-left: 15px;
        border: 0;
    }


    .contact-hero {
        padding: 55px 0 40px;
    }

    .contact-hero h1 {
        font-size: 58px;
    }

    .contact-hero p {
        font-size: 19px;
    }

    .contact-form-section {
        padding-bottom: 80px;
    }

    .contact-form-card {
        padding: 40px 35px 45px;
    }

    .services-banner {
        height: 200px;
    }

    .services-banner h1 {
        font-size: 54px;
    }

    .services-detail-section {
        padding: 70px 0 90px;
    }

    .service-detail-row,
    .service-detail-reverse {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
        margin-bottom: 75px;
    }

    .service-detail-content h2 {
        font-size: 32px;
    }

    .service-detail-content li {
        font-size: 14px;
    }

    .service-detail-content p {
        font-size: 14px;
    }

    .about-intro {
        padding: 70px 0 45px;
    }

    .about-intro-row {
        min-height: 0;
    }

    .about-intro-visual {
        min-height: 200px;
    }

    .about-divider {
        margin-top: 20px;
    }

    .why-section {
        padding-bottom: 80px;
    }

    .why-stats {
        padding-right: 0;
    }

    .why-stat-card {
        min-height: 200px;
    }

    .why-content {
        padding-left: 0;
    }


}



/* MOBILE */
@media (max-width: 576px) {

    .hero-content {
        padding-top: 14px;
        padding-bottom: 48px;
    }

    .hero-content h1 {
        max-width: 300px;
        margin-bottom: 18px;
        font-size: 48px;
        line-height: .96;
    }

    .hero-description {
        max-width: 340px;
        margin-bottom: 18px;
        font-size: 12px;
    }

    .hero-cta {
        padding: 9px 14px;
        font-size: 11px;
    }

    .hero-stats {
        gap: 10px;
    }

    .hero-stat {
        min-width: 82px;
        padding: 7px 10px;
    }

    .hero-stat strong {
        font-size: 22px;
    }

    .hero-visual {
        margin-top: 34px;
    }

    .hero-image {
        width: min(92%, 390px);
    }

    .process-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 0;
    }

    .process-item {
        flex: 0 0 auto;
    }

    .process-item span {
        font-size: 11px;
    }

    .process-arrow {
        padding: 0 7px;
        font-size: 14px;
    }

    .proposal-section {
        padding: 55px 0 70px;
    }

    .proposal-benefits {
        gap: 12px;
    }

    .proposal-benefit {
        min-height: 56px;
        padding: 12px 16px;
        font-size: 13px;
    }

    .proposal-submit {
        margin-top: 10px;
    }


    .contact-hero {
        padding: 20px;
    }

    .contact-hero h1 {
        margin-bottom: 18px;
        font-size: 44px;
    }

    .contact-hero p {
        max-width: 340px;
        font-size: 15px;
    }

    .desktop-break {
        display: none;
    }

    .contact-form-section {
        padding-bottom: 65px;
    }

    .contact-form-card {
        padding: 28px 20px 32px;
        border-radius: 20px;
    }

    .contact-proposal-form label {
        font-size: 15px;
    }

    .contact-proposal-form .form-control,
    .contact-proposal-form .form-select {
        min-height: 48px;
    }

    .contact-submit {
        width: 100%;
    }


    .services-banner {
        height: 160px;
    }

    .services-banner h1 {
        font-size: 44px;
    }

    .services-detail-section {
        padding: 55px 0 70px;
    }

    .service-detail-row,
    .service-detail-reverse {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 70px;
    }

    /* Always image first on mobile */
    .service-detail-row .service-detail-image,
    .service-detail-reverse .service-detail-image {
        order: 1;
    }

    .service-detail-row .service-detail-content,
    .service-detail-reverse .service-detail-content {
        order: 2;
    }

    .service-detail-image img {
        max-width: 100%;
        padding: 6px;
        border-radius: 3.4rem;
    }

    .service-detail-content h2 {
        margin-bottom: 18px;
        font-size: 30px;
    }

    .service-detail-content ul {
        margin-bottom: 18px;
    }

    .service-detail-content li {
        font-size: 13px;
    }

    .service-detail-content p {
        padding-top: 18px;
        font-size: 13px;
    }

    .service-detail-content p::before {
        width: 90px;
    }

    .about-intro {
        padding: 50px 0 35px;
    }

    .about-intro-copy {
        font-size: 13px;
    }

    .about-intro-visual {
        display: none;
    }

    .about-divider {
        margin-top: 45px;
    }

    .why-section {
        padding-bottom: 65px;
    }

    .why-stats {
        gap: 16px;
    }

    .why-stat-card {
        min-height: 175px;
        padding: 28px 35px;
        border-radius: 28px;
    }

    .why-stat-number {
        font-size: 52px;
    }

    .why-stat-number span {
        font-size: 15px;
    }

    .why-stat-line {
        margin: 20px 0 12px;
    }

    .why-stat-card p {
        font-size: 13px;
    }

    .why-reasons {
        gap: 16px;
    }

    .why-reason-card {
        padding: 20px;
    }

}

/* SECTION HEADING */
.section-heading {
    margin: 0 0 40px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 5vw, 75px);
    font-weight: 400;
    line-height: 1.1;
    color: var(--brand-light);
}

/*.section-heading span {*/
/*    color: var(--brand-theme);*/
/*}*/

/* Page Specific Overrides */
.about-page .about-intro .section-heading,
.about-page .why-content .section-heading,
.contact-page .contact-hero .section-heading,
.services-page .services-banner .section-heading,
.proposal-section .section-heading,
.goals-section .section-heading {
    color: var(--brand-dark);
}

/*.about-page .about-intro .section-heading span,*/
/*.about-page .why-content .section-heading span,*/
/*.contact-page .contact-hero .section-heading span,*/
/*.services-page .services-banner .section-heading span,*/
/*.proposal-section .section-heading span,*/
/*.services-section .section-heading span,*/
/*.goals-section .section-heading span {*/
/*    color: var(--brand-blue);*/
/*}*/


/* CAROUSEL BORDER RADIUS */
.carousel-inner {
    border-radius: 4.5rem;
    overflow: hidden;
    height: 100%;
    border: 4px solid var(--brand-dark);
    box-sizing: border-box;
}

.carousel-item {
    height: 100%;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
}

label {
    color: var(--brand-light);
    margin-bottom: 0.5rem;
}


.why-reason-card h3 {
    color: var(--brand-blue);
}

.why-reason-card p {
    color: var(--brand-light);
}

.contact-form label {
    color: var(--brand-dark);
}

.contact-submit {
    background-color: var(--brand-dark);
    color: var(--brand-light);
}

/* Services Colors */
.service-detail-row {
    padding: 40px;
    border-radius: 30px;
    background-color: var(--brand-dark);
    border: 2px solid var(--brand-light);
}

.service-detail-content h2,
.service-detail-content li,
.service-detail-content p {
    color: var(--brand-light);
}

.service-detail-image img {
    border-color: var(--brand-light);
}

.service-detail-content p::before {
    background-color: var(--brand-light);
}

.service-detail-reverse {
    background-color: var(--brand-theme);
    border-color: transparent;
}

.service-detail-reverse .service-detail-content h2,
.service-detail-reverse .service-detail-content li,
.service-detail-reverse .service-detail-content p {
    color: var(--brand-dark);
}

.service-detail-reverse .service-detail-image img {
    border-color: var(--brand-dark);
}

.service-detail-reverse .service-detail-content p::before {
    background-color: var(--brand-dark);
}