/* ============================================
   SETPAN GROUP — Brown & Gold Industrial Prestige
   Master Stylesheet v3.1
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('tokens.css');

/* ── Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    background: var(--bg-brown);
    color: var(--text-body);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: var(--glow-heading)
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15
}

h3 {
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 700;
    line-height: 1.25
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast)
}

img {
    max-width: 100%;
    display: block
}

ul {
    list-style: none
}

::selection {
    background: var(--gold);
    color: var(--brown)
}

/* ── Layout ── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad)
}

.section {
    padding: var(--section-pad) 0
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--text-ivory)
}

.section-dark h2,
.section-dark h3 {
    color: var(--text-ivory)
}

.section-dark p {
    color: var(--text-ivory-muted)
}

/* Alternating dark section instead of white break */
.section-warm {
    background: var(--bg-brown-dark);
}

.section-warm p {
    color: var(--text-muted)
}

.section-warm .accent-line {
    background: var(--gradient-gold)
}

.section-warm .link-arrow {
    color: var(--gold)
}

.section-tint {
    background: var(--bg-tint)
}

/* Accent line — gold */
.accent-line {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    margin-bottom: var(--space-6)
}

.accent-line-center {
    margin-left: auto;
    margin-right: auto
}

/* ============================================
   BUTTONS — Executive Gold System
   ============================================ */

/* Primary: solid gold bg, black text */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: 18px 44px;
    background: var(--gradient-gold);
    color: var(--brown);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-btn);
    position: relative;
    overflow: hidden
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated), 0 0 20px rgba(199, 154, 59, 0.3);
    color: var(--brown-dark)
}

.btn-primary:hover::after {
    opacity: 1
}

.btn-primary span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: var(--space-3)
}

/* Ghost: transparent, gold border, gold text */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: 18px 44px;
    background: transparent;
    color: var(--text-gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--border-strong);
    cursor: pointer;
    transition: var(--transition)
}

.btn-ghost:hover {
    background: rgba(199, 154, 59, 0.08);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-glow)
}

/* Ghost on dark bg */
.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: 18px 44px;
    background: transparent;
    color: var(--text-ivory);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--border-ivory-strong);
    cursor: pointer;
    transition: var(--transition)
}

.btn-ghost-light:hover {
    background: rgba(199, 154, 59, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold-glow)
}

/* Solid dark */
.btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: 16px 38px;
    background: var(--brown);
    color: var(--ivory);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-card)
}

.btn-solid:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated)
}

/* Outline */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: 16px 38px;
    background: transparent;
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--border-default);
    cursor: pointer;
    transition: var(--transition)
}

.btn-outline:hover {
    background: var(--brown);
    color: var(--ivory);
    border-color: var(--brown);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover)
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center
}

.btn-lg {
    padding: 22px 56px;
    font-size: 15px;
    letter-spacing: 1.2px
}

/* ============================================
   NAVBAR — Brown & Gold States
   ============================================ */

/* STATE A: Over hero — transparent bg, gold text, ivory hamburger
   STATE B: Default (no hero) — brown bg, gold text, gold hamburger
   STATE C: Scrolled on hero page — brown bg, gold text */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-nav);
    height: 100px;
    transition: background 0.4s var(--ease-out), height 0.3s var(--ease-out), box-shadow 0.4s var(--ease-out)
}

.header.header-transparent {
    background: transparent
}

.header.header-transparent .nav-link {
    color: var(--gold)
}

.header.header-transparent .nav-link:hover,
.header.header-transparent .nav-link.active {
    color: var(--gold);
    text-shadow: var(--glow-heading)
}

.header.header-transparent .logo img {
    filter: none
}

.header.header-transparent .nav-menu .btn-solid {
    background: rgba(199, 154, 59, 0.15);
    border: 1px solid rgba(199, 154, 59, 0.3);
    color: var(--gold);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px)
}

