@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&display=swap');

:root {
    --ink: #08111f;
    --navy: #101c2e;
    --deep: #050a12;
    --gold: #c8a44d;
    --gold-light: #e6c978;
    --cream: #f5f3ed;
    --white: #fff;
    --muted: #7b8798;
    --line: #dfe3e7;
    --shadow: 0 24px 70px #08111f14;
    --ease: cubic-bezier(.2, .75, .2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: Tajawal, Arial, sans-serif;
    line-height: 1.6;
}

body.modal-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
    border-left: 1px solid var(--line);
}

::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 6px;
    border: 3px solid var(--cream);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes imageLoading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@keyframes handlePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 164, 77, 0.7);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(200, 164, 77, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(200, 164, 77, 0);
    }
}

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--deep);
    z-index: 100;
    display: grid;
    place-content: center;
    justify-items: center;
    color: #fff;
    gap: 7px;
    transition: .5s var(--ease);
}

.preloader.is-done {
    opacity: 0;
    visibility: hidden;
}

.loader-mark,
.brand-symbol {
    display: grid;
    place-items: center;
    background: var(--gold);
    color: var(--deep);
    transform: rotate(45deg);
    border-radius: 8px;
}

.loader-mark {
    width: 58px;
    height: 58px;
    margin-bottom: 15px;
}

.loader-mark i,
.brand-symbol i {
    transform: rotate(-45deg);
}

.preloader strong {
    font-size: 18px;
}

.preloader span {
    color: #ffffff9c;
    font-size: 11px;
}

/* Header & Nav */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 30;
    padding: 19px 0;
    transition: .35s var(--ease);
    color: #fff;
}

.site-header.scrolled {
    padding: 11px 0;
    background: #08111feF;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px #00000020;
}

.nav-wrap {
    display: flex;
    align-items: center;
    gap: 35px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    white-space: nowrap;
}

.brand-symbol {
    width: 38px;
    height: 38px;
    box-shadow: 5px 5px #c8a44d30;
}

.brand b,
.brand small {
    display: block;
}

.brand b {
    font-size: 15px;
}

.brand small {
    color: #ffffff8f;
    font-size: 10px;
    margin-top: 1px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-right: auto;
}

.main-nav a {
    position: relative;
    color: #ffffffaf;
    font-size: 12px;
    transition: .2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
}

.main-nav a.active:after {
    position: absolute;
    right: 0;
    bottom: -9px;
    width: 18px;
    height: 2px;
    background: var(--gold);
    content: '';
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 7px;
    direction: ltr;
    color: #ffffffba;
    font: 12px Arial;
}

.nav-phone i {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    background: none;
    color: #fff;
    font-size: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 4px;
    padding: 13px 19px;
    font-size: 12px;
    font-weight: 700;
    transition: .25s var(--ease);
}

.btn-gold {
    background: var(--gold);
    color: var(--deep);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-gold:hover::after {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(200, 164, 77, 0.35);
}

.btn-outline {
    border: 1px solid #ffffff54;
    color: #fff;
    background: #ffffff08;
}

.btn-outline:hover {
    border-color: var(--gold);
    background: #c8a44d16;
    transform: translateY(-3px);
    box-shadow: 0 13px 28px #00000022;
}

.btn-lg {
    padding: 16px 24px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 780px;
    padding: 170px 0 0;
    overflow: hidden;
    background: var(--deep);
    color: #fff;
}

.hero:before {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #050a12 18%, #08111fc9 58%, #08111f35), url('../images/hero.png') center/cover;
    opacity: .65;
    content: '';
}

.hero-glow {
    position: absolute;
    top: -25%;
    left: 12%;
    width: 55vw;
    height: 70vw;
    max-height: 700px;
    background: radial-gradient(ellipse, #c8a44d1c, transparent 65%);
    filter: blur(8px);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 70px;
    min-height: 510px;
}

.hero-copy {
    max-width: 580px;
}

.eyebrow,
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;
}

.eyebrow i {
    font-size: 10px;
}

.eyebrow b {
    font-size: 13px;
}

.hero h1 {
    margin: 23px 0 20px;
    font-size: clamp(45px, 5.6vw, 78px);
    line-height: 1.08;
    letter-spacing: -.06em;
}

.hero h1 em,
h2 em {
    color: var(--gold-light);
    font-style: normal;
    font-weight: 400;
}

.hero p {
    max-width: 520px;
    margin: 0;
    color: #ffffffad;
    font-size: 15px;
    line-height: 2;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-right: 8px;
    color: #fff;
    font-size: 12px;
}

.hero-link i,
.text-arrow i {
    transition: .2s;
}

.hero-link:hover i,
.text-arrow:hover i {
    transform: translateX(-5px);
}

.hero-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 42px;
    color: #ffffff86;
    font-size: 10px;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 5px #c8a44d22;
}

