@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@200;300;400;500;600;700&display=swap');

/* ========================================
   LUXURY DESIGN SYSTEM – AND INTERIOR
   ======================================== */

:root {
    --gold: #C9A96E;
    --gold-light: #E8D5A3;
    --gold-dark: #9A7A45;
    --black: #080808;
    --dark: #111111;
    --dark2: #1C1C1C;
    --cream: #F7F1E8;
    --off-white: #FAF8F5;
    --white: #FFFFFF;
    --gray: #888888;
    --gray-light: #CCCCCC;
    --border: rgba(201, 169, 110, 0.18);

    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Jost', sans-serif;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
    --trans: 0.6s var(--ease);
    --trans-fast: 0.35s var(--ease);

    --container: 1280px;
    --section-py: 100px;
}

/* === RESET === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    background: var(--off-white);
    color: var(--dark);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
}


/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.1;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
}

h2 {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
}

h3 {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
}

h4 {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

p {
    color: var(--gray);
    font-weight: 300;
    font-size: 0.95rem;
    
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--trans-fast);
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

/* === LAYOUT === */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

.section {
    padding: var(--section-py) 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* === UTILITIES === */
.text-center {
    text-align: center;
}

.serif {
    font-family: var(--font-serif);
}

.gold {
    color: var(--gold);
}

.dark-bg {
    background: #262626;
    color: var(--white);
}

.dark-bg p {
    color: rgba(255, 255, 255, 0.55);
}

.cream-bg {
    background: var(--cream);
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

/* === SECTION LABEL === */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}

.section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

/* === HEADING DECORATION === */
.heading-deco {
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.heading-deco::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: 0;
    width: 55px;
    height: 1.5px;
    background: var(--gold);
}

.text-center .heading-deco::after {
    left: 50%;
    transform: translateX(-50%);
}

/* === BUTTON === */


.btn-shop:hover {
    background: var(--gold);
    color: var(--dark);
}


.btn-shop {
        font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 12px;
    transition: var(--trans-fast);
}



.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color var(--trans-fast);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-105%);
    transition: transform 0.5s var(--ease);
    z-index: -1;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    border: 1px solid var(--dark);
}

.btn-dark:hover {
    color: var(--dark);
}

.btn-dark::before {
    background: var(--gold);
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    border: 1px solid var(--gold);
}

.btn-gold::before {
    background: var(--dark);
}

.btn-gold:hover {
    color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: #c9a96e;
    border: 1px solid rgb(201 169 105);
}

.btn-outline::before {
   color: var(--dark);
    border-color: var(--gold);
}

.btn-outline:hover {
    color: var(--dark);
    border-color: var(--gold);
}



/* === REVEAL ANIMATION === */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Global Form Validation */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff4d4d !important;
    background: rgba(255, 77, 77, 0.03) !important;
}

.error-message {
    color: #ff4d4d;
    font-size: 0.7rem;
    margin-top: 8px;
    display: block;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: fadeInError 0.3s ease forwards;
}

@keyframes fadeInError {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.shake {
    animation: shake 0.4s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

.btn-loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading i {
    animation: rotate 1s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===========================
   HEADER
   =========================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    padding: 32px 0;
    transition: padding var(--trans), background var(--trans), box-shadow var(--trans);
}

#header.scrolled {
    padding: 16px 0;
    background: rgb(17 17 17 / 40%);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.4);
}

.nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-link {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 4px;
    max-width: 150px;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gold);
}

.logo-sub {
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--trans-fast);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--gold);
}

/* Nav Dropdown */
.nav-dropdown-wrap {
    position: relative;
    padding: 10px 0;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: -15px;
    min-width: 205px;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--trans-fast);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.nav-dropdown-wrap:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li {
    display: block;
}

/* Override nav-links a specifically for dropdown items */
.nav-links .nav-dropdown a {
    display: block;
    padding: 12px 25px;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: var(--trans-fast);
}

.nav-links .nav-dropdown a::after {
    display: none;
}

.nav-links .nav-dropdown a:hover,
.nav-links .nav-dropdown a.active {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 30px;
}

