/* ===========================
   RESET & ROOT
=========================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



:root {
    --cream: #fdfbf7;
    --cream-dark: #f5f0e8;
    --light-bg: #ffffff;
    --soft-blue: #222222;
    --soft-green: #f0f8e8;
    --gold: #d4af37;
    --gold-light: #e8d5b0;
    --gold-dark: #b8921e;
    --navy: #222222;
    --blue: #2d2d2d;
    --sky-blue: #87ceeb;
    --green: #6b9b37;
    --light-green: #a8d08d;
    --dark-text: #1a1a1a;
    --dark: #1a1a1a;
    --dark2: #222222;
    --grey: #5a5a5a;
    --white: #ffffff;
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --font-impact: 'Bebas Neue', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease2: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--dark-text);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Remove custom cursor for cleaner UI */

/* ===========================
   NAVBAR
=========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    padding: 18px 60px;
    transition: background .4s, padding .4s, box-shadow .4s;
    border: none;
    border-radius: 0;
}

.navbar .container-fluid {
    padding: 0;
}

.navbar.scrolled {
    background: rgba(20, 20, 20, .75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 60px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .3);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 6px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.nav-logo-img {
    height: 132px;
    width: 132px;
    object-fit: contain;
    transition: height .4s var(--ease), width .4s var(--ease);
}

.navbar.scrolled .nav-logo-img {
    height: 45px;
    width: 45px;
}

.nav-logo span {
    color: var(--gold);
}

.navbar.scrolled .nav-logo {
    color: var(--white);
}

/* Nav links (desktop) */
.navbar-collapse {
    flex-grow: 0;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links .nav-item {
    list-style: none;
}

.nav-links a,
.nav-links .nav-link {
    color: rgba(255, 255, 255, .85) !important;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0 !important;
    transition: color .3s;
    background: none;
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .nav-links .nav-link {
    color: rgba(255, 255, 255, .85) !important;
}

.nav-links a::after,
.nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .35s var(--ease), left .35s var(--ease);
}

/* Prevent underline effect on dropdown toggles */
.nav-links .dropdown-toggle::after {
    position: static;
    width: 6px;
    height: 6px;
    background: none;
    border: none;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform .3s var(--ease);
    margin-left: 4px;
    display: inline-block;
    content: '';
}

.nav-links a:hover,
.nav-links .nav-link:hover {
    color: var(--gold) !important;
}

.nav-links a:hover::after,
.nav-links .nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* No underline expansion on dropdown toggles */
.nav-links .dropdown-toggle:hover::after {
    width: 6px;
    left: auto;
}

.nav-cta {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 26px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .4s;
    z-index: 1;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateY(100%);
    transition: transform .4s var(--ease);
    z-index: -1;
}

.nav-cta:hover {
    color: var(--dark);
}

.nav-cta:hover::before {
    transform: translateY(0);
}

.nav-cta>* {
    position: relative;
    z-index: 1;
}

/* ===========================
   HERO
=========================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(110deg, rgba(17, 15, 12, .82) 42%, rgba(17, 15, 12, .15) 100%);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-left: 10vw;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeUp 1s .3s var(--ease) forwards;
}

.hero-tag {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-tag::before {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(58px, 8vw, 110px);
    font-weight: 900;
    color: var(--white);
    line-height: .95;
    margin-bottom: 28px;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, .3);
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
    font-weight: 700;
}

.hero-title .outline-text {
    color: var(--white);
    font-style: italic;
    font-weight: 700;
    -webkit-text-stroke: none;
}

.hero-sub {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, .65);
    max-width: 480px;
    line-height: 1.85;
    margin-bottom: 44px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Floating stat cards */
.hero-stats {
    position: absolute;
    right: 8vw;
    bottom: 12vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 1s .7s var(--ease) forwards;
}

.hero-stat-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(201, 169, 110, .2);
    backdrop-filter: blur(10px);
    padding: 18px 24px;
    text-align: right;
}

.hero-stat-card strong {
    font-family: var(--font-impact);
    font-size: 36px;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.hero-stat-card small {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    border: none;
    padding: 16px 38px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .3s, color .3s;
    border-radius: 4px;
    z-index: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: skewX(-20deg);
    transition: left .55s var(--ease);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, .4);
    color: var(--dark);
}

.btn-primary:hover::after {
    left: 130%;
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .35);
    color: var(--white);
    padding: 0 38px;
    height: 50px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color .3s;
    display: inline-block;
    line-height: 50px;
}

.btn-ghost .btn-text-top {
    display: block;
    transition: transform .35s var(--ease);
}

.btn-ghost .btn-text-bot {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform .35s var(--ease);
    color: var(--gold);
}

.btn-ghost:hover .btn-text-top {
    transform: translateY(-100%);
}

.btn-ghost:hover .btn-text-bot {
    transform: translateY(0);
}

.btn-ghost:hover {
    border-color: var(--gold);
}

.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .4);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 56px;
    background: linear-gradient(to bottom, transparent, var(--gold));
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: .3;
        transform: scaleY(.7);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* ===========================
   SCROLL SCENES
=========================== */
.scroll-scenes {
    position: relative;
}

.scene {
    position: relative;
    height: 100vh;
}

.scene-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 0 8vw;
    overflow: hidden;
    perspective: 1400px;
}

.scene:nth-child(even) .scene-sticky {
    flex-direction: row-reverse;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #3a3a3a 100%);
}

.scene:nth-child(odd) .scene-sticky {
    background: var(--cream);
}

/* — Big Bebas scene number watermark — */
.scene-sticky::before {
    content: attr(data-num);
    position: absolute;
    font-family: var(--font-impact);
    font-size: clamp(180px, 22vw, 320px);
    color: rgba(201, 169, 110, .08);
    right: 4vw;
    bottom: -0.1em;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

/* On dark scenes, watermark should be lighter */
.scene:nth-child(even) .scene-sticky::before {
    color: rgba(255, 255, 255, .04);
}

.scene-img-wrap {
    position: relative;
    flex: 0 0 48%;
    max-width: 600px;
    overflow: visible;
    z-index: 1;
}

.scene-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    transform: scale(.88) rotateY(12deg) rotateX(3deg);
    opacity: 0;
    transition: transform 1.1s var(--ease), opacity 1s var(--ease);
    border-radius: 4px;
}

.scene.in-view .scene-img {
    transform: scale(1) rotateY(0) rotateX(0);
    opacity: 1;
}

/* Decorative shapes */
.scene-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}

.scene.in-view .scene-shape {
    opacity: 1;
}

.shape-circle {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: var(--gold);
    opacity: .09 !important;
    top: -50px;
    right: -50px;
    transform: scale(0);
    transition: transform 1.5s var(--ease), opacity 1s;
    z-index: 0;
}

.scene.in-view .shape-circle {
    transform: scale(1);
    opacity: .09 !important;
}

.shape-ring {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    bottom: -30px;
    left: -40px;
    transform: scale(0);
    transition: transform 1.7s var(--ease);
    z-index: 2;
}

.scene.in-view .shape-ring {
    transform: scale(1);
}

.shape-square {
    width: 110px;
    height: 110px;
    border: 2px solid var(--gold);
    top: 20px;
    right: -26px;
    transform: rotate(45deg) scale(0);
    transition: transform 1.5s var(--ease);
    z-index: 2;
}

.scene.in-view .shape-square {
    transform: rotate(45deg) scale(1);
}

/* Scene text */
.scene-text {
    flex: 0 0 42%;
    max-width: 520px;
    z-index: 1;
    transform: translateX(70px);
    opacity: 0;
    transition: transform 1s .25s var(--ease), opacity 1s .25s var(--ease);
}

.scene.in-view .scene-text {
    transform: translateX(0);
    opacity: 1;
}

.scene-text-left {
    transform: translateX(-70px);
}

.scene.in-view .scene-text-left {
    transform: translateX(0);
}

/* Even scenes = dark bg — white text */
.scene:nth-child(even) .scene-text {
    color: var(--white);
}

.scene:nth-child(even) .scene-text h2 {
    color: var(--white);
}

.scene:nth-child(even) .scene-text p {
    color: rgba(255, 255, 255, .65);
}

.scene:nth-child(even) .scene-text .scene-link {
    color: var(--gold-light);
    border-color: var(--gold);
}

.scene:nth-child(even) .scene-text .scene-tags span {
    border-color: rgba(201, 169, 110, .35);
    color: var(--gold-light);
    background: transparent;
}

.scene:nth-child(even) .scene-num {
    color: var(--gold);
    opacity: .22;
}

/* Odd scenes = cream bg — dark text */
.scene:nth-child(odd) .scene-text h2 {
    color: var(--dark);
}