.header.scrolled {
    background: var(--bg-brown);
    height: 86px;
    box-shadow: 0 1px 0 rgba(199, 154, 59, 0.15)
}

.header.scrolled .logo img {
    filter: none
}

.header.scrolled .nav-link {
    color: var(--gold)
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--gold)
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%
}

.logo {
    z-index: var(--z-nav-content);
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none
}

.logo:hover {
    opacity: 0.85
}

.logo img {
    height: 48px;
    transition: var(--transition-fast);
    flex-shrink: 0
}

/* Logo text: SETPAN bold, GROUP smaller tracked */
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    text-shadow: none
}

.logo-text .logo-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 1px;
    text-shadow: var(--glow-subtle)
}

.logo-text .logo-sub {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 2px
}

/* Logo on transparent header: gold text */
.header.header-transparent .logo-text .logo-name,
.header.header-transparent .logo-text .logo-sub {
    color: var(--gold)
}

.header.scrolled .logo img {
    height: 48px
}

.nav-menu {
    display: flex;
    gap: var(--space-2);
    align-items: center
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 20px;
    transition: var(--transition-fast)
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: transform 0.3s var(--ease-out)
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1)
}

.nav-menu .btn-solid {
    margin-left: var(--space-5);
    padding: 12px 28px;
    font-size: 12px
}

/* Hamburger */
.mobile-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: var(--z-nav-content);
    position: relative;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px
}

.mobile-toggle .bar {
    width: 26px;
    height: 2px;
    background: var(--text-heading);
    transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
    border-radius: 1px
}

/* STATE A bars: gold over hero */
.header.header-transparent .mobile-toggle .bar {
    background: var(--gold)
}

/* STATE B bars: dark when scrolled */
.header.scrolled .mobile-toggle .bar {
    background: var(--text-heading)
}

.mobile-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px)
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px)
}

/* Panel open: bars always ivory */
.mobile-toggle.active .bar {
    background: var(--ivory)
}

/* Full-screen mobile panel */
.mobile-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-dark);
    z-index: var(--z-mobile-panel);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out);
    padding: var(--space-8)
}

.mobile-panel.open {
    opacity: 1;
    visibility: visible
}

.mobile-panel .mobile-nav-link {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--text-ivory);
    padding: var(--space-4) 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out);
    position: relative
}

.mobile-panel.open .mobile-nav-link {
    opacity: 1;
    transform: translateY(0)
}

.mobile-panel.open .mobile-nav-link:nth-child(1) {
    transition-delay: 0.15s
}

.mobile-panel.open .mobile-nav-link:nth-child(2) {
    transition-delay: 0.25s
}

.mobile-panel.open .mobile-nav-link:nth-child(3) {
    transition-delay: 0.35s
}

.mobile-panel.open .mobile-nav-link:nth-child(4) {
    transition-delay: 0.45s
}

.mobile-panel.open .mobile-nav-link:nth-child(5) {
    transition-delay: 0.55s
}

.mobile-nav-link:hover {
    color: var(--gold)
}

/* Gold underline animation on active */
.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 2px;
    background: var(--gold);
    transition: transform 0.3s var(--ease-out)
}

.mobile-nav-link:hover::after,
.mobile-nav-link.active::after {
    transform: translateX(-50%) scaleX(1)
}

.mobile-panel .mobile-cta {
    margin-top: var(--space-8);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out) 0.65s
}

.mobile-panel.open .mobile-cta {
    opacity: 1;
    transform: translateY(0)
}

/* Mobile sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: var(--z-sticky);
    padding: 16px 28px;
    background: var(--gradient-gold);
    color: var(--brown);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 13px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-card-hover);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-items: center;
    gap: var(--space-2);
    transition: var(--transition)
}

.mobile-sticky-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-elevated)
}

/* ============================================
   HERO — Cinematic Black & Gold
   ============================================ */

/* Hero: flex-start + padding-top for ~45% vertical bias */
.hero-cinematic {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: flex-start;
    padding-top: calc(100px + 12vh);
    overflow: hidden
}

