/* =========================================================
   DESIRE LIFTS
   Premium Corporate Elevator Website
   Main Stylesheet
   ========================================================= */


/* =========================================================
   ROOT
   ========================================================= */

:root {

    --black: #080a0c;
    --black-2: #0d1013;
    --dark: #12171b;
    --dark-2: #1a2025;

    --white: #ffffff;
    --off-white: #f8f9f9;
    --soft: #f2f4f4;

    --text: #171b1f;
    --text-light: #70777d;
    --text-dark-light: #aeb5b9;

    --gold: #f5b52a;
    --gold-light: #ffd166;

    --cyan: #16d5d0;
    --cyan-dark: #0bb3af;

    --green: #20c763;

    --border: #e5e8ea;
    --border-dark: #2b3237;

    --danger: #dc3545;
    --success: #198754;

    --container: 1180px;

    --radius-sm: 8px;
    --radius: 18px;
    --radius-lg: 28px;

    --shadow-sm:
        0 5px 20px rgba(0, 0, 0, .06);

    --shadow:
        0 15px 50px rgba(0, 0, 0, .10);

    --shadow-lg:
        0 25px 80px rgba(0, 0, 0, .18);

    --transition:
        all .3s ease;

}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    margin: 0;

    padding: 0;

    background: var(--white);

    color: var(--text);

    font-family:
        "Manrope",
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;

    line-height: 1.7;

    overflow-x: hidden;

}


body.menu-open {

    overflow: hidden;

}


img {

    display: block;

    max-width: 100%;

}


video {

    display: block;

    max-width: 100%;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
select,
textarea {

    font: inherit;

}


button {

    cursor: pointer;

}


ul {

    margin: 0;

    padding: 0;

}


h1,
h2,
h3,
h4,
h5,
h6 {

    font-family:
        "Outfit",
        Arial,
        sans-serif;

    margin-top: 0;

    color: inherit;

}


p {

    margin-top: 0;

}


::selection {

    background: var(--gold);

    color: #111;

}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {

    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin-left: auto;

    margin-right: auto;

}


/* =========================================================
   PAGE LOADER
   ========================================================= */

.page-loader {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--black);

    transition:
        opacity .5s ease,
        visibility .5s ease;

}


.page-loader.hide {

    opacity: 0;

    visibility: hidden;

}


.loader-content {

    text-align: center;

    color: #fff;

}


.loader-content img {

    width: 75px;

    height: 75px;

    margin: 0 auto 18px;

    animation:
        loaderPulse 1.5s infinite;

}


.loader-content span {

    display: block;

    margin-top: 12px;

    color: #fff;

    font-family: "Outfit";

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 4px;

}


.loader-line {

    width: 100px;

    height: 2px;

    margin: auto;

    overflow: hidden;

    background: #30363a;

}


.loader-line::after {

    content: "";

    display: block;

    width: 40%;

    height: 100%;

    background: var(--gold);

    animation:
        loaderLine 1.2s infinite;

}


@keyframes loaderPulse {

    0%,
    100% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.07);

    }

}


@keyframes loaderLine {

    0% {

        transform: translateX(-100%);

    }

    100% {

        transform: translateX(350%);

    }

}


/* =========================================================
   TOP BAR
   ========================================================= */

.top-bar {

    position: absolute;

    z-index: 100;

    top: 0;

    left: 0;

    width: 100%;

    color: rgba(255,255,255,.75);

    border-bottom:
        1px solid rgba(255,255,255,.10);

}