.scene:nth-child(odd) .scene-text p {
    color: var(--grey);
}

.scene:nth-child(odd) .scene-link {
    color: var(--dark);
}

.scene-num {
    font-family: var(--font-impact);
    font-size: 100px;
    color: var(--gold);
    opacity: .2;
    line-height: 1;
    display: block;
    margin-bottom: -28px;
}

.scene-text h2 {
    font-family: var(--font-display);
    font-size: clamp(38px, 4.5vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
    color: var(--dark);
}

.scene-text p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.9;
    color: var(--grey);
    margin-bottom: 30px;
}

.scene-link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 4px;
    transition: color .3s, gap .35s var(--ease);
}

.scene-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform-origin: left;
    transform: scaleX(1);
    transition: transform .4s var(--ease);
}

.scene-link:hover {
    color: var(--gold);
    gap: 20px;
}

.scene-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.scene-tags span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(26, 24, 20, .2);
    padding: 7px 16px;
    border-radius: 30px;
    color: var(--grey);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: color .4s, border-color .4s;
    isolation: isolate;
}

.scene-tags span::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    border-radius: 30px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
    z-index: -1;
}

.scene-tags span:hover {
    color: var(--dark);
    border-color: var(--gold);
}

.scene-tags span:hover::before {
    transform: scaleX(1);
}

/* Tags on dark scenes */
.scene:nth-child(even) .scene-tags span {
    border-color: rgba(201, 169, 110, .35);
    color: rgba(255, 255, 255, .7);
}

.scene:nth-child(even) .scene-tags span:hover {
    color: var(--dark);
}

/* ===========================
   ABOUT SPLIT
=========================== */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    overflow: hidden;
}

.about-left {
    background: linear-gradient(160deg, #111111 0%, #2a2a2a 60%, #3d3d3d 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
}

.about-img-stack {
    position: relative;
    width: 100%;
   max-width: 100%;
}

.about-img-main {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .5);
}

.about-img-small {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 6px solid var(--dark2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.about-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(212, 175, 55, .35);
    border-radius: 4px;
}

.about-badge-num {
    font-family: var(--font-impact);
    font-size: 52px;
    color: var(--navy);
    line-height: 1;
    display: block;
}

.about-badge-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--navy);
}

/* ---- Logo flip card in about-left ---- */
.about-flip-card {
    width: 650px;
    max-width: 95%;
    height: 650px;
    perspective: 1000px;
    cursor: pointer;
    margin: 0 auto;
}

.about-logo-tagline {
    margin-top: 100px;
    font-family: var(--font-body);
    font-size: clamp(14px, 1.8vw, 20px);
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
    text-align: center;
    opacity: 0.9;
    text-transform: uppercase;
}



.about-flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.about-flip-card:hover .about-flip-card-inner {
    transform: rotateY(180deg);
}

.about-flip-front,
.about-flip-back {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
}

.about-flip-front {
    background: transparent;
    flex-direction: column;
    gap: 20px;
}

.about-flip-front img {
    width: 80%;
    max-width: 300px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.about-flip-back {
    transform: rotateY(180deg);
    background: #111;
}

.about-flip-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.about-right {
    background: var(--light-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 70px;
}

.about-heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 62px);
    font-weight: 900;
    line-height: 1.08;
    margin: 16px 0 28px;
    letter-spacing: -1px;
}

.about-heading .emb {
    color: var(--gold);
    
}

.about-right>p {
    font-size: 15px;
    font-weight: 400;
    color: var(--grey);
    line-height: 1.9;
    margin-bottom: 16px;
    max-width: 480px;
}

.about-features {
    margin: 24px 0 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.feat-icon {
    color: var(--gold);
    font-size: 12px;
}

/* ===========================
   PROCESS
=========================== */
/* .process-section {
    background: var(--cream);
    padding: 120px 8vw;
}

.process-track {
    position: relative;
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-line {
    position: absolute;
    left: 28px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.process-step {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 0 0 60px 0;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .7s calc(var(--si) * .12s) var(--ease),
        transform .7s calc(var(--si) * .12s) var(--ease);
}

.process-step.in-view {
    opacity: 1;
    transform: translateX(0);
}

.process-dot {
    flex: 0 0 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--dark);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
    transition: background .3s, box-shadow .3s;
}

.process-step:hover .process-dot {
    background: var(--gold);
    box-shadow: 0 0 0 8px rgba(201, 169, 110, .15);
}

.process-dot span {
    font-family: var(--font-impact);
    font-size: 20px;
    color: var(--gold);
    transition: color .3s;
}

.process-step:hover .process-dot span {
    color: var(--dark);
}

.process-content {
    padding-top: 12px;
}

.process-content h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -.3px;
}

.process-content p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.85;
    max-width: 520px;
} */
/* ===========================
   PROCESS
=========================== */
.process-section {
    background: var(--cream);
    padding: 120px 8vw;
}

.process-track {
    position: relative;
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-line {
    position: absolute;
    left: 28px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.process-step {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 0 0 60px 0;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .7s calc(var(--si) * .12s) var(--ease),
        transform .7s calc(var(--si) * .12s) var(--ease);
}

.process-step.in-view {
    opacity: 1;
    transform: translateX(0);
}

.process-dot {
    flex: 0 0 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--dark);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
    transition: background .3s, box-shadow .3s;
}

.process-step:hover .process-dot {
    background: var(--gold);
    box-shadow: 0 0 0 8px rgba(201, 169, 110, .15);
}

.process-dot span {
    font-family: var(--font-impact);
    font-size: 20px;
    color: var(--gold);
    transition: color .3s;
}

.process-step:hover .process-dot span {
    color: var(--dark);
}

.process-content {
    padding-top: 12px;
}

.process-content h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -.3px;
}

.process-content p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.85;
    max-width: 520px;
}
/* ===========================
   TEAM
=========================== */
.team-section {
    background: linear-gradient(145deg, #2c2c2c 0%, #3d3d3d 40%, #4a4a4a 100%);
    padding: 120px 8vw;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s calc(var(--ti) * .12s) var(--ease),
        transform .7s calc(var(--ti) * .12s) var(--ease);
    position: relative;
}

.team-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Decorative corner accents */
.team-card::before,
.team-card::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--gold);
    border-style: solid;
    opacity: 0;
    transition: opacity .4s, transform .4s;
    z-index: 2;
    pointer-events: none;
}

.team-card::before {
    top: -6px;
    left: -6px;
    border-width: 2px 0 0 2px;
}

.team-card::after {
    bottom: -6px;
    right: -6px;
    border-width: 0 2px 2px 0;
}

.team-card:hover::before,
.team-card:hover::after {
    opacity: 1;
}

.team-card:hover::before {
    transform: translate(-3px, -3px);
}

.team-card:hover::after {
    transform: translate(3px, 3px);
}

.team-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    border-radius: 16px;
    border: 3px solid transparent;
    background-image: linear-gradient(#2c2c2c, #2c2c2c), linear-gradient(135deg, var(--gold), #fff, var(--gold));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4), 0 0 0 4px rgba(201, 169, 110, .08), inset 0 0 30px rgba(0, 0, 0, .2);
    transition: box-shadow .4s var(--ease), transform .4s var(--ease);
}

.team-card:hover .team-img-wrap {
    box-shadow: 0 16px 48px rgba(0, 0, 0, .5), 0 0 0 6px rgba(201, 169, 110, .18), inset 0 0 30px rgba(0, 0, 0, .2);
    transform: translateY(-6px);
}

.team-img-wrap::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--gold), transparent 40%, transparent 60%, var(--gold));
    z-index: -1;
    opacity: 0.5;
    transition: opacity .4s;
}

.team-card:hover .team-img-wrap::before {
    opacity: 1;
}

.team-img-wrap::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid rgba(201, 169, 110, .2);
    border-radius: 12px;
    pointer-events: none;
    transition: border-color .4s;
}

.team-card:hover .team-img-wrap::after {
    border-color: rgba(201, 169, 110, .5);
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
    transition: transform .7s var(--ease), filter .5s;
}

.team-card:hover .team-img-wrap img {
    transform: scale(1.05);
    filter: brightness(.45);
}

.team-hover-info {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 24px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .4s, transform .4s;
}

.team-card:hover .team-hover-info {
    opacity: 1;
    transform: translateY(0);
}

.team-hover-info p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 15px;
    color: var(--cream);
    line-height: 1.5;
    margin-bottom: 16px;
}

.team-socials {
    display: flex;
    gap: 10px;
}

.team-socials span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 4px 10px;
    cursor: pointer;
    transition: background .3s, color .3s;
}

.team-socials span:hover {
    background: var(--gold);
    color: var(--dark);
}