.hero-media {
    position: relative;
    min-height: 510px;
}

.hero-image-wrap {
    position: absolute;
    inset: 0 0 18px 22px;
    overflow: hidden;
    border: 1px solid #ffffff26;
    border-radius: 120px 18px 18px 18px;
    box-shadow: var(--shadow);
    transform: rotate(1deg);
    background: linear-gradient(90deg, var(--navy) 0%, #172740 50%, var(--navy) 100%);
    background-size: 200% 100%;
    animation: imageLoading 2s infinite linear;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 35%, #050a12dc);
}

.image-label {
    position: absolute;
    right: 31px;
    bottom: 29px;
}

.image-label>* {
    display: block;
}

.image-label small {
    color: var(--gold-light);
    font-size: 10px;
}

.image-label strong {
    margin: 3px 0;
    font-size: 22px;
}

.image-label span {
    color: #fff9;
    font-size: 11px;
}

.hero-float {
    position: absolute;
    right: -30px;
    bottom: 53px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 18px;
    color: var(--ink);
    background: #fff;
    border-right: 3px solid var(--gold);
    box-shadow: 0 18px 40px #0000002e;
}

.hero-float>i {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    color: var(--deep);
    background: var(--gold);
    border-radius: 50%;
}

.hero-float b,
.hero-float small {
    display: block;
}

.hero-float b {
    font-size: 12px;
}

.hero-float small {
    color: var(--muted);
    font-size: 10px;
}

.hero-orbit {
    position: absolute;
    top: 20px;
    left: -43px;
    display: grid;
    place-items: center;
    width: 95px;
    height: 95px;
    border: 1px solid #c8a44d70;
    border-radius: 50%;
    animation: spin 22s linear infinite;
}

.hero-orbit:before {
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    content: '';
}

.hero-orbit span {
    position: absolute;
    color: #fff9;
    font-size: 8px;
}

.hero-orbit span:nth-child(1) {
    top: 11px;
}

.hero-orbit span:nth-child(2) {
    bottom: 13px;
    right: 4px;
}

.hero-orbit span:nth-child(3) {
    bottom: 13px;
    left: 3px;
}

.hero-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-top: 1px solid #ffffff1f;
    color: #ffffff76;
    font-size: 10px;
}

.hero-bottom a {
    display: flex;
    gap: 8px;
    color: var(--gold-light);
}

/* Stats */
.stats {
    background: var(--navy);
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 30px 27px;
    border-left: 1px solid #ffffff14;
}

.stat:first-child {
    padding-right: 0;
}

.stat-icon {
    color: var(--gold);
    font-size: 19px;
}

.stat strong {
    display: block;
    direction: ltr;
    text-align: right;
    font: 800 32px/1 Arial;
}

.stat strong small {
    color: var(--gold);
    font-size: 19px;
}

.stat span {
    display: block;
    color: #ffffff85;
    font-size: 10px;
    margin-top: 4px;
}

/* Sections General */
.section {
    padding: 115px 0;
}

.intro-section {
    background: #fff;
}

.about-grid,
.compare-grid,
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 95px;
}

.section-copy {
    max-width: 510px;
}