.hero-cinematic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--overlay-hero);
    z-index: 1
}

/* Metallic grain texture overlay */
.hero-cinematic::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    z-index: 1;
    pointer-events: none;
    opacity: 0.5
}

/* Radial gold highlight behind headline */
.hero-glow {
    position: absolute;
    top: 35%;
    left: 30%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(199, 154, 59, 0.06) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

/* --- Hero Media Marquee --- */
.hero-media-marquee {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background: #111;
}

.marquee-track {
    display: flex;
    width: max-content;
    height: 100%;
    animation: marqueeScroll 45s linear infinite;
    will-change: transform;
}

/* Pause animation on hover */
.hero-media-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    width: 35vw; /* Desktop width */
    height: 100%;
    flex-shrink: 0;
    position: relative;
    border-right: 2px solid rgba(0, 0, 0, 0.5); /* Subtle separation line */
}

.marquee-item img,
.marquee-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    user-select: none;
    pointer-events: none; /* Let clicks pass through */
}

@keyframes marqueeScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); } /* Scrolls exactly half of the duplicated track width */
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .marquee-item {
        width: 50vw; /* Tablet width */
    }
}
@media (max-width: 576px) {
    .marquee-item {
        width: 80vw; /* Mobile width */
        border-right: 1px solid rgba(0, 0, 0, 0.4);
    }
    .marquee-track {
        animation-duration: 30s; /* slightly faster on mobile feels better */
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--container-pad);
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%
}

.hero-inner {
    max-width: var(--content-max)
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: 10px 24px;
    background: rgba(199, 154, 59, 0.10);
    border: 1px solid rgba(199, 154, 59, 0.30);
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-7)
}

.hero-cinematic h1 {
    color: var(--text-ivory);
    margin-bottom: var(--space-6);
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4)
}

.hero-cinematic p {
    color: var(--text-gold-muted);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    margin-bottom: var(--space-8);
    max-width: 600px
}

.hero-actions {
    display: flex;
    gap: var(--space-5);
    flex-wrap: wrap;
    align-items: center
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    color: var(--text-ivory-muted);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    animation: scrollPulse 2s ease-in-out infinite
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent)
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(0)
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(8px)
    }
}

/* Vertical accent line */
.hero-vline {
    position: absolute;
    left: var(--container-pad);
    top: 20%;
    height: 120px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    z-index: 2;
    opacity: 0.4
}

/* Page hero (services, references, contact) */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-dark);
    padding: 140px 20px 80px
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--overlay-page-hero);
    z-index: 0
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    z-index: 0;
    pointer-events: none;
    opacity: 0.4
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: var(--content-max)
}

.page-hero-badge {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid rgba(199, 154, 59, 0.40);
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-6)
}

.page-hero h1 {
    color: var(--text-ivory);
    margin-bottom: var(--space-5);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4)
}

.page-hero p {
    color: var(--text-ivory-muted);
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.8;
    margin: 0 auto
}

/* ============================================
   TRUST / AUTHORITY STRIPS
   ============================================ */
.trust-strip {
    background: var(--brown);
    color: var(--ivory);
    padding: var(--space-7) 20px
}

.trust-strip-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-8);
    max-width: 1100px;
    margin: 0 auto
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px
}

.trust-item .trust-icon {
    width: 36px;
    height: 36px;
    background: rgba(199, 154, 59, 0.12);
    border: 1px solid rgba(199, 154, 59, 0.30);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0
}

.stats-strip {
    padding: var(--section-pad) 20px;
    background: var(--bg-brown-dark)
}

.stats-strip-inner {
    display: flex;
    justify-content: center;
    gap: var(--space-10);
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto
}

.stat-item {
    text-align: center
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.03em
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 1.5px
}

/* ============================================
   CARDS — Executive Gold System
   ============================================ */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--grid-min), 1fr));
    gap: var(--space-7)
}