.top-bar-inner {

    min-height: 38px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.top-bar span,
.top-bar a {

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .3px;

}


.top-bar i {

    margin-right: 6px;

    color: var(--cyan);

}


.top-right {

    display: flex;

    align-items: center;

    gap: 22px;

}


.top-right a:hover {

    color: #fff;

}


/* =========================================================
   MAIN HEADER
   ========================================================= */

.site-header {

    position: absolute;

    z-index: 90;

    top: 38px;

    left: 0;

    right: 0;

    color: #fff;

    border-bottom:
        1px solid rgba(255,255,255,.12);

    transition:
        background .3s ease,
        box-shadow .3s ease,
        top .3s ease;

}


.site-header.scrolled {

    position: fixed;

    top: 0;

    background:
        rgba(7,9,11,.95);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    box-shadow:
        0 10px 40px rgba(0,0,0,.25);

    border-color:
        rgba(255,255,255,.08);

}


.nav {

    min-height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================================
   BRAND
   ========================================================= */

.brand {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

}


.brand img {

    /* width: 52px; */

    height: 72px;

}


.brand-text {

    display: flex;

    flex-direction: column;

    font-family: "Outfit";

    font-size: 16px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.brand-text strong {

    color: #fff;

}


.brand-text span {

    margin-top: 4px;

    color: var(--cyan);

}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav-menu {

    display: flex;

    align-items: center;

    gap: 25px;

}


.nav-menu > a,
.nav-dropdown > a {

    position: relative;

    display: flex;

    align-items: center;

    gap: 6px;

    min-height: 88px;

    color: rgba(255,255,255,.88);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .8px;

    transition: var(--transition);

}


.nav-menu > a::after,
.nav-dropdown > a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 22px;

    width: 0;

    height: 2px;

    background: var(--cyan);

    transition: width .3s ease;

}


.nav-menu > a:hover,
.nav-dropdown > a:hover,
.nav-menu > a.active,
.nav-dropdown > a.active {

    color: #fff;

}


.nav-menu > a:hover::after,
.nav-dropdown > a:hover::after,
.nav-menu > a.active::after,
.nav-dropdown > a.active::after {

    width: 100%;

}


.nav-dropdown {

    position: relative;

}


.nav-dropdown > a i {

    font-size: 8px;

    transition: transform .3s ease;

}


.nav-dropdown:hover > a i {

    transform: rotate(180deg);

}


/* =========================================================
   DROPDOWN
   ========================================================= */

.dropdown-menu {

    position: absolute;

    top: calc(100% - 5px);

    left: 50%;

    width: 350px;

    padding: 14px;

    opacity: 0;

    visibility: hidden;

    transform:
        translate(-50%, 12px);

    background:
        rgba(13,16,19,.98);

    border:
        1px solid #30373c;

    border-radius: 14px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.35);

    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;

}


.nav-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translate(-50%, 0);

}


.dropdown-title {

    padding: 8px 10px 12px;

    border-bottom:
        1px solid #293035;

}


.dropdown-title span {

    display: block;

    color: var(--cyan);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.7px;

}


.dropdown-title small {

    display: block;

    margin-top: 2px;

    color: #737d83;

    font-size: 10px;

}


.dropdown-item {

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 10px;

    border-radius: 9px;

    transition: var(--transition);

}


.dropdown-item:hover {

    background: #1a2025;

}


.dropdown-icon {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    border-radius: 8px;

    background: #222a2f;

    color: var(--gold);

}


.dropdown-item strong {

    display: block;

    color: #fff;

    font-family: "Outfit";

    font-size: 12px;

}


.dropdown-item small {

    display: block;

    margin-top: 1px;

    color: #7d878d;

    font-size: 9px;

    line-height: 1.4;

}


.dropdown-view-all {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 8px;

    padding: 12px;

    color: var(--gold);

    border-top:
        1px solid #293035;

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

}


/* =========================================================
   NAV CTA
   ========================================================= */

.nav-menu .nav-cta {

    min-height: auto;

    padding: 12px 18px;

    color: #111;

    background: var(--gold);

    border-radius: 30px;

    gap: 9px;

}


.nav-menu .nav-cta::after {

    display: none;

}


.nav-menu .nav-cta:hover {

    color: #111;

    background: var(--gold-light);

    transform: translateY(-2px);

}


.nav-menu .nav-cta i {

    font-size: 10px;

}


/* =========================================================
   MOBILE NAV BUTTON
   ========================================================= */

.nav-toggle {

    display: none;

    width: 45px;

    height: 45px;

    padding: 10px;

    border: 0;

    border-radius: 8px;

    background: rgba(255,255,255,.08);

}


.nav-toggle span {

    display: block;

    width: 23px;

    height: 2px;

    margin: 5px auto;

    background: #fff;

    transition: .3s ease;

}


.nav-toggle.active span:nth-child(1) {

    transform:
        translateY(7px)
        rotate(45deg);

}


.nav-toggle.active span:nth-child(2) {

    opacity: 0;

}


.nav-toggle.active span:nth-child(3) {

    transform:
        translateY(-7px)
        rotate(-45deg);

}


/* =========================================================
   HERO
   ========================================================= */

.hero {

    position: relative;

    min-height: 780px;

    height: 94vh;

    display: flex;

    align-items: center;

    overflow: hidden;

    color: #fff;

    background:
        #080a0c;

}


.hero-video {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    opacity: .62;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(3,5,6,.94) 0%,
            rgba(5,8,10,.76) 43%,
            rgba(5,8,10,.40) 100%
        );

}


.hero::after {

    content: "";

    position: absolute;

    right: -180px;

    bottom: -300px;

    width: 650px;

    height: 650px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(22,213,208,.12),
            transparent 70%
        );

    pointer-events: none;

}


.hero-content {

    position: relative;

    z-index: 3;

    padding-top: 80px;

}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 14px;

    color: var(--cyan);

    font-size: 10px;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: 2.3px;

}


.eyebrow::before {

    content: "";

    width: 25px;

    height: 2px;

    background: currentColor;

}


.eyebrow.dark {

    color: var(--cyan-dark);

}