/* Nav right */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 12px 28px;
    transition: var(--trans-fast);
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--white);
    transition: all 0.4s var(--ease);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile nav menu */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.98);
    backdrop-filter: blur(15px);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease);
}

.mobile-nav.show {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s var(--ease);
    position: relative;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: var(--gold);
    transform: translateX(10px);
}

.mobile-nav a.mobile-sub-link {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -15px;
    font-family: var(--font-sans);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mobile-nav a.mobile-sub-link:hover {
    color: var(--gold);
}

/* Mobile Dropdown */
.mobile-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-dropdown-btn {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.05em;
    transition: all 0.3s var(--ease);
}

.mobile-dropdown-btn i {
    font-size: 0.8rem;
    transition: transform 0.4s var(--ease);
}

.mobile-dropdown.active .mobile-dropdown-btn {
    color: var(--gold);
}

.mobile-dropdown.active .mobile-dropdown-btn i {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    transition: all 0.5s var(--ease);
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 20px;
    margin-bottom: 10px;
}

.mobile-dropdown-content a {
    font-size: 1.2rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-family: var(--font-sans) !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.mobile-dropdown-content a:hover {
    color: var(--gold) !important;
}

/* Mobile Close Button */
.mobile-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s var(--ease);
    opacity: 0.8;
}

.mobile-close-btn:hover {
    color: var(--gold);
    transform: scale(1.1);
    opacity: 1;
}

/* Scroll Lock */
body.menu-open {
    overflow: hidden;
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
    background: #deb2573b; /* Deep dark background */
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.clients-marquee-container {
    padding: 20px 0;
    position: relative;
    width: 100%;
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 15%,
        black 85%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 15%,
        black 85%,
        transparent
    );
}

.clients-marquee {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-width: 100%;
    gap: 100px; /* Expansive luxury spacing */
    animation: marquee-scroll 60s linear infinite; /* Slower, more elegant scroll */
    padding: 0 80px;
}

.clients-marquee img {
    height: 100px; /* Sophisticated, professional scale */
    width: auto;
    object-fit: contain;
    filter: grayscale(1) invert(1) opacity(-0.7); /* Muted, professional default */
    transition: all 0.6s var(--ease);
    background-color: #00000024 !important; /* Remove background */
    padding: 14px !important; /* Remove padding */
    border-radius: 10px;
}

.clients-marquee img:hover {
    filter: grayscale(0) invert(0) opacity(1); /* Reveal original brand colors */
    transform: scale(1.1);
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Project Grouping */
.project-group {
    margin-bottom: 80px;
}

.developer-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
    width: fit-content;
}

.developer-header h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.developer-header .dev-line {
    height: 2px;
    width: 60px;
    background: var(--gold);
}

.port-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: var(--white);
    margin-top: 8px;
    opacity: 0.8;
}

.port-location {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
    font-family: var(--font-sans);
}

/* Pause on hover */
.clients-marquee-container:hover .clients-marquee {
    animation-play-state: paused;
}

/* ===========================
   PREMIUM HERO SECTION
   =========================== */
.hero-slider-wrap {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: var(--black);
    overflow: hidden;
}

.hs-track {
    position: relative;
    height: 100%;
}

.hs-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    background-size: cover;
    background-position: center;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hs-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

.hs-overlay-rich {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(8, 8, 8, 0.4) 0%, rgba(8, 8, 8, 0.8) 100%);
    z-index: 1;
}

.hs-content-wrap {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.hs-content {
    max-width: 900px;
}

.premium-title {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    color: var(--white);
    line-height: 0.9;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-family: var(--font-serif);
}

.premium-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--white);
}

.premium-tagline {
    font-size: 0.8rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 35px;
    font-weight: 500;
}

.premium-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin: 0 auto 50px;
    line-height: 1.75;
}

.premium-cta {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding-bottom: 8px;
    transition: var(--trans-fast);
}

.premium-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 40px;
    height: 1px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width 0.4s var(--ease);
}

.premium-cta:hover {
    color: var(--gold);
}

.premium-cta:hover::after {
    width: 100%;
}