.card {
    background: var(--bg-brown-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
    position: relative
}

.card:hover {
    transform: translateY(-16px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(199, 154, 59, 0.20)
}

/* Service card */
.card-service {
    text-align: center;
    padding: var(--space-8) var(--space-7)
}

.card-service .card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-6);
    background: var(--gradient-gold);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(199, 154, 59, 0.20);
    transition: var(--transition)
}

.card:hover .card-icon {
    transform: scale(1.08) rotate(3deg);
    box-shadow: 0 16px 45px rgba(199, 154, 59, 0.30)
}

.card-service .card-icon img {
    width: 48px;
    height: 48px;
    filter: brightness(0) invert(1)
}

.card-service h3 {
    margin-bottom: var(--space-4);
    color: var(--text-heading)
}

.card-service p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-6);
    font-size: 1rem
}

/* Card with image header */
.card-header-area {
    position: relative;
    height: 280px;
    overflow: hidden
}

.card-header-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out)
}

.card:hover .card-header-area img {
    transform: scale(1.06)
}

.card-image-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-card);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out);
    display: flex;
    align-items: flex-end;
    padding: var(--space-6)
}

.card:hover .card-image-overlay {
    opacity: 1
}

.card-image-overlay .overlay-service {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 700
}

.card-image-overlay h3 {
    font-size: 1.5rem;
    color: var(--ivory);
    margin-top: var(--space-2);
    font-weight: 800
}

.card-body {
    padding: var(--space-6)
}

.card-tag {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-4);
    border: 1px solid var(--border-gold)
}

.card-body h3,
.card-body h4 {
    margin-bottom: var(--space-3);
    font-weight: 800
}

.card-body .card-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: var(--space-4)
}

/* Arrow link */
.link-arrow {
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition-fast)
}

.link-arrow::after {
    content: '→';
    transition: transform 0.3s var(--ease-out)
}

.link-arrow:hover {
    color: var(--bronze);
    gap: 16px
}

.link-arrow:hover::after {
    transform: translateX(4px)
}

/* Card icon header (services detail) */
.card-icon-header {
    background: var(--gradient-gold-soft);
    padding: 60px 40px;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle)
}

.card-icon-header .card-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto var(--space-6)
}

.card-icon-header h3 {
    font-size: 1.6rem;
    margin-bottom: var(--space-3)
}

.card-icon-header p {
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto
}

.card-feature-body {
    padding: 40px
}

.feature-list {
    padding: 0;
    margin: 0 0 var(--space-7)
}

.feature-list li {
    padding: 16px 0 16px 44px;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.95rem;
    color: var(--text-body);
    position: relative;
    transition: var(--transition-fast)
}

.feature-list li:last-child {
    border-bottom: none
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: var(--gradient-gold);
    color: var(--brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px
}

.feature-list li:hover {
    padding-left: 50px;
    color: var(--gold)
}

.card-cta {
    background: var(--gradient-gold);
    color: var(--brown);
    padding: 18px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    box-shadow: var(--shadow-btn);
    transition: var(--transition);
    display: block;
    width: 100%;
    border: none;
    cursor: pointer
}

.card-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover)
}

/* ============================================
   REFERENCE DETAIL
   ============================================ */
.ref-detail-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.ref-detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 15, 18, 0.30), rgba(13, 15, 18, 0.80));
    z-index: 1
}

.ref-detail-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.ref-detail-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--ivory)
}

.ref-detail-category {
    display: inline-block;
    background: transparent;
    color: var(--gold);
    padding: 8px 22px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-5);
    border: 1px solid var(--border-gold)
}

.ref-detail-hero h1 {
    color: var(--ivory);
    animation: heroFadeIn 0.8s var(--ease-out)
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.detail-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
    flex-wrap: wrap
}

.detail-tab-btn {
    background: var(--bg-brown-dark);
    border: 2px solid var(--border-default);
    padding: 16px 36px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-heading);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.8px
}