.team-info {
    padding: 18px 4px 0;
}

.team-info h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.team-info span {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 500;
}

/* ===========================
   STATS STRIP
=========================== */
.stats-strip {
    background: linear-gradient(135deg, #0a0a0a 0%, #1c1c1c 50%, #2e2e2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    gap: 0;
    position: relative;
    overflow: hidden;
}

.stats-strip::before {
    content: 'NUMBERS';
    position: absolute;
    font-family: var(--font-impact);
    font-size: 260px;
    color: rgba(255, 255, 255, .025);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    white-space: nowrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    cursor: default;
}

.stat-item:hover .stat-num {
    text-shadow: 0 0 30px rgba(201, 169, 110, .7), 0 0 60px rgba(201, 169, 110, .3);
    transform: scale(1.06);
}

.stat-num {
    font-family: var(--font-impact);
    font-size: clamp(56px, 7vw, 96px);
    color: var(--gold);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    transition: transform .35s var(--ease), text-shadow .35s;
}

.stat-item p {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}

.stat-divider {
    width: 1px;
    height: 90px;
    background: rgba(255, 255, 255, .08);
    margin: 0 20px;
}

/* ===========================
   SERVICES
=========================== */
.services {
    padding: 130px 8vw;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-tag {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 14px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 15px;
    color: var(--grey);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.85;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.service-card {
    background: var(--white);
    padding: 50px 38px;
    position: relative;
    overflow: hidden;
    transform: translateY(50px);
    opacity: 0;
    transition: transform .7s calc(var(--i) * .1s) var(--ease),
        opacity .7s calc(var(--i) * .1s) var(--ease),
        box-shadow .35s;
}

.service-card.in-view {
    transform: translateY(0);
    opacity: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--dark);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: clip-path .55s var(--ease);
    z-index: 0;
}

.service-card:hover::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width .5s var(--ease);
    z-index: 1;
}

.service-card:hover::after {
    width: 100%;
}

.service-card>* {
    position: relative;
    z-index: 1;
}

.service-card:hover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25);
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--cream);
}

.service-card:hover .service-icon {
    transform: scale(1.3) rotate(-10deg);
}

.service-icon {
    font-size: 38px;
    margin-bottom: 22px;
    display: inline-block;
    transition: transform .4s var(--ease2);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    transition: color .4s;
}

.service-card p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.85;
    transition: color .4s;
}

/* ===========================
   MARQUEE TICKER
=========================== */
.marquee-wrap {
    background: var(--gold);
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid var(--gold-dark);
    border-bottom: 1px solid var(--gold-dark);
}

.marquee-track {
    display: flex;
    gap: 0;
    white-space: nowrap;
    animation: marqueeRoll 22s linear infinite;
}

.marquee-track span {
    font-family: var(--font-impact);
    font-size: 18px;
    letter-spacing: 3px;
    color: var(--dark);
    padding: 0 28px;
}

.marquee-track .sep {
    color: rgba(26, 24, 20, .4);
    padding: 0 4px;
}

@keyframes marqueeRoll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===========================
   PORTFOLIO GRID
=========================== */
.portfolio {
    padding: 130px 8vw;
    background: var(--cream);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 320px);
    gap: 16px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item.large {
    grid-column: 1/2;
    grid-row: 1/3;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease), filter .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
    filter: brightness(.5);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.portfolio-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(28, 43, 47, .92) 0%, transparent 55%);
    transform: translateY(100%);
    transition: transform .55s var(--ease);
}

.portfolio-item:hover .portfolio-overlay::before {
    transform: translateY(0);
}

.portfolio-overlay span,
.portfolio-overlay h3 {
    position: relative;
    z-index: 1;
    transform: translateY(20px);
    opacity: 0;
    transition: transform .45s var(--ease), opacity .45s;
}

.portfolio-overlay h3 {
    transition-delay: .07s;
}

.portfolio-item:hover .portfolio-overlay span,
.portfolio-item:hover .portfolio-overlay h3 {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-item::after {
    content: '↗';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0) rotate(-45deg);
    transition: transform .45s var(--ease2);
    z-index: 2;
}

.portfolio-item:hover::after {
    transform: scale(1) rotate(0);
}

.portfolio-overlay span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.portfolio-overlay h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

/* ===========================
   VIDEO TESTIMONIALS
=========================== */
.vtest-section {
    background: var(--cream-dark);
    padding: 100px 8vw;
    position: relative;
    overflow: hidden;
}

.vtest-header {
    text-align: center;
    margin-bottom: 60px;
}

.vtest-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 50px);
    font-weight: 900;
    color: var(--dark);
    margin: 12px 0 16px;
}

.vtest-header p {
    font-size: 15px;
    color: var(--grey);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8;
}

.vtest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.vtest-card {
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1),
                box-shadow 0.35s ease;
    background: #111;
}

.vtest-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}

.vtest-card:focus {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

.vtest-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.vtest-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.vtest-card:hover .vtest-thumb img {
    transform: scale(1.06);
}

.vtest-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    transition: background 0.3s ease;
}

.vtest-card:hover .vtest-overlay {
    background: rgba(0,0,0,0.15);
}

.vtest-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.vtest-play svg {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

.vtest-card:hover .vtest-play {
    transform: scale(1.15);
}

.vtest-label {
    padding: 14px 16px;
    background: #111;
}

.vtest-label .vtest-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vtest-label .vtest-desig {
    font-size: 12px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.5px;
    display: block;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
    font-weight: 600;
    color: #fff;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vtest-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--grey);
}

.vtest-empty i {
    font-size: 52px;
    color: var(--gold);
    opacity: 0.4;
    display: block;
    margin-bottom: 16px;
}

.vtest-empty p {
    font-size: 16px;
}

.vtest-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 99990;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.vtest-modal-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.vtest-modal-box {
    position: relative;
    width: 90vw;
    max-width: 960px;
    transform: scale(0.88) translateY(24px);
    transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
}

.vtest-modal-overlay.is-open .vtest-modal-box {
    transform: scale(1) translateY(0);
}

.vtest-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 40px 120px rgba(0,0,0,0.7);
}

.vtest-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.vtest-modal-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--navy);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: background 0.2s ease, transform 0.25s ease;
    z-index: 2;
    line-height: 1;
}

.vtest-modal-close:hover {
    background: #fff;
    transform: scale(1.12) rotate(90deg);
}

@media (max-width: 768px) {
    .vtest-section { padding: 70px 5vw; }
    .vtest-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 480px) {
    .vtest-grid { grid-template-columns: 1fr; }
    .vtest-modal-close { top: -14px; right: -8px; }
}

/* ===========================
   FAQ SECTION
=========================== */
.faq-section {
    padding: 100px 8vw;
    background: var(--cream);
}

.faq-inner {
    max-width: 860px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 900;
    color: var(--dark);
    margin: 12px 0 14px;
    letter-spacing: -0.5px;
}

.faq-header p {
    font-size: 15px;
    color: var(--grey);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.8;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    transition: color 0.25s ease;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-item.is-open .faq-question {
    color: var(--gold);
}

.faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--gold);
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.faq-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-item.is-open .faq-answer {
    max-height: 600px;
}

.faq-answer-inner {
    padding: 0 0 22px 0;
    font-size: 15px;
    color: var(--grey);
    line-height: 1.85;
}

@media (max-width: 768px) {
    .faq-section { padding: 70px 5vw; }
    .faq-question { font-size: 15px; padding: 18px 0; }
}

/* ===========================
   CONTACT CTA
=========================== */
.contact-cta {
    background: linear-gradient(150deg, #2c2c2c 0%, #3d3d3d 50%, #4a4a4a 100%);
    padding: 130px 8vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-shape {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, .07);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateSlow 25s linear infinite;
}

.cta-bg-shape::before {
    content: '';
    position: absolute;
    inset: 60px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, .05);
    animation: rotateSlow 15s linear infinite reverse;
}

@keyframes rotateSlow {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 620px;
    width: 100%;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900;
    color: var(--white);
    margin: 16px 0 16px;
    letter-spacing: -1px;
    line-height: 1.05;
}

.cta-content p {
    font-size: 15px;
    color: var(--white);
    margin-bottom: 44px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-form input,
.cta-form select {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--white);
    padding: 16px 22px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color .3s, background .3s;
}

.cta-form input:focus,
.cta-form select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, .07);
}

.cta-form select option {
    background: var(--dark);
}

.cta-form input::placeholder {
    color: #ffffff;
}

.cta-form .btn-primary {
    width: 100%;
    padding: 20px;
    font-size: 13px;
}

/* ===========================
   FOOTER
=========================== */

/* Footer CTA Strip */
.footer-cta-strip {
    background: var(--dark);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.footer-cta-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    pointer-events: none;
}