/* Vertical Next Control */
.hs-next-label {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    font-weight: 600;
    z-index: 20;
    transition: var(--trans-fast);
    transform-origin: center right;
}

.hs-next-label .arrow {
    transform: rotate(-90deg);
    font-size: 0.9rem;
}

.hs-next-label:hover {
    color: var(--gold);
}

/* Numeric Nav */
.hs-nav-numbers {
    position: absolute;
    bottom: 60px;
    left: 60px;
    display: flex;
    gap: 30px;
    z-index: 20;
}

.hs-nav-num {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    position: relative;
    padding-bottom: 5px;
    transition: var(--trans-fast);
}

.hs-nav-num.active {
    color: var(--gold);
}

.hs-nav-num.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1.5px;
    background: var(--gold);
}

/* Scroll hint */
.hs-scroll-hint {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 80px;
    display: flex;
    justify-content: center;
    z-index: 15;
}

.hs-scroll-hint .scroll-bar {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hs-scroll-hint .scroll-bar::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollAnimVertical 2s infinite;
}

@keyframes scrollAnimVertical {
    0% {
        top: -100%;
    }

    50% {
        top: 0;
    }

    100% {
        top: 100%;
    }
}

@media (max-width: 991px) {
    .premium-title {
        font-size: 4.5rem;
    }

    .hs-next-label {
        display: none;
    }

    .hs-nav-numbers {
        left: 40px;
        bottom: 40px;
    }
}

@media (max-width: 768px) {
    .premium-title {
        font-size: 3.2rem;
    }

    .premium-desc {
        font-size: 0.95rem;
    }
}

/* ===========================
   MARQUEE BAND
   =========================== */
.marquee-band {
    background: var(--gold);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 45px;
    animation: marquee 40s linear infinite;
}

.marquee-track span {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--dark);
}

.marquee-track i {
    color: rgba(0, 0, 0, 0.3);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-img-wrap {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-img-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    background: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-img-badge .num {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1;
}

.about-img-badge .label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 6px;
}

.about-text {
    padding-left: 20px;
}

.about-text h2 {
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 22px;
    line-height: 1.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 35px 0;
}

.about-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 500;
}

.about-feat-item i {
    color: var(--gold);
    font-size: 14px;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services-section {
    background: #262626;
}

.services-section p {
    color: rgba(255, 255, 255, 0.5);
}

.services-grid-luxury {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 60px;
}

.service-item {
    background: var(--dark);
    padding: 55px 45px;
    position: relative;
    overflow: hidden;
    transition: var(--trans);
}

.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    opacity: 0;
    transition: opacity var(--trans-fast);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover .s-icon,
.service-item:hover h3,
.service-item:hover p,
.service-item:hover .s-number {
    color: var(--dark);
}

.s-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: rgb(255 255 255 / 42%);
    line-height: 1;
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    transition: var(--trans-fast);
}

.s-icon {
    font-size: 2rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
    margin-bottom: 22px;
    display: block;
    transition: var(--trans-fast);
}

.service-item h3 {
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    transition: var(--trans-fast);
}

.service-item p {
    position: relative;
    z-index: 1;
    font-size: 0.88rem;
    transition: var(--trans-fast);
}

/* ===========================
   FEATURES SECTION
   =========================== */
.features-section {
    background: var(--off-white);
}

.features-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.feature-row {
    display: flex;
    align-items: center;
    background: var(--white);
    padding: 35px 50px;
    gap: 40px;
    transition: var(--trans-fast);
    cursor: none;
}

.feature-row:hover {
    background: var(--dark);
}

.feature-row:hover .feat-title {
    color: var(--white);
}

.feature-row:hover .feat-desc {
    color: rgba(255, 255, 255, 0.5);
}

.feature-row:hover .feat-icon {
    background: var(--gold);
    color: var(--dark);
}

.feat-icon {
    width: 60px;
    height: 60px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    flex-shrink: 0;
    transition: var(--trans-fast);
}

.feat-num {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
    min-width: 40px;
}

.feat-content {
    flex: 1;
}

.feat-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 6px;
    transition: var(--trans-fast);
}