.detail-tab-btn:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.detail-tab-btn.active {
    background: var(--gradient-gold);
    border-color: transparent;
    color: var(--brown)
}

.detail-content {
    display: none;
    animation: fadeIn 0.4s var(--ease-out)
}

.detail-content.active {
    display: block
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.project-description {
    background: var(--bg-brown-dark);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle)
}

.project-description h2 {
    font-size: 2rem;
    margin-bottom: var(--space-5);
    color: var(--gold)
}

.project-description p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-muted);
    white-space: pre-line
}

.media-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-5)
}

.media-gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: var(--transition)
}

.media-gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover)
}

.media-gallery-item img,
.media-gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

/* Lightbox — dark cinematic */
.lightbox,
.video-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--overlay-dark);
    z-index: var(--z-lightbox);
    justify-content: center;
    align-items: center
}

.lightbox.active,
.video-lightbox.active {
    display: flex
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 52px;
    height: 52px;
    background: var(--ivory);
    color: var(--brown);
    border: none;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10000
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--brown);
    transform: rotate(90deg)
}

.lightbox-img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm)
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(246, 244, 239, 0.95);
    color: var(--brown);
    border: none;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10001
}

.lightbox-nav:hover {
    background: var(--gold);
    transform: translateY(-50%) scale(1.1)
}

.lightbox-nav.prev {
    left: 24px
}

.lightbox-nav.next {
    right: 24px
}

.lightbox-counter {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 15, 18, 0.8);
    color: var(--ivory);
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    z-index: 10001
}

/* Video player */
.video-player-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-depth)
}

.video-player {
    width: 100%;
    height: 100%;
    display: block
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 60px 20px 15px;
    opacity: 0;
    transition: opacity 0.3s ease
}

.video-player-container:hover .video-controls {
    opacity: 1
}

.video-progress {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    margin-bottom: 15px
}

.video-progress:hover {
    height: 7px
}

.video-progress-filled {
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear
}

.video-controls-bottom {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--ivory)
}

.video-btn {
    background: none;
    border: none;
    color: var(--ivory);
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px
}

.video-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1)
}

.video-btn-lg {
    width: 48px;
    height: 48px;
    font-size: 24px
}

.video-btn svg {
    display: block
}

.video-time {
    font-size: 13px;
    font-weight: 500;
    margin-right: auto;
    color: rgba(246, 244, 239, 0.8)
}

.video-volume {
    display: flex;
    align-items: center;
    gap: 10px
}

#volumeSlider {
    width: 80px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    outline: none
}

#volumeSlider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer
}

#volumeSlider::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    border: none
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden
}

.video-thumbnail video {
    pointer-events: none
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 15, 18, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease
}

.video-thumbnail:hover .video-play-overlay {
    opacity: 1
}

.video-play-overlay .play-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    color: var(--brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    padding-left: 5px;
    box-shadow: var(--shadow-card-hover);
    transition: transform 0.3s var(--ease-out)
}

.video-thumbnail:hover .play-icon {
    transform: scale(1.1)
}

.video-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(13, 15, 18, 0.8);
    color: var(--ivory);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
    background: var(--bg-brown-dark);
    padding: 200px 0 120px;
    text-align: center
}

.contact-hero h5 {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: var(--space-5)
}

.contact-hero h1 {
    margin-bottom: var(--space-5)
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-7);
    margin: -80px auto var(--space-10);
    max-width: 1000px;
    position: relative;
    z-index: var(--z-card)
}

.contact-method {
    background: var(--bg-brown-dark);
    padding: var(--space-8) var(--space-7);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
    text-decoration: none;
    display: block
}

.contact-method:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
    box-shadow: var(--shadow-card-hover)
}

.contact-method-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-tint-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    font-size: 32px;
    transition: var(--transition)
}

.contact-method:hover .contact-method-icon {
    background: var(--gold);
    transform: scale(1.1)
}