.footer-cta-strip::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    pointer-events: none;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-cta-text h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.footer-cta-text p {
    font-size: 14px;
    color: rgb(255, 255, 255);
    margin: 0;
}

.footer-cta-strip .btn-primary {
    background: var(--dark);
    color: var(--gold);
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
}

.footer-cta-strip .btn-primary:hover {
    background: var(--dark);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .2);
}

/* Footer Main */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 280px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, .08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-main {
    padding: 80px 0 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 150px !important;
    width: auto;
    object-fit: contain;
    transition: transform .3s var(--ease);
}

.footer-logo-link:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-brand-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.9;
    margin-bottom: 24px;
    max-width: 330px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: color .35s, border-color .35s, transform .3s var(--ease);
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    border-radius: 50%;
    transform: scale(0);
    transition: transform .4s var(--ease);
    z-index: 0;
}

.footer-social a i {
    position: relative;
    z-index: 1;
}

.footer-social a:hover {
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-social a:hover::before {
    transform: scale(1);
}

/* Footer Widget */
.footer-widget-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: color .3s, transform .2s, gap .3s var(--ease);
}

.footer-nav a::before {
    content: '›';
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    max-width: 0;
    overflow: hidden;
    transition: max-width .3s var(--ease), margin-right .3s var(--ease);
    margin-right: 0;
}

.footer-nav a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-nav a:hover::before {
    max-width: 14px;
    margin-right: 6px;
}

/* Footer Contact */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item i {
    color: var(--gold);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    line-height: 1.7;
    text-decoration: none;
    transition: color .3s;
}

.footer-contact-item a:hover {
    color: var(--gold);
}

/* Footer Bottom */
.footer-bottom {
    padding: 28px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .3px;
    margin: 0;
}

.footer-bottom p a {
    color: var(--gold);
    text-decoration: none;
    transition: color .3s;
    font-weight: 500;
}

.footer-bottom p a:hover {
    color: var(--white);
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 60px 0 40px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand-desc {
        max-width: 100%;
    }

    .footer-cta-strip {
        padding: 40px 0;
    }
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   HAMBURGER & MOBILE OFFCANVAS
=========================== */
.nav-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1051;
}

.nav-hamburger.d-lg-none {
    display: flex !important;
}

@media (min-width: 992px) {
    .nav-hamburger.d-lg-none {
        display: none !important;
    }
}

.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .3s var(--ease), opacity .3s, background .3s;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Bootstrap Offcanvas override */
.nav-offcanvas {
    background: rgba(10, 10, 10, .97) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, .08) !important;
    max-width: 300px;
    z-index: 1060;
}

.nav-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 20px 24px;
}

.nav-offcanvas .offcanvas-body {
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
}

.nav-links-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
}

.nav-links-mobile .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.nav-links-mobile .nav-link {
    color: rgba(255, 255, 255, .8) !important;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 0 !important;
    transition: color .3s, padding-left .3s;
}

.nav-links-mobile .nav-link:hover {
    color: var(--gold) !important;
    padding-left: 10px !important;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .navbar {
        padding: 20px 30px;
    }

    .navbar.scrolled {
        padding: 14px 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-split {
        grid-template-columns: 1fr;
    }

    .about-left {
        padding: 60px 30px;
    }

    .about-flip-card {
        width: 450px;
        height: 450px;
    }

    .about-right {
        padding: 60px 30px;
    }

    .scene-sticky {
        flex-direction: column !important;
        justify-content: center;
        gap: 30px;
        padding: 100px 5vw;
    }

    .scene-img {
        height: 320px;
    }

    .scene-text {
        flex: unset;
        max-width: 100%;
        transform: none !important;
        opacity: 0;
    }

    .hero-stats {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        padding: 14px 20px;
    }

    .navbar.scrolled {
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {

    .navbar {
        padding: 14px 20px;
    }

    .navbar.scrolled {
        padding: 10px 20px;
    }

    .hero-content {
        margin-left: 6vw;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .portfolio-item.large {
        grid-column: auto;
        grid-row: auto;
    }

    .stats-strip {
        flex-direction: column;
        gap: 40px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .footer-newsletter-form button {
        padding: 14px;
    }

    .social-links {
        justify-content: flex-start;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .process-track {
        padding-left: 20px;
    }
}


/* ===========================
   HERO SLIDER (replaces hero-bg)
=========================== */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 8s ease;
}

.hero-slide.active img {
    transform: scale(1);
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-impact);
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
}

.hero-overlay-grad {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(110deg, rgba(17, 15, 12, .85) 40%, rgba(17, 15, 12, .18) 100%);
}

/* Override old hero-content z-index */
.hero-content {
    z-index: 3;
}

.hero-stats {
    z-index: 3;
}

.scroll-indicator {
    z-index: 3;
}

/* Slide nav arrows + dots */
.hero-slide-nav {
    position: absolute;
    bottom: 48px;
    left: 10vw;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slide-prev,
.slide-next {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--white);
    width: 44px;
    height: 44px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, border-color .3s, transform .2s;
    backdrop-filter: blur(8px);
}

.slide-prev:hover,
.slide-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: scale(1.08);
}

.slide-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slide-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: background .3s, transform .3s, width .35s;
}

.slide-dot.active {
    background: var(--gold);
    transform: scale(1.4);
    width: 22px;
    border-radius: 4px;
}

/* Slide counter + progress */
.hero-slide-counter {
    position: absolute;
    right: 8vw;
    bottom: 58px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-impact);
    font-size: 13px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .4);
}

#slideCurrentNum {
    color: var(--gold);
    font-size: 22px;
}

.slide-progress-bar {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, .12);
    position: relative;
}

.slide-progress-fill {
    height: 100%;
    background: var(--gold);
    transition: width 5s linear;
}

/* ===========================
   GALLERY SECTION
=========================== */
.gallery-section {
    padding: 130px 8vw;
    background: var(--cream);
}

/* Filter tabs */
.gallery-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.gf-btn {
    background: transparent;
    border: 1px solid rgba(26, 24, 20, .18);
    color: var(--grey);
    padding: 9px 24px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 30px;
    transition: background .35s var(--ease), color .35s, border-color .35s, transform .2s;
    position: relative;
    overflow: hidden;
}

.gf-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    border-radius: 30px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
    z-index: -1;
}

.gf-btn span,
.gf-btn {
    position: relative;
    z-index: 1;
}

.gf-btn:hover,
.gf-btn.active {
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.gf-btn.active::before,
.gf-btn:hover::before {
    transform: scaleX(1);
}

/* Masonry grid */
.gallery-grid {
    columns: 4;
    column-gap: 16px;
    transition: all .4s;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    transform: translateY(30px);
    opacity: 0;
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s var(--ease), filter .5s;
}

.gallery-item:hover img {
    transform: scale(1.07);
    filter: brightness(.55);
}

/* Tall/wide modifiers */
.gallery-item.gi-tall img {
    height: 480px;
}

.gallery-item.gi-wide {
    column-span: none;
}

/* Hover overlay */
.gi-hover {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(17, 15, 12, .9) 0%, transparent 55%);
    opacity: 0;
    transition: opacity .4s;
}

.gallery-item:hover .gi-hover {
    opacity: 1;
}

.gi-cat {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
    display: block;
}

.gi-hover h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    transform: translateY(8px);
    opacity: 0;
    transition: transform .4s var(--ease), opacity .4s;
}

.gallery-item:hover .gi-hover h4 {
    transform: translateY(0);
    opacity: 1;
}

.gi-loc {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: 1px;
    transform: translateY(8px);
    opacity: 0;
    transition: transform .4s .07s var(--ease), opacity .4s .07s;
    display: block;
}

.gallery-item:hover .gi-loc {
    transform: translateY(0);
    opacity: 1;
}

.gi-zoom {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    font-size: 22px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0) rotate(-45deg);
    transition: transform .4s var(--ease2);
}

.gallery-item:hover .gi-zoom {
    transform: scale(1) rotate(0);
}

/* Load more */
.gallery-load-more {
    text-align: center;
    margin-top: 60px;
}