.feat-desc {
    font-size: 0.85rem;
    margin: 0;
    transition: var(--trans-fast);
}

.feat-arrow {
    color: var(--gold);
    margin-left: auto;
    flex-shrink: 0;
    opacity: 0;
    transition: var(--trans-fast);
}

.feature-row:hover .feat-arrow {
    opacity: 1;
}

/* Stats Strip */
.stats-strip {
    background: var(--gold);
    padding: 70px 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h2 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5vw, 5rem);
    color: var(--dark);
    margin: 0;
    line-height: 1;
}

.stat-item p {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
    margin-top: 8px;
}

/* ===========================
   PORTFOLIO SECTION
   =========================== */
.portfolio-section {
    background: #262626;
}



.port-filters {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 50px 0 40px;
    flex-wrap: wrap;
}

.port-btn {
    padding: 11px 30px;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.55);
    transition: var(--trans-fast);
}

.port-btn:hover,
.port-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.port-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.port-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: none;
}

.port-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
}

.port-item:hover img {
    transform: scale(1.12);
}

.port-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity var(--trans-fast);
}

.port-item:hover .port-info {
    opacity: 1;
}

.port-cat {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}

.port-info h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin: 0;
}

.port-item.hidden {
    display: none;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--trans-fast);
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lb-img {
    max-width: 88vw;
    max-height: 88vh;
    object-fit: contain;
    border: 1px solid var(--border);
}

.lb-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: none;
    transition: var(--trans-fast);
}

.lb-close:hover {
    color: var(--gold);
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testi-section {
    background: var(--cream);
}

.testi-wrap {
    max-width: 900px;
    margin: 10px auto 0;
    position: relative;
    text-align: center;
}

.testi-slide {
    display: none;
}

.testi-slide.active {
    display: block;
    animation: fadeIn 0.6s var(--ease);
}

.testi-quote {
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    font-family: var(--font-serif);
    margin-bottom: 30px;
}

.testi-text {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 40px;
}

.testi-author-name {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.testi-author-role {
    font-size: 0.78rem;
    color: var(--gray);
}

.testi-stars {
    color: var(--gold);
    margin-bottom: 14px;
    font-size: 0.85rem;
}

.testi-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.testi-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: transparent;
    cursor: none;
    font-size: 1rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-fast);
}

.testi-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.testi-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: none;
    transition: var(--trans-fast);
}