.contact-method h3 {
    font-size: 1.4rem;
    margin-bottom: var(--space-4)
}

.contact-method p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-4)
}

.contact-detail {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-heading)
}

.map-section {
    margin-top: var(--space-10);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-elevated)
}

.map-section iframe {
    width: 100%;
    height: 500px;
    border: none
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-10)
}

.info-card {
    background: var(--bg-brown-dark);
    padding: var(--space-6);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
    box-shadow: var(--shadow-subtle)
}

.info-card h4 {
    font-size: 1rem;
    margin-bottom: var(--space-3);
    color: var(--text-heading)
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem
}

/* ============================================
   LISTINGS PAGE
   ============================================ */
.listings-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-brown-dark);
    padding: 180px 0 120px;
    text-align: center
}

.listings-content {
    text-align: center;
    max-width: 650px;
    width: 100%
}

.sahibinden-logo {
    max-width: 260px;
    width: 100%;
    height: auto;
    margin: 0 auto var(--space-7);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
    animation: floatSlow 5s ease-in-out infinite
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.listings-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: var(--space-5);
    line-height: 1.2
}

.listings-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-7)
}

.sahibinden-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--gradient-gold);
    color: var(--brown-dark);
    padding: 20px 50px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    box-shadow: var(--shadow-btn);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none
}

.sahibinden-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elevated), 0 0 20px rgba(199, 154, 59, 0.3);
    color: var(--brown-dark)
}

.sahibinden-btn::after {
    content: '→';
    font-size: 1.4rem;
    transition: transform 0.3s var(--ease-out)
}

.sahibinden-btn:hover::after {
    transform: translateX(5px)
}

.info-box {
    margin-top: var(--space-7);
    padding: var(--space-6);
    background: var(--bg-brown-mid);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle)
}

.info-box h3 {
    font-size: 1.15rem;
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2)
}

.info-box p {
    color: var(--text-muted);
    line-height: 1.7
}

/* ============================================
   FOOTER — Black & Gold Authority
   ============================================ */
.footer {
    background: var(--bg-footer);
    color: rgba(246, 244, 239, 0.75)
}

/* Top band: gold authority statement */
.footer-authority {
    padding: var(--space-9) 0;
    border-bottom: 1px solid rgba(199, 154, 59, 0.15);
    text-align: center
}

.footer-authority h3 {
    color: var(--gold);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 800;
    margin-bottom: var(--space-4);
    letter-spacing: -0.01em
}

.footer-authority p {
    color: var(--text-ivory-muted);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.8
}

/* Middle: links grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-8);
    padding: var(--space-9) 0
}

.footer-brand img {
    height: 40px;
    margin-bottom: var(--space-5);
    filter: brightness(0) invert(1);
    opacity: 0.9
}

.footer-brand p {
    color: rgba(246, 244, 239, 0.50);
    font-size: 0.9rem;
    line-height: 1.9
}

.footer-brand .trust-badge-text {
    margin-top: var(--space-4);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px
}

.footer-column h4 {
    color: var(--gold);
    margin-bottom: var(--space-5);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8
}

.footer-column ul {
    padding: 0
}

.footer-column a {
    color: rgba(246, 244, 239, 0.55);
    display: block;
    margin-bottom: var(--space-3);
    font-size: 14px;
    transition: var(--transition-fast)
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: 8px
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
    transition: var(--transition-fast);
    color: rgba(246, 244, 239, 0.55);
    text-decoration: none;
    font-size: 14px
}

.footer-contact-item:hover {
    transform: translateX(6px);
    color: var(--gold)
}

.footer-icon {
    font-size: 20px;
    color: var(--gold);
    flex-shrink: 0;
    opacity: 0.7
}

.footer-contact-item .phone-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ivory)
}

/* Bottom: legal strip */
.footer-legal {
    border-top: 1px solid rgba(199, 154, 59, 0.08);
    padding: var(--space-6) 0;
    text-align: center
}