/* ===========================
   LIGHTBOX
=========================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
    transition: visibility .4s;
}

.lightbox.open {
    visibility: visible;
    pointer-events: all;
}

.lb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 15, 12, .95);
    opacity: 0;
    transition: opacity .4s;
    backdrop-filter: blur(6px);
}

.lightbox.open .lb-backdrop {
    opacity: 1;
}

.lb-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(.9);
    opacity: 0;
    transition: transform .4s var(--ease), opacity .4s;
}

.lightbox.open .lb-content {
    transform: scale(1);
    opacity: 1;
}

.lb-img-wrap {
    position: relative;
    max-width: 80vw;
    max-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lbImg {
    max-width: 80vw;
    max-height: 75vh;
    object-fit: contain;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .7);
    transition: opacity .3s;
}

.lb-spinner {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(201, 169, 110, .2);
    border-top-color: var(--gold);
    animation: spinLB .8s linear infinite;
    display: none;
}

.lb-spinner.active {
    display: block;
}

@keyframes spinLB {
    to {
        transform: rotate(360deg);
    }
}

.lb-close {
    position: fixed;
    top: 24px;
    right: 32px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--white);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, transform .3s;
}

.lb-close:hover {
    background: var(--gold);
    color: var(--dark);
    transform: rotate(90deg);
}

.lb-prev,
.lb-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    color: var(--white);
    width: 54px;
    height: 54px;
    font-size: 22px;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s, border-color .3s;
    backdrop-filter: blur(8px);
}

.lb-prev {
    left: 24px;
}

.lb-next {
    right: 24px;
}

.lb-prev:hover,
.lb-next:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.lb-info {
    margin-top: 16px;
    text-align: center;
    transform: translateY(8px);
    opacity: 0;
    transition: transform .4s .1s var(--ease), opacity .4s .1s;
}

.lightbox.open .lb-info {
    transform: translateY(0);
    opacity: 1;
}

#lbTitle {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

#lbLoc {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1.5px;
}

.lb-counter {
    margin-top: 10px;
    font-family: var(--font-impact);
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .3);
}

#lbCurrent {
    color: var(--gold);
}

/* ===========================
   GALLERY RESPONSIVE
=========================== */
@media (max-width: 1200px) {
    .gallery-grid {
        columns: 3;
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        columns: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        columns: 1;
    }

    .gallery-filters {
        gap: 8px;
    }

    .lb-prev {
        left: 8px;
    }

    .lb-next {
        right: 8px;
    }
}


/* ===========================
   DROPDOWN MENU STYLES
=========================== */
.navbar .nav-item.dropdown {
    position: relative;
}

.navbar .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.navbar .nav-item.dropdown.show .dropdown-toggle::after,
.navbar .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(-135deg);
}

.navbar .dropdown-menu {
    background: rgba(12, 12, 12, .96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, .12);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 220px;
    margin-top: 0 !important;
    top: 100%;
    padding-top: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .04);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s var(--ease), transform .3s var(--ease);
    display: block;
    pointer-events: none;
    visibility: hidden;
}

.navbar .nav-item.dropdown:hover>.dropdown-menu,
.navbar .nav-item.dropdown.show>.dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    visibility: visible;
}

/* Gold accent line at top of dropdown */
.navbar .dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    width: auto;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
    transform: none;
    animation: none;
    display: block;
}

.navbar .dropdown-menu li {
    list-style: none;
}

.navbar .dropdown-item {
    color: rgba(255, 255, 255, .7);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color .3s, background .3s, padding-left .3s, gap .3s;
    position: relative;
    border-left: 2px solid transparent;
}

.navbar .dropdown-item::before {
    content: '→';
    font-size: 11px;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .3s, transform .3s var(--ease);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    color: var(--gold);
    background: rgba(212, 175, 55, .06);
    padding-left: 28px;
    border-left-color: var(--gold);
}

.navbar .dropdown-item:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.navbar .dropdown-item:active {
    background: rgba(212, 175, 55, .12);
}

/* Separator between items */
.navbar .dropdown-menu li+li .dropdown-item {
    border-top: 1px solid rgba(255, 255, 255, .04);
}

/* Mobile dropdown adjustments */
@media (max-width: 991.98px) {
    .navbar .dropdown-menu {
        position: static !important;
        margin-top: 0 !important;
        background: rgba(255, 255, 255, .03);
        border: none;
        border-left: 2px solid var(--gold);
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        opacity: 1;
        transform: none;
        pointer-events: all;
        visibility: visible;
        display: none;
    }

    .navbar .nav-item.dropdown.show>.dropdown-menu {
        display: block;
    }

    .navbar .dropdown-menu::before {
        display: none;
    }

    .navbar .dropdown-item {
        padding: 10px 20px;
        font-size: 11px;
    }
}

/* ===========================
   ADDITIONAL UTILITIES
=========================== */
.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Textarea in CTA form */
.cta-form textarea {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    color: var(--white);
    padding: 16px 22px;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color .3s, background .3s;
    resize: vertical;
}

.cta-form textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, .07);
}

.cta-form textarea::placeholder {
    color: #ffffff;
}

/* Fix for anchor buttons */
a.btn-primary,
a.btn-ghost {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

a.nav-cta {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* ===========================
   PAGE HERO (Inner pages)
=========================== */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(17, 15, 12, .85) 0%, rgba(17, 15, 12, .7) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.page-hero-content .section-tag {
    margin-bottom: 12px;
}

.page-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 80px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.page-breadcrumb {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.page-breadcrumb li {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}

.page-breadcrumb li a {
    color: var(--gold);
    text-decoration: none;
    transition: color .3s;
}

.page-breadcrumb li a:hover {
    color: var(--white);
}

.page-breadcrumb li.active {
    color: rgba(255, 255, 255, .7);
}

.page-breadcrumb li+li::before {
    content: '→';
    margin-right: 8px;
    color: rgba(255, 255, 255, .3);
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-page-section {
    padding: 100px 0;
    background: var(--cream);
}

.contact-info-box {
    padding: 40px;
    background: linear-gradient(145deg, #1c1c1c, #2d2d2d);
    border-radius: 4px;
    height: 100%;
}

.contact-info-box h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.contact-info-box>p {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-icon {
    flex: 0 0 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
}

.contact-info-item h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    margin: 0;
}

.contact-info-item p a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    transition: color .3s;
}

.contact-info-item p a:hover {
    color: var(--gold);
}

.contact-form-box {
    padding: 40px;
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .05);
}

.contact-form-box h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    margin: 8px 0 12px;
}

.contact-form-box>p {
    font-size: 14px;
    color: var(--grey);
    margin-bottom: 28px;
}

.theme-contact-form .form-group {
    margin-bottom: 20px;
}

.theme-contact-form .form-control {
    background: var(--cream);
    border: 1px solid rgba(0, 0, 0, .08);
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 14px;
    border-radius: 4px;
    transition: border-color .3s, box-shadow .3s;
}

.theme-contact-form .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, .1);
    outline: none;
}

.theme-contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.map-section {
    padding: 80px 0 100px;
    background: var(--cream);
}

.map-wrapper {
    margin-top: 40px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .1);
}


/* ===========================
   BLOG CARDS
=========================== */
.blog-grid-section {
    padding: 100px 0;
    background: var(--cream);
}

.blog-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    transition: transform .4s var(--ease), box-shadow .4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.blog-card-img {
    position: relative;
    overflow: hidden;
    height: 270px;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
}

.blog-card-body {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card-body h3 a {
    color: var(--dark);
    text-decoration: none;
    transition: color .3s;
}

.blog-card-body h3 a:hover {
    color: var(--gold);
}

.blog-read-more {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    transition: gap .3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-read-more:hover {
    color: var(--dark);
    gap: 12px;
}

/* ===========================
   BLOG DETAIL
=========================== */
.blog-detail-section {
    padding: 80px 0 100px;
    background: var(--cream);
}

.blog-detail-meta {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    font-size: 13px;
    color: var(--grey);
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-detail-meta i {
    color: var(--gold);
}

.blog-detail-image {
    margin-bottom: 40px;
    border-radius: 4px;
    overflow: hidden;
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-detail-content {
    font-size: 15px;
    line-height: 1.9;
    color: var(--dark-text);
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-detail-content h2,
.blog-detail-content h3 {
    font-family: var(--font-display);
    font-weight: 700;
    margin: 30px 0 14px;
}

.blog-section-img {
    width: 100%;
    border-radius: 4px;
    margin: 20px 0;
}

.blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.tags-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
}

.blog-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 0, 0, .12);
    padding: 6px 14px;
    border-radius: 30px;
    color: var(--grey);
    text-decoration: none;
    transition: background .3s, color .3s, border-color .3s;
}

.blog-tag:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.blog-detail-share span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.blog-detail-share a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    text-decoration: none;
    transition: background .3s, color .3s, border-color .3s, transform .3s;
}

.blog-detail-share a:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-3px);
}


/* ===========================
   PROJECT CARDS
=========================== */
.projects-grid-section {
    padding: 100px 0;
    background: var(--cream);
}

.project-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    transition: transform .4s var(--ease), box-shadow .4s;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.project-card-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}

.project-card:hover .project-card-img img {
    transform: scale(1.08);
}

.project-card-type {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
}