.testi-dot.active {
    background: var(--gold);
    transform: scale(1.4);
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section {
    background: var(--dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    margin-top: 70px;
}

.contact-info-item {
    display: flex;
    gap: 22px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.c-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.c-label {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
    display: block;
}

.c-value {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.c-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    padding: 55px 50px;
}

.c-form h3 {
    color: var(--white);
    margin-bottom: 35px;
    font-size: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

.form-group label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--white);
    outline: none;
    transition: border-color var(--trans-fast), background var(--trans-fast);
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
}

.form-success {
    display: none;
    padding: 16px;
    background: rgba(201, 169, 110, 0.12);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 16px;
    letter-spacing: 0.05em;
}

.form-success.show {
    display: block;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background: #1c1c1ced;
    padding: 100px 0 0;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 0.5fr 1fr 1fr 1fr;
    gap: 35px;
    padding-bottom: 80px;
    border-bottom: 1px solid var(--border);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.4);
    margin-top: 24px;
    font-size: 0.95rem;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    transition: var(--trans-fast);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.95rem;
    transition: var(--trans-fast);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 8px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 3px;
    font-size: 14px;
    flex-shrink: 0;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

.footer-bottom p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
    color: var(--gold);
    font-size: 0.95rem;
}

/* === BREADCRUMB PAGE HERO === */
.page-hero {
    padding: 200px 0 100px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.breadcrumbs {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

.breadcrumbs a {
    color: var(--gold);
    transition: var(--trans-fast);
}

.breadcrumbs a:hover {
    color: var(--white);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.25);
}

/* === CTA BANNER === */
.cta-banner {
    padding: 100px 0;
    background: var(--dark);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 80px;
    border: 1px solid var(--border);
}

.cta-inner h2 {
    color: var(--white);
    max-width: 500px;
    margin: 0;
}

.cta-inner .section-label {
    margin: 0 0 16px;
}

/* ===========================
   KEYFRAMES
   =========================== */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scrollAnim {
    0% {
        top: -54px;
    }

    80% {
        top: 54px;
    }

    100% {
        top: 54px;
        opacity: 0;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1200px) {
    :root {
        --section-py: 110px;
    }

    .container {
        padding: 0 30px;
    }
}

@media (min-width: 992px) {
    .mobile-nav {
        display: none !important;
    }
    body.menu-open {
        overflow: visible !important;
    }
}

@media (max-width: 991px) {
    :root {
        --section-py: 80px;
    }

    .container {
        padding: 0 24px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .grid-3,
    .services-grid-luxury {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4,
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .port-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .hero-stats {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-inner h2 {
        max-width: 100%;
    }

    .features-list .feature-row {
        padding: 28px 30px;
        display: flow;
    }

    .about-img-badge {
        right: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 70px;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .grid-3,
    .services-grid-luxury {
        grid-template-columns: 1fr;
    }

    .port-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .c-form {
        padding: 35px 25px;
    }

    .cta-inner {
        padding: 50px 30px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        text-align: center;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-scroll {
        display: none;
    }

    .about-img-badge {
        width: 130px;
        height: 130px;
    }

    .about-img-badge .num {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-py: 60px;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-text {
        padding-left: 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    /* Clients Resp */
    .clients-marquee {
        gap: 50px;
    }
    .clients-marquee img {
        height: 130px;
    }
}

/* =====================================================
   HERO SLIDER  (hs-*)
   ===================================================== */

.hero-slider-wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--black);
}

/* Track — stacks all slides on top of each other */
.hs-track {
    position: absolute;
    inset: 0;
}

/* Individual Slide */
.hs-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.hs-slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Subtle Ken-Burns zoom on active slide */
.hs-slide.active {
    animation: hsZoom 7s ease-out forwards;
}

@keyframes hsZoom {
    from {
        transform: scale(1.07);
    }

    to {
        transform: scale(1);
    }
}

/* Overlay gradient */
.hs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(8, 8, 8, 0.88) 0%,
            rgba(8, 8, 8, 0.55) 60%,
            rgba(8, 8, 8, 0.3) 100%);
}

/* Thin gold left accent line */
.hs-deco-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0.35;
}

/* Content wrapper — vertically centred */
.hs-content-wrap {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 100px;
    /* clear fixed header */
}

.hs-content {
    max-width: 760px;
}

/* Eyebrow line */
.hs-eyebrow {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;

    /* Animate in when slide becomes active */
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.9s var(--ease) 0.3s, transform 0.9s var(--ease) 0.3s;
}

.hs-slide.active .hs-eyebrow {
    opacity: 1;
    transform: translateY(0);
}

.hs-eyebrow::before {
    content: '';
    display: block;
    width: 38px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.hs-eyebrow span {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Headline */
.hs-title {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 6.5vw, 6rem);
    font-weight: 400;
    line-height: 1.06;
    color: var(--white);
    margin-bottom: 28px;

    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s var(--ease) 0.52s, transform 0.9s var(--ease) 0.52s;
}

.hs-slide.active .hs-title {
    opacity: 1;
    transform: translateY(0);
}

.hs-title em {
    font-style: italic;
    color: var(--gold);
}

/* Description */
.hs-desc {
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    color: rgba(255, 255, 255, 0.52);
    max-width: 500px;
    line-height: 1.85;
    margin-bottom: 44px;

    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.9s var(--ease) 0.72s, transform 0.9s var(--ease) 0.72s;
}

.hs-slide.active .hs-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.hs-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s var(--ease) 0.9s, transform 0.9s var(--ease) 0.9s;
}

.hs-slide.active .hs-actions {
    opacity: 1;
    transform: translateY(0);
}

/* --- Arrow Controls --- */
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    z-index: 10;
    transition: background var(--trans-fast), border-color var(--trans-fast), color var(--trans-fast);
    backdrop-filter: blur(4px);
}

.hs-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
}

.hs-prev {
    left: 30px;
}

.hs-next {
    right: 30px;
}

/* --- Dot Navigation --- */
.hs-dots {
    position: absolute;
    bottom: 46px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: none;
    transition: background var(--trans-fast), transform var(--trans-fast);
    padding: 0;
}

.hs-dot.active {
    background: var(--gold);
    transform: scale(1.5);
}

/* --- Slide Counter --- */
.hs-counter {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

#hsCurrent {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
}

.hs-sep {
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.hs-total {
    font-size: 0.9rem;
}

/* --- Progress Bar --- */
.hs-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.hs-progress-bar {
    height: 100%;
    background: var(--gold);
    width: 0%;
    transition: width linear;
}

/* --- Scroll hint --- */
.hs-scroll-hint {
    position: absolute;
    bottom: 42px;
    left: 50%;
    transform: translateX(-50%) translateX(-80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    animation: fadeIn 1s var(--ease) 1.8s forwards;
}

.hs-scroll-hint span {
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

/* --- Floating Stats (bottom-right) --- */
.hs-stats {
    position: absolute;
    bottom: 80px;
    right: 100px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(8, 8, 8, 0.55);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    padding: 22px 30px;
    opacity: 0;
    animation: fadeUp 1s var(--ease) 1.2s forwards;
}

.hs-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hs-stat-item strong {
    font-family: var(--font-serif);
    font-size: 1.9rem;
    color: var(--gold);
    line-height: 1;
    font-weight: 600;
}

.hs-stat-item span {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 5px;
}

.hs-stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
    flex-shrink: 0;
}

/* =====================================================
   HERO SLIDER — RESPONSIVE
   ===================================================== */
@media (max-width: 991px) {
    .hs-arrow {
        width: 46px;
        height: 46px;
    }

    .hs-prev {
        left: 16px;
    }

    .hs-next {
        right: 16px;
    }

    .hs-stats {
        right: 20px;
        bottom: 90px;
        padding: 16px 20px;
        gap: 16px;
    }

    .hs-stat-item strong {
        font-size: 1.5rem;
    }

    .hs-counter {
        right: 20px;
        bottom: 50px;
    }
}

@media (max-width: 768px) {
    .hero-slider-wrap {
        height: 100svh;
        min-height: 520px;
    }

    .hs-content-wrap {
        padding-top: 80px;
    }

    .hs-title {
        font-size: clamp(2rem, 9vw, 3rem);
    }

    .hs-desc {
        font-size: 0.88rem;
        max-width: 100%;
    }

    .hs-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hs-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hs-stats {
        display: none;
    }

    .hs-scroll-hint {
        display: none;
    }

    .hs-dots {
        bottom: 28px;
    }

    .hs-counter {
        bottom: 24px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .hs-arrow {
        display: none;
    }

    .hs-title {
        font-size: clamp(1.8rem, 10vw, 2.6rem);
    }

    .hs-eyebrow span {
        font-size: 0.6rem;
        letter-spacing: 0.2em;
    }
}

/* =====================================================
   POPUP FORM
   ===================================================== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 4, 4, 0.92);
    backdrop-filter: blur(12px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--trans);
    padding: 20px;
}

.popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.popup-container {
    background: var(--dark);
    border: 1px solid var(--border);
    width: 100%;
    max-width: 580px;
    padding: 55px 50px;
    position: relative;
    transform: translateY(40px) scale(0.98);
    opacity: 0;
    transition: transform 0.7s var(--ease), opacity 0.7s var(--ease);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.popup-overlay.active .popup-container {
    transform: translateY(0) scale(1);
    opacity: 1;
    transition-delay: 0.1s;
}

.popup-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.4);
    background: transparent;
    border: none;
    cursor: none;
    transition: var(--trans-fast);
    padding: 10px;
}

.popup-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.popup-header {
    text-align: center;
    margin-bottom: 35px;
}

.popup-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--white);
    outline: none;
    transition: border-color var(--trans-fast), background var(--trans-fast);
    resize: none;
}

.popup-input:focus {
    border-color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
}

@media (max-width: 768px) {
    .popup-container {
        padding: 45px 30px;
    }

    .popup-header h3 {
        font-size: 2rem !important;
    }

    /* ===========================
   ACCORDION SECTION
   =========================== */
    .accordion-section {
        position: relative;
        padding: 120px 0;
        color: var(--white);
        overflow: hidden;
    }

    .accordion-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        z-index: -2;
        transform: scale(1.1);
        transition: transform 10s linear;
    }

    .accordion-section.visible .accordion-bg {
        transform: scale(1);
    }

    .container-narrow {
        max-width: 800px;
        position: relative;
        z-index: 10;
    }

    .accordion-wrap {
        display: flex;
        flex-direction: column;
    }

    .accordion-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: var(--trans);
    }

    .accordion-item:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .accordion-header {
        padding: 35px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: none;
        /* Controlled by custom cursor */
    }

    .accordion-title {
        font-size: clamp(1.2rem, 2vw, 1.8rem);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-family: var(--font-sans);
        font-weight: 500;
        margin: 0;
        transition: var(--trans-fast);
    }

    .accordion-item:hover .accordion-title,
    .accordion-item.active .accordion-title {
        color: var(--gold);
    }

    .accordion-toggle-icon {
        position: relative;
        width: 20px;
        height: 20px;
    }

    .accordion-toggle-icon .line {
        position: absolute;
        background: currentColor;
        transition: transform 0.4s var(--ease);
    }

    .accordion-toggle-icon .line-1 {
        width: 100%;
        height: 1px;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .accordion-toggle-icon .line-2 {
        width: 1px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .accordion-item.active .accordion-toggle-icon .line-2 {
        transform: translateX(-50%) rotate(90deg);
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .accordion-item.active .accordion-content {
        max-height: 300px;
        /* Large enough to fit content */
    }

    .accordion-inner {
        padding-bottom: 40px;
    }

    .accordion-inner p {
        color: rgba(255, 255, 255, 0.6);
        font-size: 1rem;
        margin-bottom: 25px;
        max-width: 600px;
    }

    .accordion-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        color: var(--gold);
    }

    .accordion-link i {
        font-size: 0.8rem;
        transition: transform 0.3s var(--ease);
    }

    .accordion-link:hover i {
        transform: translateX(5px);
    }

    /* Response for Mobile */
    @media (max-width: 768px) {
        .accordion-section {
            padding: 80px 0;
        }

        .accordion-header {
            padding: 25px 0;
        }

        .accordion-title {
            font-size: 1.2rem;
        }
    }
}

.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--white);
    outline: none;
    transition: border-color var(--trans-fast), background var(--trans-fast);
    resize: none;
}

.form-group select:focus {
    outline: none;
    border-color: #d4af37;
}

.form-group select option {
    background: #111;
    color: #fff;
}

@media (max-width:768px){
    .form-group select{
        font-size:14px;
        padding:12px;
    }
}

.plus::after{
    content:"+";
}

/* ---- MOBILE MENU & CURSOR ---- */
.mobile-nav a.mobile-sub-link {
    font-size: 1.1rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: -15px;
    margin-bottom: 5px;
}


/* ---- OUR WORK SHOWCASE ---- */
.project-showcase-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 4px;
    transition: transform 0.4s ease, background 0.4s ease;
}

.project-showcase-row:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-5px);
}