.footer-legal p {
    font-size: 12px;
    color: rgba(246, 244, 239, 0.25);
    letter-spacing: 0.5px
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media(max-width:968px) {
    .mobile-toggle {
        display: flex
    }

    .mobile-sticky-cta {
        display: inline-flex
    }

    .nav-menu {
        display: none
    }

    .logo img {
        height: 40px !important
    }
}

@media(max-width:768px) {
    .card-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6)
    }

    .media-gallery {
        grid-template-columns: 1fr
    }

    .contact-methods {
        grid-template-columns: 1fr;
        margin-top: var(--space-7);
        gap: var(--space-5)
    }

    .info-cards {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-7)
    }

    .hero-cinematic {
        min-height: 100vh;
        padding-top: calc(80px + 8vh)
    }

    .hero-cinematic h1 {
        font-size: clamp(2.6rem, 9vw, 3.8rem)
    }

    .hero-cinematic p {
        font-size: 1.05rem
    }

    .hero-actions {
        flex-direction: column;
        width: 100%
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-ghost-light {
        width: 100%;
        justify-content: center
    }

    .page-hero {
        min-height: 50vh;
        padding: 120px 20px 60px
    }

    .page-hero h1 {
        font-size: clamp(2.2rem, 7vw, 3.2rem)
    }

    .trust-strip-inner {
        flex-direction: column;
        gap: var(--space-4);
        align-items: center
    }

    .stats-strip-inner {
        gap: var(--space-8)
    }

    .contact-hero {
        padding: 160px 0 100px
    }

    .contact-hero h1 {
        font-size: clamp(2rem, 6vw, 2.8rem)
    }

    .map-section iframe {
        height: 320px
    }

    .hero-vline {
        display: none
    }

    .scroll-indicator {
        display: none
    }

    .ref-detail-hero {
        min-height: 45vh
    }

    .ref-detail-hero h1 {
        font-size: clamp(1.8rem, 5vw, 2.4rem)
    }

    .project-description {
        padding: var(--space-6)
    }

    .lightbox-nav {
        width: 48px;
        height: 48px;
        font-size: 26px
    }

    .lightbox-nav.prev {
        left: 12px
    }

    .lightbox-nav.next {
        right: 12px
    }

    .lightbox-close {
        width: 44px;
        height: 44px;
        top: 20px;
        right: 20px;
        font-size: 18px
    }

    .footer-authority {
        padding: var(--space-7) 0
    }
}

@media(max-width:576px) {
    .hero-cinematic h1 {
        font-size: 2.2rem
    }

    .page-hero h1 {
        font-size: 2rem
    }

    .card-service {
        padding: var(--space-7) var(--space-5)
    }

    .card-icon-header {
        padding: var(--space-7) var(--space-5)
    }

    .card-feature-body {
        padding: var(--space-6) var(--space-5)
    }

    .feature-list li {
        font-size: 0.9rem;
        padding-left: 40px
    }

    .stat-number {
        font-size: 2.8rem
    }

    .stats-strip-inner {
        gap: var(--space-7)
    }
}

@media(max-width:480px) {
    .header {
        height: 80px
    }

    .header.scrolled {
        height: 72px
    }

    .logo img {
        height: 36px !important
    }

    .hero-cinematic h1 {
        font-size: 2rem
    }

    .hero-badge {
        font-size: 10px;
        padding: 8px 18px;
        letter-spacing: 2px
    }

    .page-hero h1 {
        font-size: 1.9rem
    }

    .card-service .card-icon {
        width: 80px;
        height: 80px
    }

    .card-service .card-icon img {
        width: 40px;
        height: 40px
    }

    .listings-title {
        font-size: 1.6rem
    }

    .sahibinden-btn {
        padding: 18px 36px;
        font-size: 1rem
    }
}

@media(max-height:700px) {
    .listings-hero {
        min-height: auto;
        padding: 100px 20px 40px
    }

    .hero-cinematic {
        min-height: 85vh
    }
}