.hero h1 {

    max-width: 900px;

    margin: 0 0 25px;

    font-family: "Outfit";

    font-size:
        clamp(
            48px,
            6vw,
            82px
        );

    font-weight: 600;

    line-height: 1.02;

    letter-spacing: -2px;

}


.hero h1 span {

    color: var(--gold);

}


.hero p {

    max-width: 690px;

    margin-bottom: 30px;

    color: #d1d7da;

    font-size: 16px;

    line-height: 1.8;

}


.hero-actions {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

}


.hero-mini {

    display: flex;

    flex-wrap: wrap;

    gap: 25px;

    margin-top: 30px;

}


.hero-mini span {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #bdc5c9;

    font-size: 10px;

    font-weight: 700;

}


.hero-mini i {

    color: var(--cyan);

}


/* =========================================================
   BUTTONS
   ========================================================= */

.btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-height: 50px;

    padding: 0 23px;

    border: 1px solid transparent;

    border-radius: 8px;

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .7px;

    transition: var(--transition);

}


.btn i {

    font-size: 11px;

}


.btn:hover {

    transform: translateY(-3px);

}


.btn-primary {

    color: #111;

    background: var(--gold);

    box-shadow:
        0 10px 30px rgba(245,181,42,.20);

}


.btn-primary:hover {

    background: var(--gold-light);

    box-shadow:
        0 14px 35px rgba(245,181,42,.30);

}


.btn-dark {

    color: #fff;

    background: var(--black);

}


.btn-dark:hover {

    background: var(--dark-2);

}


.btn-ghost {

    color: #fff;

    background:
        rgba(255,255,255,.04);

    border-color:
        rgba(255,255,255,.45);

}


.btn-ghost:hover {

    background: #fff;

    color: #111;

}


.btn-light {

    color: #111;

    background: #fff;

}


.btn-whatsapp {

    color: #fff;

    background: var(--green);

}


.full {

    width: 100%;

}


/* =========================================================
   TRUST STRIP
   ========================================================= */

.trust-strip {

    position: relative;

    z-index: 5;

    background: #fff;

    box-shadow:
        0 15px 50px rgba(0,0,0,.08);

}


.trust-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

}


.trust-grid > div {

    display: flex;

    align-items: center;

    gap: 15px;

    min-height: 100px;

    padding: 20px;

    border-right:
        1px solid var(--border);

}


.trust-grid > div:last-child {

    border-right: 0;

}


.trust-grid > div > i {

    width: 45px;

    height: 45px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    color: var(--gold);

    background: #f8f8f5;

    border-radius: 12px;

}


.trust-grid strong {

    display: block;

    font-family: "Outfit";

    font-size: 13px;

}


.trust-grid small {

    display: block;

    margin-top: 2px;

    color: var(--text-light);

    font-size: 10px;

}


/* =========================================================
   SECTION
   ========================================================= */

.section {

    padding:
        105px 0;

}


.section.light {

    background: var(--soft);

}


.section-head {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;

}


.section-head.center {

    display: block;

    max-width: 850px;

    margin-left: auto;

    margin-right: auto;

    text-align: center;

}


.section-head h2,
.content h2,
.video-section h2 {

    margin: 0 0 20px;

    font-family: "Outfit";

    font-size:
        clamp(
            36px,
            4vw,
            57px
        );

    font-weight: 600;

    line-height: 1.08;

    letter-spacing: -1px;

}


.section-head h2 span,
.content h2 span,
.video-section h2 span {

    color: var(--gold);

}


.section-head p,
.content p {

    color: var(--text-light);

    font-size: 14px;

}


.section-head p {

    max-width: 700px;

    margin-bottom: 0;

}


/* =========================================================
   ABOUT
   ========================================================= */

.two-col {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 75px;

}


.image-card {

    position: relative;

    overflow: hidden;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-lg);

    background: #ddd;

}


.image-card::after {

    content: "";

    position: absolute;

    left: 20px;

    bottom: 20px;

    width: 70px;

    height: 70px;

    border-left: 3px solid var(--gold);

    border-bottom: 3px solid var(--gold);

    pointer-events: none;

}


.image-card img {

    width: 100%;

    height: 520px;

    object-fit: cover;

}


.stats {

    display: flex;

    flex-wrap: wrap;

    gap: 40px;

    margin: 32px 0;

    padding-top: 25px;

    border-top:
        1px solid var(--border);

}


.stats div {

    min-width: 75px;

}


.stats b {

    display: block;

    font-family: "Outfit";

    font-size: 31px;

    line-height: 1;

}


.stats span {

    display: block;

    margin-top: 7px;

    color: var(--text-light);

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.text-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: var(--text);

    font-size: 11px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .6px;

    border-bottom:
        2px solid var(--cyan);

    transition: var(--transition);

}


.text-link:hover {

    gap: 14px;

    color: var(--cyan-dark);

}


/* =========================================================
   CARD GRID
   ========================================================= */

.card-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 24px;

}