.section-copy h2,
.section-head h2,
.compare-copy h2,
.contact-intro h2 {
    margin: 12px 0 17px;
    font-size: clamp(36px, 4.4vw, 58px);
    line-height: 1.12;
    letter-spacing: -.055em;
}

.section-copy p,
.section-head>p,
.compare-copy p {
    color: var(--muted);
    font-size: 14px;
    line-height: 2.05;
}

.text-arrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
}

.text-arrow i {
    color: var(--gold);
}

.about-visual {
    position: relative;
    max-width: 470px;
    justify-self: end;
}

.about-image {
    position: relative;
    height: 530px;
    overflow: hidden;
    border-radius: 7px 100px 7px 7px;
    box-shadow: var(--shadow);
    background: linear-gradient(90deg, var(--navy) 0%, #172740 50%, var(--navy) 100%);
    background-size: 200% 100%;
    animation: imageLoading 2s infinite linear;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image:after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #050a126e, transparent 55%);
    content: '';
}

.vertical-tag {
    position: absolute;
    right: 22px;
    bottom: 23px;
    z-index: 1;
    color: #fff;
    font-size: 11px;
    writing-mode: vertical-rl;
    letter-spacing: .2em;
}

.about-stamp {
    position: absolute;
    left: -35px;
    bottom: 36px;
    display: grid;
    place-items: center;
    width: 120px;
    height: 120px;
    border: 8px solid var(--cream);
    color: var(--deep);
    background: var(--gold);
    border-radius: 50%;
    transform: rotate(-10deg);
}

.about-stamp i {
    font-size: 21px;
}

.about-stamp b {
    font-size: 12px;
    line-height: 1.3;
    text-align: center;
}

/* Values */
.values-section {
    background: var(--cream);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 43px;
}

.section-head>p {
    max-width: 315px;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.value-card {
    min-height: 210px;
    padding: 28px;
    background: var(--cream);
    transition: .3s;
}

.value-card:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    z-index: 1;
}

.value-card i {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    margin-bottom: 25px;
    color: var(--gold);
    border: 1px solid #c8a44d70;
    border-radius: 50%;
}

.value-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
}

.value-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.8;
}

/* Services */
.services-section {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.service-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
    border-radius: 8px 40px 8px 8px;
    transition: .4s var(--ease);
    background: linear-gradient(90deg, var(--navy) 0%, #172740 50%, var(--navy) 100%);
    background-size: 200% 100%;
    animation: imageLoading 2s infinite linear;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px #08111f26;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .45;
    transition: all 0.6s var(--ease);
    filter: grayscale(40%) contrast(1.1);
}

.service-card:hover img {
    transform: scale(1.08);
    opacity: .8;
    filter: grayscale(0%) contrast(1);
}

.service-card:after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #050a12f2, #101c2e20 70%);
    content: '';
}

.service-card-content {
    position: absolute;
    inset: auto 21px 21px;
    z-index: 1;
}

.service-number {
    position: absolute;
    top: 20px;
    right: 21px;
    z-index: 1;
    color: #ffffff9c;
    font: 12px Arial;
}

.service-icon {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    margin-bottom: 17px;
    color: var(--deep);
    background: var(--gold);
    border-radius: 50%;
    transition: .3s;
    box-shadow: 0 8px 20px rgba(200, 164, 77, 0.4);
}

.service-card:hover .service-icon {
    transform: rotate(-12deg) scale(1.08);
}

.service-card h3 {
    margin: 0 0 7px;
    font-size: 18px;
}

.service-card p {
    min-height: 60px;
    margin: 0;
    color: #ffffffad;
    font-size: 11px;
    line-height: 1.8;
}

.service-card button {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 13px;
    color: var(--gold-light);
    background: none;
    font-size: 11px;
    font-weight: 700;
}

/* ---------------------------------- */
/* Projects Section (Bento Grid)      */
/* ---------------------------------- */
.projects-section {
    background: var(--cream);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 20px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    color: #fff;
    cursor: pointer;
    background: var(--navy);
    text-align: right;
    box-shadow: var(--shadow);
}

.project-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.project-card:nth-child(4) {
    grid-column: span 2;
}