.project-showcase-row.reverse {
    grid-template-columns: 1fr 1.2fr;
}

.project-showcase-row.reverse .ps-image-col {
    order: 2;
}

.project-showcase-row.reverse .ps-text-col {
    order: 1;
}

.ps-image-col {
    width: 100%;
    height: 450px;
    overflow: hidden;
    position: relative;
}

.ps-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.project-showcase-row:hover .ps-image-col img {
    transform: scale(1.05);
}

.ps-text-col {
    padding: 20px;
}

.ps-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ps-category {
    color: var(--gold);
    font-weight: 600;
}

.ps-year {
    color: rgba(255,255,255,0.5);
}

.ps-text-col h3 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.ps-text-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.ps-features {
    list-style: none;
    margin-bottom: 30px;
}

.ps-features li {
    color: var(--white);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ps-features li i {
    color: var(--gold);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .project-showcase-row,
    .project-showcase-row.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }
    
    .project-showcase-row.reverse .ps-image-col {
        order: -1;
    }
    
    .ps-image-col {
        height: 300px;
    }
    
    .ps-text-col h3 {
        font-size: 2rem;
    }
}

/* ---- SERVICES 12-GRID ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-detail-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px 30px;
    border-radius: 4px;
    position: relative;
    transition: transform 0.4s ease, background 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-detail-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-5px);
}

.sdc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.sdc-icon {
    font-size: 2.2rem;
    color: var(--gold);
}

.sdc-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: rgb(246 224 167 / 48%);
    line-height: 1;
    font-weight: 700;
    transition: color 0.4s ease;
}

.service-detail-card:hover .sdc-number {
    color: rgb(255 255 255); /* light gold */
}