.product-card {

    overflow: hidden;

    background: #fff;

    border:
        1px solid var(--border);

    border-radius: 17px;

    transition: var(--transition);

}


.product-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(22,213,208,.35);

    box-shadow: var(--shadow);

}


.card-img {

    position: relative;

    height: 245px;

    overflow: hidden;

    background: #dfe2e2;

}


.card-img::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.32),
            transparent 45%
        );

    pointer-events: none;

}


.card-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease;

}


.product-card:hover .card-img img {

    transform: scale(1.07);

}


.card-tag {

    position: absolute;

    z-index: 2;

    top: 15px;

    left: 15px;

    padding: 6px 11px;

    color: #fff;

    background:
        rgba(8,10,12,.88);

    border-radius: 30px;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1px;

}


.card-body {

    padding: 25px;

}


.card-body h3 {

    margin-bottom: 8px;

    font-family: "Outfit";

    font-size: 21px;

    line-height: 1.2;

}


.card-body p {

    min-height: 67px;

    margin-bottom: 20px;

    color: var(--text-light);

    font-size: 12px;

    line-height: 1.7;

}


.card-body a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--text);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    border-bottom:
        1px solid var(--cyan);

}


.card-body a:hover {

    color: var(--cyan-dark);

}


.mt-40 {

    margin-top: 40px;

}


.center {

    text-align: center;

}


/* =========================================================
   SERVICES
   ========================================================= */

.service-grid {

    grid-template-columns:
        repeat(3,1fr);

}


.service-card {

    position: relative;

    padding: 32px;

    background: #fff;

    border:
        1px solid var(--border);

    border-radius: 17px;

    transition: var(--transition);

}


.service-card:hover {

    transform: translateY(-7px);

    box-shadow: var(--shadow);

    border-color:
        rgba(22,213,208,.35);

}


.service-icon {

    width: 62px;

    height: 62px;

    display: grid;

    place-items: center;

    margin-bottom: 23px;

    color: var(--cyan);

    background: #101519;

    border-radius: 14px;

    font-size: 22px;

    transition: var(--transition);

}


.service-card:hover .service-icon {

    color: #111;

    background: var(--gold);

    transform: rotate(-5deg);

}


.service-card h3 {

    margin-bottom: 10px;

    font-family: "Outfit";

    font-size: 21px;

}


.service-card p {

    min-height: 70px;

    margin-bottom: 20px;

    color: var(--text-light);

    font-size: 12px;

}


.service-card a {

    color: var(--text);

    font-size: 10px;

    font-weight: 800;

    text-transform: uppercase;

    border-bottom:
        1px solid var(--cyan);

}


/* =========================================================
   DARK SECTION
   ========================================================= */

.dark-section {

    padding: 105px 0;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #0a0d0f,
            #151b20
        );

}


.dark-section .content p {

    color: #aeb5b9;

}


.check-list {

    display: grid;

    gap: 12px;

    margin: 30px 0;

    padding: 0;

    list-style: none;

}


.check-list li {

    display: flex;

    align-items: center;

    gap: 10px;

    color: #d6dcdf;

    font-size: 12px;

}


.check-list li::before {

    content: "✓";

    width: 21px;

    height: 21px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    color: #111;

    background: var(--gold);

    border-radius: 50%;

    font-size: 10px;

    font-weight: 900;

}


/* =========================================================
   FEATURE PANEL
   ========================================================= */

.feature-panel {

    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    overflow: hidden;

    border:
        1px solid #30373b;

    border-radius: 18px;

    background: #30373b;

    box-shadow:
        0 20px 60px rgba(0,0,0,.25);

}


.feature-panel > div {

    min-height: 190px;

    padding: 30px;

    background: #151b1f;

    transition: var(--transition);

}


.feature-panel > div:hover {

    background: #1b2328;

}


.feature-panel i {

    color: var(--gold);

    font-size: 22px;

}


.feature-panel h3 {

    margin: 16px 0 5px;

    font-family: "Outfit";

    font-size: 19px;

}


.feature-panel p {

    margin: 0;

    color: #9ca5aa;

    font-size: 11px;

}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    grid-auto-rows: 270px;

    gap: 15px;

}


.gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 15px;

    background: #15191c;

}


.gallery-item:first-child {

    grid-column: span 2;

}


.gallery-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease;

}


.gallery-item:hover img {

    transform: scale(1.07);

}


.gallery-item::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            transparent 35%,
            rgba(0,0,0,.85)
        );

}


.gallery-item > div {

    position: absolute;

    z-index: 2;

    right: 0;

    bottom: 0;

    left: 0;

    padding: 25px 20px 18px;

    color: #fff;

}


.gallery-item span {

    display: block;

    margin-bottom: 4px;

    color: var(--cyan);

    font-size: 8px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.4px;

}


.gallery-item strong {

    font-family: "Outfit";

    font-size: 18px;

}