.project-card:nth-child(6) {
    grid-column: span 3;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-card:after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #050a12f0 0%, #050a1260 40%, transparent 100%);
    content: '';
    pointer-events: none;
    z-index: 1;
}

.project-info {
    position: absolute;
    background: rgba(8, 17, 31, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 18px;
    border-radius: 12px;
    bottom: 16px;
    left: 16px;
    right: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transform: translateY(12px);
    transition: all 0.4s var(--ease);
    z-index: 2;
}

.project-card:hover .project-info {
    transform: translateY(0);
    background: rgba(8, 17, 31, 0.85);
    border-color: rgba(200, 164, 77, 0.5);
}

.project-info small {
    display: inline-block;
    padding: 4px 10px;
    color: var(--deep);
    background: var(--gold);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    margin-bottom: 8px;
}

.project-info h3 {
    margin: 0 0 5px;
    font-size: 18px;
}

.project-info p {
    margin: 0;
    color: #ffffffb3;
    font-size: 11px;
    line-height: 1.6;
}

.project-arrow {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--deep);
    background: #fff;
    border-radius: 50%;
    transition: 0.3s var(--ease);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.project-card:hover .project-arrow {
    background: var(--gold);
    transform: rotate(-45deg) scale(1.1);
}

/* Compare Gallery */
.compare-section {
    background: #fff;
}

.compare-copy {
    max-width: 400px;
}

.compare-note {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 17px;
    color: var(--gold);
    font-size: 11px;
}

.before-after {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: var(--shadow);
    background: #222;
    isolation: isolate;
}

.before-after>img,
.after-layer,
.after-layer img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-layer {
    z-index: 1;
    width: 52%;
    overflow: hidden;
}

.before-after:after {
    position: absolute;
    inset: 0;
    background: #050a1240;
    content: '';
}

.before-after input {
    position: absolute;
    inset: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    touch-action: pan-y;
}

.compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 52%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 2px;
    background: #fff;
    pointer-events: none;
}

.compare-handle i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--deep);
    background: var(--gold);
    border-radius: 50%;
    font-size: 13px;
    box-shadow: 0 0 0 0 rgba(200, 164, 77, 0.7);
    animation: handlePulse 2s infinite;
}

.compare-label {
    position: absolute;
    top: 17px;
    z-index: 3;
    padding: 5px 10px;
    color: #fff;
    background: #050a12bb;
    font-size: 10px;
}

.before-label {
    right: 17px;
}

.after-label {
    left: 17px;
}

/* Video */
.video-section {
    background: var(--cream);
}

.video-card {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    min-height: 440px;
    overflow: hidden;
    background: var(--navy);
    color: #fff;
    box-shadow: var(--shadow);
}

.video-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px;
}

.video-copy h2 {
    margin: 13px 0;
    font-size: clamp(31px, 3.3vw, 47px);
    line-height: 1.18;
    letter-spacing: -.05em;
}

.video-copy p {
    max-width: 290px;
    color: #ffffff99;
    font-size: 12px;
    line-height: 1.9;
    margin: 0 0 25px;
}

.video-poster {
    position: relative;
    min-height: 440px;
    padding: 0;
    overflow: hidden;
    background: #222;
    text-align: right;
}

.video-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s;
}

.video-poster:hover img {
    transform: scale(1.05);
}

.poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #101c2ee8, transparent 65%);
}

.play-button {
    position: absolute;
    top: 50%;
    right: 50%;
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    color: var(--deep);
    background: var(--gold);
    border: 7px solid #ffffff3b;
    border-radius: 50%;
    transform: translate(50%, -50%);
    font-size: 20px;
    transition: .25s;
}

.video-poster:hover .play-button {
    transform: translate(50%, -50%) scale(1.1);
}

.video-poster>b {
    position: absolute;
    right: 27px;
    bottom: 25px;
    color: #fff;
    font-size: 12px;
}

.video-poster>b i {
    margin-right: 8px;
    color: var(--gold);
}

/* Process */
.process-section {
    background: #fff;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-line {
    height: 1px;
    margin: 22px 9% -58px;
    background: #c8a44d55;
}