.project-card-body {
    padding: 28px 24px;
}

.project-card-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.project-card-body p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.7;
}

.project-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-card a:hover {
    color: inherit;
}

.project-card-body small {
    font-size: 12px;
    display: inline-block;
    margin-top: 8px;
}

/* ===========================
   PROJECT SHOWCASE IMAGE
=========================== */
.project-showcase-section {
    padding: 0;
    margin-top: -80px;
    position: relative;
    z-index: 3;
}

.project-showcase-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18), 0 8px 24px rgba(0, 0, 0, .1);
}

.project-showcase-img {
    width: 100%;
}

.project-showcase-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .6s ease;
}

.project-showcase-wrapper:hover .project-showcase-img img {
    transform: scale(1.03);
}

.project-showcase-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.project-showcase-badge span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
}

.project-showcase-badge span i {
    color: var(--gold);
    font-size: 14px;
}

/* ===========================
   PROJECT DETAIL PAGE
=========================== */
.project-detail-section {
    padding: 80px 0;
}

.project-detail-content h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.project-detail-desc {
    font-size: 16px;
    line-height: 1.9;
    color: var(--grey);
}

.project-detail-info {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    position: sticky;
    top: 100px;
}

.project-detail-info h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gold);
    color: var(--dark);
}

.project-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.project-info-list li:last-child {
    border-bottom: none;
}

.project-info-list .info-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.project-info-list .info-value {
    color: var(--grey);
    font-size: 14px;
}

.project-detail-gallery {
    margin-top: 60px;
}

.project-detail-gallery h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
}

/* ===========================
   VIDEO GALLERY
=========================== */
.video-gallery-section {
    padding: 100px 0;
    background: var(--cream);
}

.video-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
    transition: transform .4s var(--ease), box-shadow .4s;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.video-card-link {
    display: block;
    position: relative;
}

.video-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform .6s var(--ease), filter .4s;
}

.video-card:hover img {
    transform: scale(1.05);
    filter: brightness(.6);
}

.video-card-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .35s;
}

.video-card:hover .video-card-play {
    opacity: 1;
}

.video-card-play i {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 30px rgba(212, 175, 55, .4);
    transform: scale(.8);
    transition: transform .4s var(--ease2);
}

.video-card:hover .video-card-play i {
    transform: scale(1);
}

/* ===========================
   RESPONSIVE — Inner Pages
=========================== */
@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 300px;
    }

    .project-showcase-section {
        margin-top: -50px;
    }

    .project-showcase-wrapper {
        border-radius: 12px;
    }

    .project-showcase-badge span {
        padding: 8px 14px;
        font-size: 12px;
    }

    .contact-page-section {
        padding: 60px 0;
    }

    .contact-info-box {
        padding: 30px;
        margin-bottom: 30px;
    }

    .contact-form-box {
        padding: 30px;
    }

    .blog-grid-section,
    .projects-grid-section,
    .video-gallery-section {
        padding: 60px 0;
    }

    .blog-detail-section {
        padding: 50px 0;
    }
}


/* ===========================
   SITEMAP PAGE
=========================== */
.sitemap-section {
    padding: 100px 0;
    background: var(--cream);
}

.sitemap-group {
    padding: 30px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
    height: 100%;
    transition: transform .3s var(--ease), box-shadow .3s;
}

.sitemap-group:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.sitemap-group h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--gold);
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sitemap-group h3 i {
    color: var(--gold);
    font-size: 16px;
}

.sitemap-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-group ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
}

.sitemap-group ul li:last-child {
    border-bottom: none;
}

.sitemap-group ul li a {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .3s, padding-left .3s;
}

.sitemap-group ul li a::before {
    content: '→';
    color: var(--gold);
    font-size: 12px;
    transition: transform .3s var(--ease);
}

.sitemap-group ul li a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.sitemap-group ul li a:hover::before {
    transform: translateX(3px);
}

.sitemap-blog-list {
    columns: 2;
    column-gap: 40px;
}

@media (max-width: 768px) {
    .sitemap-blog-list {
        columns: 1;
    }

    .sitemap-section {
        padding: 60px 0;
    }
}


/* ===========================
   MOBILE NAVIGATION
=========================== */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: visibility .3s, opacity .3s;
    display: none;
}

@media (max-width: 991.98px) {
    .mobile-nav-overlay {
        display: block;
    }
}

.mobile-nav-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(4px);
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background: #111;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.active .mobile-nav-panel {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-nav-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.mobile-nav-close {
    width: 36px;
    height: 36px;
    background: none;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .3s, background .3s;
}

.mobile-nav-close:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, .1);
}

.mobile-nav-close span {
    position: absolute;
    width: 16px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.mobile-nav-close span:first-child {
    transform: rotate(45deg);
}

.mobile-nav-close span:last-child {
    transform: rotate(-45deg);
}

.mobile-nav-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-list>li {
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.mobile-nav-list>li>a {
    display: block;
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 16px 0;
    transition: color .3s, padding-left .3s;
}

.mobile-nav-list>li>a:hover,
.mobile-nav-list>li>a:active {
    color: var(--gold);
    padding-left: 8px;
}

/* Sub-menu toggle */
.mobile-nav-sub-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .85);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 16px 0;
    cursor: pointer;
    transition: color .3s;
}

.mobile-nav-sub-toggle:hover {
    color: var(--gold);
}

.mobile-nav-sub-toggle i {
    font-size: 10px;
    transition: transform .3s var(--ease);
    color: var(--gold);
}

.mobile-nav-has-sub.open .mobile-nav-sub-toggle i {
    transform: rotate(180deg);
}

.mobile-nav-sub {
    list-style: none;
    padding: 0 0 10px 16px;
    margin: 0;
    display: none;
    border-left: 2px solid var(--gold);
}

.mobile-nav-has-sub.open .mobile-nav-sub {
    display: block;
}

.mobile-nav-sub li a {
    display: block;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    padding: 10px 0 10px 12px;
    transition: color .3s, padding-left .3s;
}

.mobile-nav-sub li a:hover,
.mobile-nav-sub li a:active {
    color: var(--gold);
    padding-left: 18px;
}

.mobile-nav-cta {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 16px 24px;
    border-radius: 4px;
    margin-top: 24px;
    transition: transform .2s, box-shadow .3s;
}

.mobile-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, .3);
}

/* Hide desktop nav on mobile, show hamburger */
@media (max-width: 991.98px) {
    .navbar-collapse {
        display: none !important;
    }
}