/* =========================================================
   VIDEO SECTION
   ========================================================= */

.video-section {

    position: relative;

    padding: 100px 0;

    overflow: hidden;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #080a0c,
            #151c21
        );

}


.video-section::before {

    content: "";

    position: absolute;

    right: -250px;

    top: -250px;

    width: 650px;

    height: 650px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(22,213,208,.08),
            transparent 70%
        );

}


.video-wrap {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        .75fr 1.25fr;

    align-items: center;

    gap: 65px;

}


.video-section p {

    max-width: 530px;

    color: #9fa8ad;

    font-size: 13px;

}


.video-box {

    overflow: hidden;

    background: #050607;

    border:
        1px solid #30383d;

    border-radius: 20px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.4);

}


.video-box video {

    width: 100%;

    aspect-ratio: 16 / 9;

    object-fit: cover;

}


/* =========================================================
   ENQUIRY
   ========================================================= */

.enquiry-wrap {

    display: grid;

    grid-template-columns:
        .8fr 1.2fr;

    align-items: start;

    gap: 70px;

}


.enquiry-copy h2 {

    max-width: 520px;

}


.contact-points {

    display: grid;

    gap: 15px;

    margin-top: 30px;

}


.contact-points a,
.contact-points span {

    display: flex;

    align-items: center;

    gap: 11px;

    color: var(--text);

    font-size: 12px;

    font-weight: 700;

}


.contact-points i {

    width: 25px;

    color: var(--gold);

    text-align: center;

}


/* =========================================================
   LEAD FORM
   ========================================================= */

.lead-form {

    padding: 35px;

    background: #fff;

    border:
        1px solid var(--border);

    border-radius: 20px;

    box-shadow: var(--shadow);

}


.lead-form label {

    display: block;

    margin-bottom: 15px;

    color: #333;

    font-size: 9px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .7px;

}


.lead-form input,
.lead-form select,
.lead-form textarea {

    display: block;

    width: 100%;

    margin-top: 7px;

    padding: 13px 14px;

    color: var(--text);

    background: #fff;

    border:
        1px solid #dfe3e5;

    border-radius: 8px;

    outline: none;

    transition: var(--transition);

}


.lead-form textarea {

    resize: vertical;

    min-height: 100px;

}


.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {

    border-color: var(--cyan);

    box-shadow:
        0 0 0 3px rgba(22,213,208,.08);

}


.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;

}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonial-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 22px;

}


.testimonial {

    padding: 30px;

    background: #fff;

    border:
        1px solid var(--border);

    border-radius: 16px;

    transition: var(--transition);

}


.testimonial:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-sm);

}


.stars {

    margin-bottom: 15px;

    color: var(--gold);

    font-size: 13px;

    letter-spacing: 3px;

}


.testimonial p {

    color: var(--text-light);

    font-size: 12px;

}


.testimonial strong {

    display: block;

    margin-top: 20px;

    font-family: "Outfit";

    font-size: 14px;

}


.testimonial small {

    display: block;

    color: var(--text-light);

    font-size: 10px;

}


/* =========================================================
   FAQ
   ========================================================= */

.faq-wrap {

    max-width: 920px;

    margin-left: auto;

    margin-right: auto;

}


.faq-list {

    border-top:
        1px solid var(--border);

}


.faq-list details {

    padding: 20px 0;

    border-bottom:
        1px solid var(--border);

}


.faq-list summary {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    cursor: pointer;

    color: var(--text);

    font-family: "Outfit";

    font-size: 16px;

    font-weight: 600;

    list-style: none;

}


.faq-list summary::-webkit-details-marker {

    display: none;

}


.faq-list summary i {

    color: var(--cyan-dark);

    font-size: 11px;

    transition: transform .3s ease;

}


.faq-list details[open] summary i {

    transform: rotate(45deg);

}


.faq-list details p {

    max-width: 800px;

    margin: 15px 0 0;

    color: var(--text-light);

    font-size: 12px;

}


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {

    position: relative;

    min-height: 430px;

    display: flex;

    align-items: flex-end;

    padding:
        100px 0 70px;

    overflow: hidden;

    color: #fff;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(22,213,208,.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #07090b,
            #1a2227
        );

}


.page-hero::after {

    content: "";

    position: absolute;

    right: 5%;

    bottom: -100px;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    border:
        1px solid rgba(255,255,255,.06);

    box-shadow:
        0 0 0 60px rgba(255,255,255,.02),
        0 0 0 120px rgba(255,255,255,.015);

}


.page-hero .container {

    position: relative;

    z-index: 2;

}


.page-hero h1 {

    max-width: 900px;

    margin: 0;

    font-family: "Outfit";

    font-size:
        clamp(
            42px,
            6vw,
            72px
        );

    font-weight: 600;

    line-height: 1.05;

    letter-spacing: -1px;

}