.process-line span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold);
    transition: 1.5s;
}

.process-section.in-view .process-line span {
    width: 100%;
}

.process-step {
    position: relative;
    padding: 25px 24px 0;
    border-top: 3px solid var(--line);
}

.process-step:before {
    position: absolute;
    top: -8px;
    right: 0;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border: 3px solid #fff;
    border-radius: 50%;
    content: '';
}

.process-step b {
    color: #c8a44d;
    direction: ltr;
    font: 12px Arial;
}

.process-step i {
    display: block;
    margin: 25px 0 18px;
    color: var(--gold);
    font-size: 22px;
}

.process-step h3 {
    margin: 0 0 7px;
    font-size: 16px;
}

.process-step p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.8;
}

/* TikTok & FAQ */
.tiktok-section {
    padding-top: 0;
    background: #fff;
}

.tiktok-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 38px 48px;
    background: var(--deep);
    color: #fff;
}

.tiktok-icon {
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 26px;
}

.tiktok-card h2 {
    margin: 6px 0;
    font-size: 26px;
}

.tiktok-card p {
    margin: 0;
    color: #fff9;
    font-size: 12px;
}

.tiktok-card .btn {
    margin-right: auto;
}

.faq-section {
    background: var(--cream);
}

.faq-list {
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    color: var(--ink);
    background: none;
    text-align: right;
    font-weight: 700;
    font-size: 14px;
}

.faq-question i {
    color: var(--gold);
    transition: .3s;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: .35s;
}

.faq-answer p {
    overflow: hidden;
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.9;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
    padding: 0 0 20px;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

/* Contact Form */
.contact-section {
    padding-top: 0;
    background: var(--cream);
}

.contact-wrap {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    padding: 65px 75px;
    background: var(--navy);
    color: #fff;
}

.contact-intro h2 {
    font-size: 48px;
}

.contact-intro p {
    max-width: 350px;
    color: #ffffff9c;
    font-size: 13px;
    line-height: 1.9;
}

.direct-contact {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.direct-contact a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px;
    border: 1px solid #ffffff24;
    color: #fff;
}

.direct-contact i {
    color: var(--gold);
    font-size: 18px;
}

.direct-contact span,
.direct-contact small {
    display: block;
}

.direct-contact span {
    font-size: 10px;
}

.direct-contact small {
    color: #ffffff9c;
    font: 11px Arial;
    margin-top: 3px;
    direction: ltr;
}

.quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    align-content: start;
    padding: 27px;
    background: #fff;
    color: var(--ink);
}

.quote-form label {
    display: grid;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 12px 13px;
    outline: 0;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: #fff;
    color: var(--ink);
    font-size: 12px;
    transition: .2s;
}

.quote-form input:focus-visible,
.quote-form select:focus-visible,
.quote-form textarea:focus-visible {
    border-color: var(--gold);
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    box-shadow: 0 0 0 3px #c8a44d18;
}

.quote-form textarea {
    resize: vertical;
}

.full {
    grid-column: span 2;
}

.form-hint {
    color: var(--muted);
    font-size: 10px;
    font-weight: 400;
}

/* Footer & Floating UI */
footer {
    background: var(--deep);
    color: #fff;
    padding: 55px 0 18px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr .8fr;
    gap: 45px;
    padding-bottom: 45px;
}

.footer-brand {
    margin-bottom: 17px;
}

.footer-grid>div:first-child p {
    max-width: 280px;
    color: #ffffff7a;
    font-size: 11px;
    line-height: 1.9;
}

.footer-grid h3 {
    margin: 7px 0 15px;
    color: var(--gold-light);
    font-size: 12px;
}

.footer-grid>div:not(:first-child)>a {
    display: block;
    margin: 8px 0;
    color: #ffffffa6;
    font-size: 11px;
}

.footer-grid>div:not(:first-child)>a:hover {
    color: #fff;
}

.footer-grid a i {
    width: 18px;
    color: var(--gold);
}