/* ===========================
   MOBILE RESPONSIVE FIXES
=========================== */
@media (max-width: 768px) {

    /* Hero */
    .hero {
        min-height: 100vh;
        min-height: 100svh;
    }

    .hero-content {
        margin-left: 5vw;
        margin-right: 5vw;
        max-width: 100%;
    }

    .hero-title {
        font-size: clamp(32px, 10vw, 56px) !important;
    }

    .hero-sub {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btns .btn-primary,
    .hero-btns .btn-ghost {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        display: none;
    }

    .hero-slide-nav {
        left: 5vw;
        bottom: 30px;
    }

    .hero-slide-counter {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    /* Sections */
    .section-header h2 {
        font-size: clamp(28px, 7vw, 44px) !important;
    }

    .section-tag {
        font-size: 11px;
        letter-spacing: 2px;
    }

    /* Scroll Scenes */
    .scroll-scenes .scene {
        height: auto;
        min-height: auto;
    }

    .scene-sticky {
        position: relative !important;
        height: auto !important;
        flex-direction: column !important;
        padding: 60px 5vw !important;
        gap: 30px !important;
    }

    .scene-img {
        height: 250px !important;
    }

    .scene-img-wrap {
        flex: unset !important;
        max-width: 100% !important;
        width: 100%;
    }

    .scene-text {
        flex: unset !important;
        max-width: 100% !important;
    }

    .scene-num {
        font-size: 60px !important;
    }

    .scene-text h2 {
        font-size: 28px !important;
    }

    /* About Split */
    .about-split {
        grid-template-columns: 1fr !important;
    }

    .about-left {
        padding: 40px 20px !important;
    }

    .about-right {
        padding: 40px 20px !important;
    }

    .about-heading {
        font-size: 28px !important;
    }

    .about-flip-card {
        width: 100% !important;
        max-width: 320px !important;
        height: 320px !important;
        margin: 0 auto;
    }

    .about-flip-front img {
        width: 70% !important;
        max-width: 200px !important;
    }

    .about-logo-tagline {
        font-size: 13px !important;
    }

    .about-right-cta {
        margin-top: 30px !important;
    }

    .about-right {
        text-align: left;
    }

    .about-right > p {
        font-size: 14px !important;
        max-width: 100% !important;
    }

    .about-img-main {
        height: 300px !important;
    }

    .about-img-small {
        width: 120px !important;
        height: 120px !important;
        right: -10px !important;
        bottom: -20px !important;
    }

    /* Services */
    .services {
        padding: 60px 5vw !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .service-card {
        padding: 30px 24px !important;
    }

    /* Process */
    .process-section {
        padding: 60px 5vw !important;
    }

    .process-step {
        gap: 20px !important;
    }

    .process-dot {
        flex: 0 0 44px !important;
        height: 44px !important;
    }

    /* Stats */
    .stats-strip {
        flex-direction: column !important;
        gap: 30px !important;
        padding: 50px 20px !important;
    }

    .stat-num {
        font-size: 48px !important;
    }

    .stat-divider {
        width: 60px !important;
        height: 1px !important;
        margin: 0 !important;
    }

    /* Portfolio */
    .portfolio {
        padding: 60px 5vw !important;
    }

    .portfolio-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }

    .portfolio-item.large {
        grid-column: auto !important;
        grid-row: auto !important;
    }

    /* Gallery */
    .gallery-section {
        padding: 60px 5vw !important;
    }

    .gallery-grid {
        columns: 2 !important;
        column-gap: 10px !important;
    }

    .gallery-item.gi-tall img {
        height: 240px !important;
    }

    /* Marquee */
    .marquee-wrap {
        padding: 14px 0;
    }

    .marquee-track span {
        font-size: 14px;
        padding: 0 16px;
    }

    /* Testimonials */
    .vtest-section {
        padding: 60px 5vw !important;
    }

    blockquote {
        font-size: 18px !important;
    }

    /* Contact CTA */
    .contact-cta {
        padding: 60px 5vw !important;
    }

    .cta-content h2 {
        font-size: 28px !important;
    }

    .cta-form {
        gap: 12px !important;
    }

    /* Footer CTA */
    .footer-cta-strip {
        padding: 40px 20px;
    }

    .footer-cta-text h3 {
        font-size: 22px;
    }

    /* Page Hero */
    .page-hero {
        height: 35vh !important;
        min-height: 260px !important;
    }

    .page-hero-content h1 {
        font-size: 32px !important;
    }

    .project-showcase-section {
        margin-top: -40px !important;
    }

    .project-showcase-wrapper {
        border-radius: 10px !important;
    }

    /* Contact Page */
    .contact-page-section {
        padding: 50px 0 !important;
    }

    .contact-info-box {
        margin-bottom: 24px;
    }

    /* Project/Blog Cards */
    .project-card-img,
    .blog-card-img {
        height: 180px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px !important;
    }

    .gallery-grid {
        columns: 1 !important;
    }

    .footer-cta-inner {
        text-align: center;
    }

    .navbar {
        padding: 12px 16px !important;
    }

    .nav-logo-img {
        height: 50px !important;
        width: 50px !important;
    }

    .navbar.scrolled .nav-logo-img {
        height: 36px !important;
        width: 36px !important;
    }

    .about-flip-card {
        max-width: 260px !important;
        height: 260px !important;
    }

    .about-flip-front img {
        width: 65% !important;
        max-width: 160px !important;
    }

    .about-logo-tagline {
        font-size: 12px !important;
        letter-spacing: 1px !important;
    }

    .about-left {
        padding: 30px 16px !important;
    }

    .about-right {
        padding: 30px 16px !important;
    }

    .about-heading {
        font-size: 24px !important;
    }
}



/* ===========================


/* ===========================
   SERVICE CARD — PREMIUM STYLE
=========================== */
.services {
    padding: 100px 8vw !important;
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
}

.service-card {
    background: var(--white) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    padding: 0 !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .05) !important;
    transition: all .5s var(--ease) !important;
    position: relative !important;
    height: auto !important;
    border: 1px solid rgba(0, 0, 0, .03);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: 0 30px 70px rgba(212, 175, 55, .12), 0 10px 25px rgba(0, 0, 0, .08) !important;
    border-color: rgba(212, 175, 55, .25);
}

/* Shimmer effect on hover */
.service-card::before {
    content: '' !important;
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(212, 175, 55, .06), transparent);
    transition: none;
    z-index: 10;
    pointer-events: none;
}

.service-card:hover::before {
    animation: cardShimmer .8s ease forwards;
}

@keyframes cardShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 150%;
    }
}

/* Gold bottom line */
.service-card::after {
    content: '' !important;
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
    transition: width .5s var(--ease), left .5s var(--ease);
    z-index: 5;
    border-radius: 3px 3px 0 0;
}

.service-card:hover::after {
    width: 100%;
    left: 0;
}

/* Image container */
.service-card-img {
    position: relative !important;
    width: 100% !important;
    height: 220px !important;
    overflow: hidden;
    margin: 0 !important;
    border-radius: 0 !important;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease), filter .5s;
}

.service-card:hover .service-card-img img {
    transform: scale(1.12) rotate(.5deg);
    filter: brightness(.88) contrast(1.05);
}

/* Gradient fade into content */
.service-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--white) 10%, transparent);
    z-index: 1;
    pointer-events: none;
}

/* Decorative corner accent */
.service-card-img::before {
    content: '';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(212, 175, 55, .5);
    border-radius: 50%;
    z-index: 2;
    opacity: 0;
    transform: scale(.6);
    transition: opacity .4s, transform .4s var(--ease2);
}

.service-card:hover .service-card-img::before {
    opacity: 1;
    transform: scale(1);
}

/* Hide icon overlay and old icons */
.service-card-overlay {
    display: none !important;
}

.service-card .service-icon {
    display: none !important;
}

/* Title with gold left border on hover */
.service-card h3 {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    font-family: var(--font-display) !important;
    font-size: 21px !important;
    font-weight: 700 !important;
    color: var(--dark) !important;
    margin: 0 !important;
    padding: 20px 28px 10px !important;
    transition: color .3s, padding-left .3s var(--ease) !important;
    line-height: 1.3 !important;
    border-left: 3px solid transparent;
}

.service-card:hover h3 {
    color: var(--gold) !important;
    bottom: auto !important;
    padding-left: 32px !important;
    border-left-color: var(--gold);
}

/* Description */
.service-card p {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    font-size: 14px !important;
    color: var(--grey) !important;
    line-height: 1.8 !important;
    margin: 0 !important;
    padding: 0 28px 28px !important;
    opacity: 1 !important;
    transform: none !important;
    transition: color .3s !important;
}

.service-card:hover p {
    opacity: 1 !important;
    transform: none !important;
    color: #444 !important;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 5vw !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .service-card {
        border-radius: 14px !important;
    }

    .service-card-img {
        height: 180px !important;
    }

    .service-card h3 {
        font-size: 18px !important;
        padding: 16px 20px 8px !important;
    }

    .service-card:hover h3 {
        padding-left: 24px !important;
    }

    .service-card p {
        font-size: 13px !important;
        padding: 0 20px 20px !important;
    }

    .service-card-img::before {
        display: none;
    }
}


/* ===========================
   GALLERY PAGINATION
=========================== */
.gallery-pagination {
    display: flex;
    justify-content: center;
    padding: 60px 0 40px;
}

.custom-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.custom-pagination .page-item .page-link:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.custom-pagination .page-item.active .page-link {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.custom-pagination .page-item.disabled .page-link {
    color: #ccc;
    background: #f9f9f9;
    border-color: rgba(0, 0, 0, 0.05);
    cursor: not-allowed;
    box-shadow: none;
}


/* ===========================
   VISION TO REALITY SECTION
=========================== */
.vtr-section {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
    overflow: hidden;
}

/* ---- LEFT panel: cream/light ---- */
.vtr-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vtr-panel-light {
    background: var(--cream);
    padding: 100px 70px;
    overflow: hidden;
}

/* Giant watermark text — lives inside light panel */
.vtr-bg-text {
    position: absolute;
    font-family: var(--font-impact);
    font-size: 100px;
    color: rgba(26, 26, 26, 0.04);
    bottom: -0.1em;
    left: -0.05em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 0;
    letter-spacing: 8px;
    line-height: 1;
    padding-left: 10%;
}

/* ---- RIGHT panel: dark ---- */
.vtr-panel-dark {
    background: linear-gradient(160deg, #111111 0%, #1a1a1a 50%, #222222 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
    position: relative;
}

/* Subtle gold glow in dark panel */
.vtr-panel-dark::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.07) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.vtr-panel-dark::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 380px;
    height: 380px;
    background: radial-gradient(ellipse, rgba(212, 175, 55, 0.05) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

/* Layout inner wrapper */
.vtr-inner {
    display: contents; /* grid children are the two panels */
}

/* ---- Image Morph Box ---- */
.vtr-image-box {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 4 / 3;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 55, 0.15);
    z-index: 1;
}

/* Both images fill the box */
.vtr-img {
    position: absolute;
    inset: 0;
    transition: opacity 0.05s;
}

.vtr-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 3D image starts with stylized look 
.vtr-img-3d img {
    filter: saturate(0.6) contrast(1.15) brightness(0.9) hue-rotate(180deg) sepia(0.15);
}*/

/* 3D visible by default; real hidden */
.vtr-img-3d { z-index: 2; opacity: 1; }
.vtr-img-real { z-index: 1; opacity: 1; }

/* Morph grid tiles */
.vtr-morph-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    z-index: 3;
    pointer-events: none;
}