.page-hero h1 span {

    color: var(--gold);

}


.breadcrumb {

    margin-top: 15px;

    color: #929ca1;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .7px;

}


/* =========================================================
   DETAIL PAGE
   ========================================================= */

.detail-content {

    padding:
        95px 0;

}


.detail-image {

    overflow: hidden;

    border-radius: 20px;

    box-shadow: var(--shadow-lg);

}


.detail-image img {

    width: 100%;

    max-height: 580px;

    object-fit: cover;

}


.notice {

    margin: 25px 0;

    padding: 20px;

    color: #454b4f;

    background: #f4f6f6;

    border-left:
        4px solid var(--gold);

    border-radius: 8px;

    font-size: 13px;

}


/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-page {

    padding:
        95px 0;

}


.map-box {

    min-height: 420px;

    overflow: hidden;

    background: #edf0f1;

    border-radius: 20px;

}


.map-box iframe {

    width: 100%;

    height: 100%;

    min-height: 420px;

    border: 0;

}


/* =========================================================
   FOOTER CTA
   ========================================================= */

.footer-cta {

    position: relative;

    overflow: hidden;

    color: #fff;

    background:
        linear-gradient(
            120deg,
            #11181d,
            #0a0d0f
        );

}


.footer-cta::before {

    content: "";

    position: absolute;

    top: -150px;

    right: -100px;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(22,213,208,.12),
            transparent 70%
        );

}