.footer-location {
    display: grid;
    justify-items: start;
    align-content: start;
    gap: 3px;
}

.footer-mark {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin-bottom: 7px;
    color: var(--gold);
    border: 1px solid #c8a44d70;
    border-radius: 50%;
}

.footer-location>b {
    font-size: 16px;
}

.footer-location small {
    color: #ffffff7a;
    font-size: 10px;
}

.footer-location .btn {
    margin-top: 13px;
    padding: 9px 13px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid #ffffff17;
    color: #ffffff52;
    font-size: 10px;
}

.floating-tools {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 25;
    display: grid;
    gap: 8px;
}

.float {
    position: relative;
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    box-shadow: 0 8px 24px #00000038;
    transition: .25s;
}

.float:hover {
    transform: scale(1.1);
}

.float span {
    position: absolute;
    right: 53px;
    padding: 5px 8px;
    color: #fff;
    background: var(--deep);
    border-radius: 2px;
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    font-size: 10px;
    transition: .2s;
}

.float:hover span {
    opacity: 1;
}

.whatsapp {
    background: #1fba63;
}

.call {
    background: var(--gold);
    color: var(--deep);
}

.tiktok {
    background: #101010;
}

.back-top {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 25;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    color: var(--deep);
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s;
}

.back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.toast {
    position: fixed;
    right: 50%;
    bottom: 25px;
    z-index: 70;
    padding: 12px 18px;
    color: #fff;
    background: var(--deep);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(50%, 10px);
    transition: .3s;
    font-size: 12px;
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(50%, 0);
}

/* Modals */
.modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 20px;
    background: #050a12dd;
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: min(850px, 100%);
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    box-shadow: var(--shadow);
}

.modal-close {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: #fff;
    background: #050a12b8;
    border-radius: 50%;
}

.project-modal {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    background: var(--navy);
    color: #fff;
}

.project-modal>img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
}

.modal-copy {
    align-self: center;
    padding: 34px;
}

.modal-copy>span {
    color: var(--gold-light);
    font-size: 11px;
}

.modal-copy h2 {
    margin: 10px 0;
    font-size: 27px;
}

.modal-copy p {
    color: #ffffffa6;
    font-size: 12px;
    line-height: 1.9;
}

.modal-copy .btn {
    margin-top: 15px;
}

/* Modal Navigation Buttons */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(8, 17, 31, 0.7);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    z-index: 5;
    cursor: pointer;
    font-size: 16px;
}

.modal-nav:hover {
    background: var(--gold);
    color: var(--deep);
}

.prev-btn {
    right: 15px;
}

.next-btn {
    left: 15px;
}

.video-modal {
    background: var(--navy);
    color: #fff;
}

.video-modal video {
    display: block;
    width: 100%;
    max-height: 65vh;
    background: #000;
}

.video-modal .modal-copy {
    padding: 20px 25px;
}

.video-modal .modal-copy h2 {
    margin: 0;
    font-size: 21px;
}

.video-modal .modal-copy p {
    margin: 4px 0 0;
}