.vtr-grid-tile {
    background: transparent;
    transition: none;
}

/* Scan line effect */
.vtr-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.9), rgba(255, 255, 255, 0.6), rgba(212, 175, 55, 0.9), transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6), 0 0 40px rgba(212, 175, 55, 0.3);
    z-index: 6;
    top: -4px;
    transform: translateY(-100%);
    pointer-events: none;
    opacity: 0;
}

/* Side vignette — dark edges, bright center */
.vtr-vignette {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
        /* left dark edge */
        linear-gradient(to right,  rgba(15, 15, 15, 0.72) 0%, transparent 35%),
        /* right dark edge */
        linear-gradient(to left,   rgba(15, 15, 15, 0.72) 0%, transparent 35%),
        /* top dark edge */
        linear-gradient(to bottom, rgba(15, 15, 15, 0.45) 0%, transparent 28%),
        /* bottom dark edge */
        linear-gradient(to top,    rgba(15, 15, 15, 0.45) 0%, transparent 28%);
}

/* Corner decorations */
.vtr-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: var(--gold);
    border-style: solid;
    z-index: 5;
    opacity: 0.7;
    pointer-events: none;
    transition: opacity 0.5s, transform 0.5s;
}
.vtr-corner-tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.vtr-corner-tr { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
.vtr-corner-bl { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }
.vtr-corner-br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

/* Image labels */
.vtr-img-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    padding: 7px 14px;
    border-radius: 30px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: 7;
    pointer-events: none;
    transition: opacity 0.4s;
}

.vtr-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(100, 180, 255, 0.9);
    display: inline-block;
    animation: vtrDotPulse 2s ease-in-out infinite;
}

.vtr-dot-gold {
    background: var(--gold);
    animation: vtrDotPulse 1.5s ease-in-out infinite;
}

@keyframes vtrDotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 0 0 5px rgba(212, 175, 55, 0); }
}

/* ---- Text Box ---- */
.vtr-text-box {
    color: var(--dark-text);
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 520px;
}

.vtr-tag {
    display: inline-block;
    margin-bottom: 16px;
}

.vtr-heading {
    font-family: var(--font-display);
    font-size: clamp(40px, 4.5vw, 68px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.vtr-heading em {
    color: var(--gold);
    font-style: italic;
}

.vtr-word-reality {
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.vtr-word-reality::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    border-radius: 2px;
    animation: vtrUnderlineGlow 2s ease-in-out infinite;
}

@keyframes vtrUnderlineGlow {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; box-shadow: 0 0 12px rgba(212, 175, 55, 0.5); }
}

.vtr-desc {
    font-size: 15px;
    color: var(--grey);
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 460px;
}

/* Steps */
.vtr-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 42px;
}

.vtr-step {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s calc(var(--vs) * 0.15s) var(--ease),
                transform 0.7s calc(var(--vs) * 0.15s) var(--ease);
}

.vtr-section.vtr-in-view .vtr-step {
    opacity: 1;
    transform: translateX(0);
}

.vtr-step-icon {
    flex: 0 0 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    transition: background 0.3s, transform 0.3s var(--ease2);
    flex-shrink: 0;
}

.vtr-step:hover .vtr-step-icon {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.1) rotate(-5deg);
}

.vtr-step-text h4 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.vtr-step-text p {
    font-size: 13px;
    color: var(--grey);
    line-height: 1.7;
    margin: 0;
}

.vtr-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

/* Entry animations for the section */
.vtr-panel-light .vtr-text-box {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.vtr-section.vtr-in-view .vtr-panel-light .vtr-text-box {
    opacity: 1;
    transform: translateX(0);
}

.vtr-image-box {
    opacity: 0;
    transform: translateX(40px) scale(0.97);
    transition: opacity 1s 0.2s var(--ease), transform 1s 0.2s var(--ease);
    transform-origin: center center;
}

.vtr-section.vtr-in-view .vtr-image-box {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Scan states driven by JS */
.vtr-image-box.scanning .vtr-scan-line {
    opacity: 1;
    animation: vtrScanMove 1.4s linear forwards;
}

@keyframes vtrScanMove {
    0%   { top: -4px; opacity: 1; }
    100% { top: calc(100% + 4px); opacity: 1; }
}

.vtr-image-box.scan-done .vtr-img-3d {
    transition: opacity 0.6s ease, filter 0.6s ease;
}

/* Tile flip animation */
.vtr-grid-tile.tile-flip {
    background: rgba(212, 175, 55, 0.15);
    animation: tileFlash calc(0.2s + var(--gi) * 0.02s) ease forwards;
    animation-delay: calc(var(--gi) * 0.04s);
}

@keyframes tileFlash {
    0%   { background: rgba(212, 175, 55, 0.0); }
    50%  { background: rgba(212, 175, 55, 0.2); }
    100% { background: rgba(212, 175, 55, 0.0); }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .vtr-section {
        grid-template-columns: 1fr;
    }

    .vtr-panel-light {
        padding: 70px 40px;
    }

    .vtr-panel-dark {
        padding: 60px 40px;
        min-height: 50vw;
    }

    .vtr-image-box {
        max-width: 100%;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    .vtr-panel-light {
        padding: 60px 24px;
    }

    .vtr-panel-dark {
        padding: 40px 24px;
    }

    .vtr-heading {
        font-size: 34px !important;
    }

    .vtr-desc {
        font-size: 14px;
        max-width: 100%;
    }

    .vtr-steps {
        gap: 18px;
        margin-bottom: 30px;
    }

    .vtr-step-icon {
        flex: 0 0 42px;
        height: 42px;
        font-size: 14px;
    }

    .vtr-step-text h4 {
        font-size: 15px;
    }

    .vtr-bg-text {
        font-size: 80px;
        letter-spacing: 4px;
    }
}

@media (max-width: 480px) {
    .vtr-image-box {
        aspect-ratio: 4 / 3;
    }

    .vtr-corner {
        width: 16px;
        height: 16px;
    }
}


/* ===========================
   PROCESS SECTION V2
   (dark theme, project fonts)
=========================== */
/* ===========================
   PROCESS
=========================== */
.process-section {
    background: var(--cream);
    padding: 120px 8vw;
}

.process-track {
    position: relative;
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-line {
    position: absolute;
    left: 28px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.process-step {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 0 0 60px 0;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .7s calc(var(--si) * .12s) var(--ease),
        transform .7s calc(var(--si) * .12s) var(--ease);
}

.process-step.in-view {
    opacity: 1;
    transform: translateX(0);
}

.process-dot {
    flex: 0 0 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--dark);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    position: relative;
    transition: background .3s, box-shadow .3s;
}

.process-step:hover .process-dot {
    background: var(--gold);
    box-shadow: 0 0 0 8px rgba(201, 169, 110, .15);
}

.process-dot span {
    font-family: var(--font-impact);
    font-size: 20px;
    color: var(--gold);
    transition: color .3s;
}

.process-step:hover .process-dot span {
    color: var(--dark);
}

.process-content {
    padding-top: 12px;
}

.process-content h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -.3px;
}

.process-content p {
    font-size: 14px;
    color: var(--grey);
    line-height: 1.85;
    max-width: 520px;
}

/* ===========================
   TESTIMONIAL
=========================== */
.testimonial-section {
  background: var(--cream-dark);
  padding: 130px 8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 600px;
  font-weight: 900;
  line-height: 1;
  color: rgba(201, 169, 110, .06);
  position: absolute;
  top: -80px;
  left: -20px;
  pointer-events: none;
}

.testimonial-inner {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.quote-icon {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 900;
  color: var(--gold);
  opacity: .3;
  line-height: .5;
  margin-bottom: 24px;
  display: block;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--dark);
  margin-bottom: 44px;
  transition: opacity .5s, transform .5s;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--grey);
  font-weight: 500;
  letter-spacing: 1px;
}

.testimonial-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .15);
  cursor: pointer;
  transition: background .3s, transform .3s;
}

.dot.active {
  background: var(--gold);
  transform: scale(1.5);
}