.footer-cta-inner {

    position: relative;

    z-index: 2;

    min-height: 300px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.footer-cta-content h2 {

    max-width: 650px;

    margin: 0 0 12px;

    font-family: "Outfit";

    font-size:
        clamp(
            34px,
            4vw,
            52px
        );

    line-height: 1.05;

}


.footer-cta-content h2 span {

    color: var(--gold);

}


.footer-cta-content p {

    max-width: 600px;

    margin: 0;

    color: #9ca5aa;

    font-size: 12px;

}


.footer-cta-actions {

    display: flex;

    flex-shrink: 0;

    gap: 10px;

}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {

    color: #fff;

    background: #080a0c;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1.2fr
        1.4fr
        1.4fr;

    gap: 40px;

    padding:
        75px 0 60px;

}


.footer-brand {

    display: inline-flex;

    align-items: center;

    gap: 10px;

}


.footer-brand img {

    width: 50px;

    height: 50px;

}


.footer-brand div {

    display: flex;

    flex-direction: column;

    font-family: "Outfit";

    font-weight: 800;

    line-height: 1;

    letter-spacing: 1.5px;

}


.footer-brand strong {

    color: #fff;

}


.footer-brand span {

    margin-top: 4px;

    color: var(--cyan);

}


.footer-description {

    max-width: 300px;

    margin: 22px 0;

    color: #7f898f;

    font-size: 11px;

    line-height: 1.8;

}


.footer-social {

    display: flex;

    gap: 9px;

}


.footer-social a {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    color: #aeb5b9;

    border:
        1px solid #2b3237;

    border-radius: 50%;

    transition: var(--transition);

}


.footer-social a:hover {

    color: #111;

    background: var(--gold);

    border-color: var(--gold);

    transform: translateY(-3px);

}


.footer-column h4 {

    margin: 0 0 20px;

    font-family: "Outfit";

    font-size: 15px;

}


.footer-column ul {

    display: grid;

    gap: 9px;

    list-style: none;

}


.footer-column li a {

    display: flex;

    align-items: center;

    gap: 7px;

    color: #7f898f;

    font-size: 10px;

    transition: var(--transition);

}


.footer-column li a i {

    color: var(--cyan);

    font-size: 7px;

}


.footer-column li a:hover {

    color: #fff;

    transform: translateX(3px);

}


/* =========================================================
   FOOTER CONTACT
   ========================================================= */

.contact-item {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 17px;

}


.contact-icon {

    width: 39px;

    height: 39px;

    display: grid;

    place-items: center;

    flex-shrink: 0;

    color: var(--gold);

    background: #171d21;

    border-radius: 9px;

}


.contact-icon.whatsapp {

    color: var(--green);

}


.contact-item small {

    display: block;

    margin-bottom: 2px;

    color: #707a80;

    font-size: 8px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.contact-item strong {

    display: block;

    color: #dce1e3;

    font-family: "Outfit";

    font-size: 11px;

    font-weight: 600;

}


.footer-bottom {

    border-top:
        1px solid #20262a;

}


.footer-bottom-inner {

    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    color: #626b70;

    font-size: 9px;

}


.footer-bottom strong {

    color: #aab2b6;

}


.footer-bottom-links {

    display: flex;

    gap: 8px;

}


.footer-bottom-links a:hover {

    color: #fff;

}


.dot {

    color: var(--gold);

}


/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */

.floating-wa {

    position: fixed;

    z-index: 500;

    right: 20px;

    bottom: 22px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 8px 15px 8px 8px;

    color: #fff;

    background: var(--green);

    border-radius: 50px;

    box-shadow:
        0 12px 35px rgba(0,0,0,.25);

    transition: var(--transition);

}


.floating-wa:hover {

    transform: translateY(-4px);

    box-shadow:
        0 16px 40px rgba(0,0,0,.32);

}


.wa-icon {

    width: 38px;

    height: 38px;

    display: grid;

    place-items: center;

    background: rgba(255,255,255,.15);

    border-radius: 50%;

    font-size: 19px;

}


.wa-text small {

    display: block;

    font-size: 7px;

    line-height: 1;

    opacity: .75;

}


.wa-text strong {

    display: block;

    margin-top: 4px;

    font-size: 10px;

    text-transform: uppercase;

}


/* =========================================================
   FLOATING CALL
   ========================================================= */

.floating-call {

    position: fixed;

    z-index: 500;

    right: 20px;

    bottom: 87px;

    width: 44px;

    height: 44px;

    display: grid;

    place-items: center;

    color: #fff;

    background: #111;

    border:
        1px solid #333;

    border-radius: 50%;

    box-shadow:
        0 10px 25px rgba(0,0,0,.22);

    transition: var(--transition);

}


.floating-call:hover {

    color: #111;

    background: var(--gold);

    transform: translateY(-3px);

}


/* =========================================================
   BACK TO TOP
   ========================================================= */

.back-to-top {

    position: fixed;

    z-index: 490;

    right: 20px;

    bottom: 145px;

    width: 42px;

    height: 42px;

    display: grid;

    place-items: center;

    opacity: 0;

    visibility: hidden;

    color: #fff;

    background: #20272c;

    border: 0;

    border-radius: 50%;

    transition: var(--transition);

}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

}


.back-to-top:hover {

    color: #111;

    background: var(--gold);

}


/* =========================================================
   MOBILE BOTTOM BAR
   ========================================================= */

.mobile-bottom-bar {

    display: none;

}


/* =========================================================
   ALERT
   ========================================================= */

.alert {

    width: min(
        var(--container),
        calc(100% - 40px)
    );

    margin: 20px auto;

    padding: 14px 18px;

    border-radius: 9px;

    font-size: 12px;

    font-weight: 700;

}


.alert.success {

    color: #146c3a;

    background: #e9f8ef;

}


.alert.error {

    color: #a21d2a;

    background: #fdecee;

}


/* =========================================================
   REVEAL ANIMATION
   ========================================================= */

.reveal {

    opacity: 0;

    transform:
        translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;

}


.reveal.visible {

    opacity: 1;

    transform:
        translateY(0);

}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {

    position: fixed;

    z-index: 9999;

    inset: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 30px;

    background:
        rgba(0,0,0,.94);

}


.lightbox img {

    max-width: 92vw;

    max-height: 88vh;

    object-fit: contain;

    border-radius: 8px;

}


.lightbox button {

    position: absolute;

    top: 18px;

    right: 25px;

    width: 45px;

    height: 45px;

    border: 0;

    background: rgba(255,255,255,.10);

    color: #fff;

    border-radius: 50%;

    font-size: 30px;

    line-height: 1;

}


/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 1100px) {


    .nav-menu {

        gap: 15px;

    }


    .nav-menu > a,
    .nav-dropdown > a {

        font-size: 9px;

    }


    .footer-grid {

        grid-template-columns:
            repeat(3,1fr);

    }


    .footer-company {

        grid-column: span 3;

    }


}


/* =========================================================
   RESPONSIVE - 900
   ========================================================= */