.service-detail-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.sdc-features {
    list-style: none;
    margin-top: auto; 
}

.sdc-features li {
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.sdc-features li i {
    color: var(--gold);
    font-size: 0.8rem;
    margin-top: 5px;
}

/* ---- DESIGN PRINCIPLES ---- */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.principle-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.principle-card:hover::before {
    transform: translateY(0);
}

.principle-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.principle-card h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.principle-card p {
    color: rgba(0,0,0,0.6);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Indented Mobile Navigation Sub-links */
.mobile-nav .mobile-sub-link {
    font-size: 0.95rem;
    padding-left: 40px;
    opacity: 0.8;
}

.mobile-nav .mobile-sub-link.active {
    opacity: 1;
    color: var(--gold);
}

/* =====================================================
   FLOATING CONTACT BUTTONS
   ===================================================== */
.floating-contact-wrap {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.floating-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    pointer-events: auto;
    text-decoration: none;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    color: var(--white);
}

.floating-btn.call {
    background: #e1b966;
    animation: pulse-orange 2s infinite;
}

.floating-btn.whatsapp {
    background: #25D366;
    animation: pulse-green 2s infinite linear;
}

@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(255, 122, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 122, 0, 0); }
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .floating-contact-wrap {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* =====================================================
   ABOUT PAGE REDESIGN
   ===================================================== */

/* Brand Story Split Section */
.about-split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-split-image {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.about-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-split-image::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    pointer-events: none;
}

/* Legacy Numbers Section */
.legacy-numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 40px 30px;
    text-align: center;
    transition: var(--trans);
}

.stat-card:hover {
    background: rgba(201, 169, 110, 0.05);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.52);
}