/* Animations Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal-right {
    transform: translateX(25px);
}

.reveal.in-view {
    opacity: 1;
    transform: none;
}

.reveal:nth-child(2) {
    transition-delay: .08s;
}

.reveal:nth-child(3) {
    transition-delay: .16s;
}

/* ---------------------------------- */
/* Responsive Queries                 */
/* ---------------------------------- */
@media (max-width: 1050px) {
    .main-nav {
        gap: 13px;
    }

    .nav-phone {
        display: none;
    }

    .hero-grid {
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrap {
        padding: 48px;
        gap: 40px;
    }

    .footer-grid {
        gap: 25px;
    }
}

@media (max-width: 760px) {
    .container {
        width: calc(100% - 32px);
    }

    .site-header {
        padding: 13px 0;
    }

    .nav-wrap {
        gap: 12px;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 16px;
        left: 16px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 8px;
        background: #08111ff5;
        border: 1px solid #ffffff1a;
        box-shadow: var(--shadow);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 14px;
        color: #fff;
        border-bottom: 1px solid #ffffff10;
    }

    .main-nav a:last-child {
        border: 0;
    }

    .main-nav a.active:after {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 900px;
        padding-top: 116px;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: stretch;
    }

    .hero h1 {
        font-size: clamp(43px, 13vw, 64px);
    }

    .hero p {
        font-size: 13px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn,
    .hero-link {
        justify-content: center;
        width: max-content;
    }

    .hero-media {
        min-height: 390px;
    }

    .hero-image-wrap {
        inset: 0 0 15px 12px;
        border-radius: 70px 12px 12px 12px;
    }

    .hero-float {
        right: -3px;
        bottom: 35px;
    }

    .hero-orbit {
        left: -4px;
        top: 5px;
    }

    .hero-bottom {
        gap: 15px;
    }

    .hero-bottom span {
        max-width: 180px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat,
    .stat:first-child {
        padding: 21px 12px;
    }

    .stat strong {
        font-size: 26px;
    }

    .stat-icon {
        font-size: 15px;
    }

    .section {
        padding: 78px 0;
    }

    .about-grid,
    .compare-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-visual {
        width: calc(100% - 15px);
        justify-self: start;
    }

    .about-image {
        height: 390px;
        border-radius: 7px 68px 7px 7px;
    }

    .about-stamp {
        left: -16px;
        width: 95px;
        height: 95px;
    }

    .about-stamp i {
        font-size: 17px;
    }

    .about-stamp b {
        font-size: 10px;
    }

    .section-head {
        align-items: start;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 28px;
    }

    .section-head h2,
    .section-copy h2,
    .compare-copy h2 {
        font-size: 39px;
    }

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

    .value-card {
        min-height: 190px;
        padding: 20px 16px;
    }

    .value-card i {
        margin-bottom: 17px;
    }

    .value-card h3 {
        font-size: 14px;
    }

    .value-card p {
        font-size: 11px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .service-card {
        min-height: 290px;
    }

    .service-card p {
        font-size: 10px;
    }

    /* Projects Mobile Fix */
    .projects-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .project-card,
    .project-card:nth-child(n) {
        grid-column: 1 / -1;
        grid-row: auto;
        aspect-ratio: auto;
    }

    .project-info {
        transform: translateY(0);
        background: rgba(8, 17, 31, 0.75);
    }

    .before-after {
        height: 390px;
    }

    .video-card {
        display: flex;
        flex-direction: column;
    }

    .video-copy {
        padding: 38px 27px;
    }

    .video-poster {
        min-height: 280px;
    }

    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px 12px;
    }

    .process-line {
        display: none;
    }

    .process-step {
        padding: 18px 15px 0;
    }

    .process-step i {
        margin: 19px 0 12px;
    }

    .tiktok-card {
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 28px 22px;
    }

    .tiktok-card h2 {
        font-size: 22px;
    }

    .tiktok-card .btn {
        margin-right: 0;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        padding: 34px 20px;
    }

    .contact-intro h2 {
        font-size: 39px;
    }

    .direct-contact {
        flex-wrap: wrap;
    }

    .quote-form {
        padding: 18px 14px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-grid>div:first-child,
    .footer-location {
        grid-column: span 2;
    }

    .footer-bottom {
        display: grid;
        gap: 8px;
    }

    .floating-tools {
        right: 12px;
        bottom: 12px;
    }

    .back-top {
        left: 12px;
        bottom: 12px;
    }

    .float {
        width: 39px;
        height: 39px;
    }

    .float span {
        display: none;
    }

    .project-modal {
        display: block;
    }

    .project-modal>img {
        height: 270px;
        min-height: 0;
    }

    .modal-copy {
        padding: 23px;
    }

    .prev-btn {
        right: 10px;
        top: 30%;
    }

    .next-btn {
        left: 10px;
        top: 30%;
    }

    .toast {
        right: 16px;
        left: 16px;
        transform: translateY(10px);
        text-align: center;
    }

    .toast.show {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *:before,
    *:after {
        scroll-behavior: auto !important;
        animation: none !important;
        transition: none !important;
    }
}   