@media (max-width: 900px) {


    .top-bar {

        display: none;

    }


    .site-header {

        top: 0;

    }


    .nav {

        min-height: 76px;

    }


    .nav-toggle {

        display: block;

    }


    .nav-menu {

        position: fixed;

        top: 76px;

        right: 15px;

        left: 15px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        max-height: calc(100vh - 95px);

        padding: 15px;

        overflow-y: auto;

        opacity: 0;

        visibility: hidden;

        transform:
            translateY(-10px);

        background:
            rgba(10,13,15,.98);

        border:
            1px solid #2b3338;

        border-radius: 15px;

        box-shadow:
            0 30px 70px rgba(0,0,0,.45);

        transition: var(--transition);

    }


    .nav-menu.open {

        opacity: 1;

        visibility: visible;

        transform:
            translateY(0);

    }


    .nav-menu > a,
    .nav-dropdown > a {

        min-height: 50px;

        padding: 0 12px;

        font-size: 11px;

    }


    .nav-menu > a::after,
    .nav-dropdown > a::after {

        bottom: 7px;

    }


    .nav-dropdown {

        width: 100%;

    }


    .nav-dropdown > a {

        justify-content: space-between;

    }


    .dropdown-menu {

        position: static;

        width: 100%;

        max-height: none;

        padding: 8px;

        opacity: 1;

        visibility: visible;

        transform: none;

        display: none;

        border-radius: 10px;

        box-shadow: none;

    }


    .nav-dropdown.open .dropdown-menu {

        display: block;

    }


    .nav-menu .nav-cta {

        justify-content: center;

        min-height: 46px;

        margin-top: 8px;

    }


    .hero {

        min-height: 720px;

        height: auto;

    }


    .two-col {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .video-wrap {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .enquiry-wrap {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .trust-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .trust-grid > div:nth-child(2) {

        border-right: 0;

    }


    .card-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .testimonial-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .footer-cta-inner {

        padding: 55px 0;

        flex-direction: column;

        align-items: flex-start;

    }


}


/* =========================================================
   RESPONSIVE - 700
   ========================================================= */

@media (max-width: 700px) {


    .container {

        width:
            calc(100% - 28px);

    }


    .brand img {

        width: 43px;

        height: 43px;

    }


    .brand-text {

        font-size: 13px;

    }


    .hero {

        min-height: 680px;

    }


    .hero h1 {

        font-size: 48px;

        letter-spacing: -1px;

    }


    .hero p {

        font-size: 13px;

    }


    .hero-actions {

        flex-direction: column;

        align-items: stretch;

        max-width: 300px;

    }


    .hero-mini {

        display: grid;

        gap: 9px;

    }


    .section {

        padding: 75px 0;

    }


    .section-head {

        display: block;

    }


    .section-head .text-link {

        margin-top: 15px;

    }


    .card-grid {

        grid-template-columns: 1fr;

    }


    .testimonial-grid {

        grid-template-columns: 1fr;

    }


    .gallery-grid {

        grid-template-columns:
            repeat(2,1fr);

        grid-auto-rows: 220px;

    }


    .gallery-item:first-child {

        grid-column: span 2;

    }


    .feature-panel {

        grid-template-columns: 1fr;

    }


    .footer-grid {

        grid-template-columns:
            repeat(2,1fr);

        gap: 35px 25px;

    }


    .footer-company {

        grid-column: span 2;

    }


    .footer-contact {

        grid-column: span 2;

    }


    .footer-bottom-inner {

        min-height: auto;

        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 8px;

    }


    .footer-cta-actions {

        width: 100%;

        flex-direction: column;

        max-width: 300px;

    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .floating-wa {

        right: 12px;

        bottom: 75px;

    }


    .floating-call {

        right: 12px;

        bottom: 130px;

    }


    .back-to-top {

        right: 12px;

        bottom: 185px;

    }


}


/* =========================================================
   RESPONSIVE - 500
   ========================================================= */

@media (max-width: 500px) {


    body {

        padding-bottom: 62px;

    }


    .top-bar {

        display: none;

    }


    .hero {

        min-height: 650px;

    }


    .hero-content {

        padding-top: 55px;

    }


    .hero h1 {

        font-size: 42px;

    }


    .hero-mini {

        margin-top: 22px;

    }


    .trust-grid {

        grid-template-columns: 1fr;

    }


    .trust-grid > div {

        border-right: 0;

        border-bottom:
            1px solid var(--border);

    }


    .trust-grid > div:last-child {

        border-bottom: 0;

    }


    .image-card img {

        height: 360px;

    }


    .stats {

        gap: 25px;

    }


    .gallery-grid {

        grid-template-columns: 1fr;

        grid-auto-rows: 250px;

    }


    .gallery-item:first-child {

        grid-column: auto;

    }


    .footer-grid {

        grid-template-columns: 1fr;

    }


    .footer-company,
    .footer-contact {

        grid-column: auto;

    }


    .footer-bottom-links {

        flex-wrap: wrap;

    }


    .footer-bottom-inner > div:last-child {

        display: none;

    }


    .floating-wa {

        display: none;

    }


    .floating-call {

        display: none;

    }


    .back-to-top {

        right: 12px;

        bottom: 75px;

    }


    .mobile-bottom-bar {

        position: fixed;

        z-index: 1000;

        right: 0;

        bottom: 0;

        left: 0;

        height: 62px;

        display: grid;

        grid-template-columns:
            repeat(3,1fr);

        background:
            rgba(8,10,12,.98);

        border-top:
            1px solid #2a3034;

        box-shadow:
            0 -10px 30px rgba(0,0,0,.18);

    }


    .mobile-bottom-bar a {

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 3px;

        color: #aeb5b9;

        font-size: 8px;

        font-weight: 800;

        text-transform: uppercase;

    }


    .mobile-bottom-bar i {

        font-size: 17px;

        color: var(--gold);

    }


    .mobile-bottom-bar .mobile-whatsapp i {

        color: var(--green);

    }


}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {


    html {

        scroll-behavior: auto;

    }


    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: .01ms !important;

    }

}