/* Methodology / The AND Approach */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.method-item {
    position: relative;
    padding-left: 30px;
    border-left: 1px solid rgb(226 185 100);
}

.method-item h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.method-item p {
    color: rgb(0 0 0);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Leadership Highlight */
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.leadership-card {
    position: relative;
    overflow: hidden;
    height: 450px;
}

.leadership-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.leadership-card:hover img {
    transform: scale(1.05);
}

.leadership-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(8, 8, 8, 0.9), transparent);
    color: var(--white);
}

.leadership-info h3 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.leadership-info span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
}

@media (max-width: 992px) {
    .about-split-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-split-image {
        height: 400px;
        order: -1;
    }
    .legacy-numbers-grid {
        grid-template-columns: 1fr 1fr;
    }
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .legacy-numbers-grid {
        grid-template-columns: 1fr;
    }
    .stat-number {
        font-size: 2.8rem;
    }
}


/* Shop Page Specifics */
.shop-hero {
    height: 60vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}

.shop-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 8, 8, 0.6);
}

.shop-hero-content {
    position: relative;
    z-index: 2;
}

/* Countdown Styles */
.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 60px auto 0;
}

.countdown-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: var(--trans);
}

.countdown-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.countdown-number {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .nav-right {
        gap: 10px;
    }
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .countdown-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .countdown-grid {
        grid-template-columns: 1fr;
    }
}
