/* ============================================================
   220 CREATIVE — COMPLETE REDESIGN v3
   Palette: #ffab18 (Gold) / #000000 (Black) / #FFFFFF (White)
   Grey accent: #888888 / #f2f2f2 / #111111
   Design: Premium agency — alternating B&W sections
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ─── Custom Properties ─── */
:root {
    --gold: #ffab18;
    --gold-hov: #ffc04a;
    --gold-dark: #d48c00;
    --gold-10: rgba(255, 171, 24, 0.10);
    --gold-20: rgba(255, 171, 24, 0.20);

    --black: #000000;
    --black-soft: #0d0d0d;
    --surface: #111111;
    --surface-2: #181818;

    --white: #ffffff;
    --off-white: #f5f5f5;

    --grey-900: #1a1a1a;
    --grey-700: #333333;
    --grey-500: #666666;
    --grey-300: #999999;
    --grey-100: #e8e8e8;
    --grey-50: #f5f5f5;

    --border-dark: rgba(255, 255, 255, 0.09);
    --border-light: rgba(0, 0, 0, 0.09);

    --font: 'Outfit', sans-serif;
    --ease: cubic-bezier(.25, .46, .45, .94);
    --t: 0.28s;
    --tf: 0.16s;

    --r-xs: 6px;
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 40px;
    --r-full: 9999px;

    --sh-dark: 0 8px 40px rgba(0, 0, 0, 0.45);
    --sh-gold: 0 8px 40px rgba(255, 171, 24, 0.20);
    --sh-light: 0 4px 24px rgba(0, 0, 0, 0.10);

    --nav-h: 80px;
    --max-w: 1180px;
}

/* ─── Reset ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--black);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul,
ol {
    list-style: none;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 32px;
}

/* ─── HELPERS ─── */
.gold {
    color: var(--gold) !important;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* ─── BADGE ─── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 14px 5px 10px;
    border-radius: var(--r-full);
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.badge-gold {
    background: var(--gold-10);
    border: 1px solid var(--gold-20);
    color: var(--gold);
}

.badge-dark {
    background: rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.10);
    color: var(--grey-500);
}

.badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
}

/* ═══════════════════════════
   BUTTONS
═══════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 34px;
    border: 2px solid transparent;
    border-radius: var(--r-full);
    font-family: var(--font);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--t) var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-black {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-black:hover {
    background: var(--surface);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    font-weight: 800;
}

.btn-gold:hover {
    background: var(--gold-hov);
    transform: translateY(-2px);
    box-shadow: var(--sh-gold);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline-black {
    background: transparent;
    color: var(--black);
    border-color: rgba(0, 0, 0, 0.25);
}

.btn-outline-black:hover {
    border-color: var(--black);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.30);
}

.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 0.95rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.80rem;
}

/* ═══════════════════════════
   TOP BAR — ultra thin, scrolling text
═══════════════════════════ */
.top-bar {
    background: var(--black);
    color: var(--grey-300);
    font-size: 0.72rem;
    height: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 1001;
    display: flex;
    align-items: center;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    padding: 0 40px;
    height: 100%;
}

.tb-left {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.tb-marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.tb-marquee-track {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: tbScroll 25s linear infinite;
}

.tb-marquee-track span {
    font-weight: 500;
    letter-spacing: 0.5px;
}

@keyframes tbScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tb-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
    padding-left: 20px;
}

.tb-right a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--grey-300);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--t);
}

.tb-right a:hover {
    color: var(--gold);
}

.tb-right a svg {
    color: var(--gold);
}

/* ═══════════════════════════
   NAVBAR — white bg, clean
═══════════════════════════ */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--t) var(--ease);
}

.navbar.scrolled {
    top: 0;
}

.navbar.dark-mode {
    background: rgba(0, 0, 0, 0.94);
    border-bottom-color: var(--border-dark);
}

.nav-menu-header, .nav-mobile-clients, .nm-section {
    display: none;
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    padding: 0 40px;
    gap: 24px;
}

.navbar-logo img {
    height: 34px;
    width: auto;
}

.navbar-nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-menu-inner {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: nowrap;
}

.nav-menu-inner a svg {
    display: none;
}

.navbar-nav a {
    padding: 7px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--black);
    border-radius: var(--r-full);
    transition: all var(--tf);
    white-space: nowrap;
}

.navbar-nav a:hover {
    background: var(--grey-50);
    color: var(--black);
}

.navbar-nav a.active {
    color: var(--gold);
    font-weight: 700;
}

/* Dark mode nav links (over hero) */
.navbar.dark-mode .navbar-nav a {
    color: var(--white);
}

.navbar.dark-mode .navbar-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.navbar.dark-mode .navbar-nav a.active {
    color: var(--gold);
}

.navbar-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    transition: all var(--t);
}

.nav-phone:hover {
    filter: brightness(1.2);
    transform: translateY(-1px);
}

.nav-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    transition: transform var(--t), box-shadow var(--t);
    text-decoration: none;
}

.nav-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    color: #fff;
}

.navbar-contact .btn {
    padding: 9px 22px;
    font-size: 0.82rem;
}

.navbar-toggle {
    display: none !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1002;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all var(--t);
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════
   HERO — all black, impactful
═══════════════════════════ */
.hero {
    background: var(--black);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Dot grid on black */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}

/* Gold glow */
.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 171, 24, 0.10) 0%, transparent 68%);
    top: -100px;
    right: -60px;
    animation: glowDrift 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes glowDrift {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-40px, 50px) scale(1.12);
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 140px 0 100px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-label-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.hero-label-text {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 22px;
    letter-spacing: -1.5px;
}

.hero-title em {
    color: var(--gold);
    font-style: normal;
    position: relative;
    display: inline-block;
}

.hero-title em::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineIn 0.8s var(--ease) 0.8s forwards;
}

@keyframes underlineIn {
    to {
        transform: scaleX(1);
    }
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--grey-300);
    line-height: 1.82;
    max-width: 440px;
    margin-bottom: 42px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid var(--border-dark);
}

.hs-item {
    display: block;
}

.hs-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.hs-num span {
    color: var(--gold);
}

.hs-lbl {
    font-size: 0.78rem;
    color: var(--grey-500);
}

/* Hero right: visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.hero-card-stack {
    position: relative;
    width: 100%;
    max-width: 440px;
}

.hc-main {
    background: var(--surface);
    border: 1px solid var(--border-dark);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--sh-dark);
}

.hc-main-top {
    background: var(--grey-900);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hc-dots {
    display: flex;
    gap: 6px;
}

.hc-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hc-dots span:nth-child(1) {
    background: #ff5f57;
}

.hc-dots span:nth-child(2) {
    background: #febc2e;
}

.hc-dots span:nth-child(3) {
    background: #28c840;
}

.hc-url {
    flex: 1;
    background: var(--surface-2);
    border-radius: var(--r-full);
    padding: 5px 14px;
    font-size: 0.73rem;
    color: var(--grey-500);
    border: 1px solid var(--border-dark);
}

.hc-main-body {
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.hc-logo-box {
    text-align: center;
}

.hc-logo-box img {
    height: 44px;
    filter: brightness(10);
    margin: 0 auto 12px;
}

.hc-logo-box p {
    font-size: 0.75rem;
    color: var(--grey-500);
}

.hc-float {
    position: absolute;
    background: var(--surface);
    border: 1px solid var(--border-dark);
    border-radius: var(--r-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--sh-dark);
    animation: floatBadge 5s ease-in-out infinite;
    min-width: 170px;
}

.hc-float:nth-of-type(2) {
    bottom: -24px;
    left: -48px;
    animation-delay: 0s;
}

.hc-float:nth-of-type(3) {
    top: -20px;
    right: -48px;
    animation-delay: 1.2s;
}

.hc-float:nth-of-type(4) {
    top: 48%;
    right: -56px;
    animation-delay: 2.2s;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hcf-icon {
    width: 38px;
    height: 38px;
    background: var(--gold-10);
    border: 1px solid var(--gold-20);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.hcf-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.hcf-sub {
    font-size: 0.70rem;
    color: var(--grey-500);
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll-txt {
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--grey-500);
}

.hero-scroll-line {
    width: 1.5px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2.4s ease infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 0;
    }

    40% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
    }

    41% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
        opacity: 0;
    }
}

/* ═══════════════════════════
   SERVICES — white section
═══════════════════════════ */
.services-section {
    background: var(--white);
    border-top: 1px solid var(--grey-100);
}

.section-label {
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.section-sub {
    font-size: 1rem;
    color: var(--grey-500);
    line-height: 1.8;
    max-width: 520px;
}

.sh-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 64px;
}

.sh-row .section-sub {
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.svc-item {
    background: var(--white);
    border: 1px solid var(--grey-100);
    padding: 40px 32px;
    position: relative;
    transition: all var(--t) var(--ease);
    overflow: hidden;
    cursor: default;
}

.svc-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--t) var(--ease);
    transform-origin: left;
}

.svc-item:hover {
    background: var(--black);
    border-color: var(--black);
    z-index: 1;
    transform: translateY(-4px);
    box-shadow: var(--sh-dark);
}

.svc-item:hover::before {
    transform: scaleX(1);
}

.svc-item:hover .svc-num {
    color: rgba(255, 171, 24, 0.12);
}

.svc-item:hover .svc-title {
    color: var(--white);
}

.svc-item:hover .svc-desc {
    color: var(--grey-500);
}

.svc-item:hover .svc-tags span {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--grey-500);
}

.svc-item:hover .svc-arrow {
    color: var(--gold);
    border-color: var(--gold-20);
    background: var(--gold-10);
}

.svc-num {
    font-size: 5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.045);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 20px;
    transition: color var(--t);
    user-select: none;
}

.svc-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--r-md);
    border: 1.5px solid var(--grey-100);
    background: var(--grey-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 26px;
    transition: all var(--t);
}

.svc-item:hover .svc-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.svc-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 11px;
    transition: color var(--t);
}

.svc-desc {
    font-size: 0.875rem;
    color: var(--grey-500);
    line-height: 1.78;
    margin-bottom: 22px;
    transition: color var(--t);
}

.svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 26px;
}

.svc-tags span {
    padding: 4px 11px;
    border: 1px solid var(--grey-100);
    border-radius: var(--r-full);
    font-size: 0.73rem;
    color: var(--grey-500);
    transition: all var(--t);
}

.svc-arrow {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--grey-100);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-500);
    font-size: 16px;
    transition: all var(--t);
}

/* ═══════════════════════════
   WHY US — black bg band
═══════════════════════════ */
.why-section {
    background: var(--black);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-left .section-label {
    color: var(--gold);
}

.why-left .section-title {
    color: var(--white);
}

.why-left .section-sub {
    color: var(--grey-500);
    margin-bottom: 36px;
}

.why-checks {
    margin-bottom: 40px;
}

.wc-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-dark);
}

.wc-item:first-child {
    border-top: 1px solid var(--border-dark);
}

.wc-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-10);
    border: 1px solid var(--gold-20);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.wc-title {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.wc-desc {
    font-size: 0.84rem;
    color: var(--grey-500);
    line-height: 1.65;
}

/* Stats on the right */
.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.ws-item {
    background: var(--surface);
    border: 1px solid var(--border-dark);
    padding: 40px 32px;
    transition: all var(--t) var(--ease);
}

.ws-item:hover {
    background: var(--gold);
}

.ws-num {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
    transition: color var(--t);
}

.ws-item:hover .ws-num {
    color: var(--black);
}

.ws-lbl {
    font-size: 0.84rem;
    color: var(--grey-500);
    font-weight: 500;
    transition: color var(--t);
}

.ws-item:hover .ws-lbl {
    color: rgba(0, 0, 0, 0.65);
}

/* ═══════════════════════════
   PORTFOLIO — white grid
═══════════════════════════ */
.portfolio-section {
    background: var(--off-white);
}

.portfolio-filter {
    display: flex;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.pf-btn {
    padding: 8px 20px;
    border: 1.5px solid var(--grey-100);
    border-radius: var(--r-full);
    background: transparent;
    color: var(--grey-500);
    font-family: var(--font);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--tf);
}

.pf-btn:hover,
.pf-btn.active {
    border-color: var(--gold);
    color: var(--black);
    background: var(--gold-10);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.pf-card {
    background: var(--white);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--grey-100);
    transition: all var(--t) var(--ease);
}

.pf-card:hover {
    transform: scale(1.01);
    box-shadow: var(--sh-light);
    z-index: 1;
}

.pf-thumb {
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.pf-thumb-1 {
    background: linear-gradient(145deg, #f0f0f0, #e0e0e0);
}

.pf-thumb-2 {
    background: linear-gradient(145deg, #fff5e0, #ffe8b0);
}

.pf-thumb-3 {
    background: linear-gradient(145deg, #f0f5ff, #dce8ff);
}

.pf-thumb-4 {
    background: linear-gradient(145deg, #f0fff5, #d0f0de);
}

.pf-thumb-5 {
    background: linear-gradient(145deg, #fff0f0, #ffd8d8);
}

.pf-thumb-6 {
    background: linear-gradient(145deg, #f5f0ff, #e0d0ff);
}

.pf-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--t);
}

.pf-card:hover .pf-overlay {
    opacity: 1;
}

.pf-ov-cat {
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pf-ov-title {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
    padding: 0 20px;
}

.pf-ov-btn {
    padding: 9px 22px;
    border: 1.5px solid var(--gold);
    border-radius: var(--r-full);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    transition: all var(--tf);
}

.pf-ov-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.pf-body {
    padding: 22px 24px;
}

.pf-cat {
    font-size: 0.70rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.pf-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--black);
}

.pf-desc {
    font-size: 0.83rem;
    color: var(--grey-500);
    line-height: 1.65;
}

/* ═══════════════════════════
   BLOG — black editorial
═══════════════════════════ */
.blog-section {
    background: var(--black);
}

.blog-section .section-label {
    color: var(--gold);
}

.blog-section .section-title {
    color: var(--white);
}

.blog-section .section-sub {
    color: var(--grey-500);
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2px;
}

.blog-card {
    background: var(--surface);
    border: 1px solid var(--border-dark);
    overflow: hidden;
    transition: all var(--t) var(--ease);
}

.blog-card:hover {
    border-color: rgba(255, 171, 24, 0.20);
    transform: translateY(-4px);
    box-shadow: var(--sh-dark);
}

.blog-thumb {
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    position: relative;
    overflow: hidden;
}

.blog-thumb-1 {
    background: linear-gradient(145deg, #1a1700, #2a2200);
}

.blog-thumb-2 {
    background: linear-gradient(145deg, #001432, #001a42);
}

.blog-thumb-3 {
    background: linear-gradient(145deg, #001a0a, #00240e);
}

.blog-small .blog-thumb {
    aspect-ratio: 16/8;
    font-size: 2rem;
}

.blog-body {
    padding: 24px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.blog-cat {
    font-size: 0.70rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.blog-date {
    font-size: 0.73rem;
    color: var(--grey-700);
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.38;
}

.blog-small .blog-title {
    font-size: 0.93rem;
}

.blog-excerpt {
    font-size: 0.84rem;
    color: var(--grey-500);
    line-height: 1.72;
    margin-bottom: 16px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.83rem;
    font-weight: 700;
    transition: gap var(--t);
}

.blog-card:hover .blog-link {
    gap: 11px;
}

/* ═══════════════════════════
   REFERENCES — white
═══════════════════════════ */
.ref-section {
    background: var(--white);
    border-top: 1px solid var(--grey-100);
}

.ref-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ref-card {
    background: var(--white);
    border: 1.5px solid var(--grey-100);
    border-radius: var(--r-md);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--t) var(--ease);
}

.ref-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--sh-light);
}

.ref-icon {
    width: 60px;
    height: 60px;
    background: var(--grey-50);
    border: 1.5px solid var(--grey-100);
    border-radius: var(--r-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 18px;
    transition: all var(--t);
}

.ref-card:hover .ref-icon {
    background: var(--gold-10);
    border-color: var(--gold-20);
}

.ref-card h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 7px;
    color: var(--black);
}

.ref-card p {
    font-size: 0.83rem;
    color: var(--grey-500);
    line-height: 1.65;
    margin-bottom: 14px;
}

.ref-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gold-10);
    border: 1px solid var(--gold-20);
    border-radius: var(--r-full);
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 700;
}

/* Testimonials */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testi-card {
    background: var(--grey-50);
    border: 1.5px solid var(--grey-100);
    border-radius: var(--r-md);
    padding: 32px;
    transition: all var(--t) var(--ease);
}

.testi-card:hover {
    border-color: var(--gold);
    box-shadow: var(--sh-light);
}

.testi-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 0.9rem;
    color: var(--grey-700);
    font-style: italic;
    line-height: 1.78;
    margin-bottom: 20px;
}

.testi-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--black);
}

.testi-co {
    font-size: 0.78rem;
    color: var(--gold);
}

/* ═══════════════════════════
   CONTACT SECTION / PAGE
═══════════════════════════ */
.contact-page {
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info-box {
    background: var(--black);
    border-radius: var(--r-lg);
    padding: 44px;
    color: var(--white);
}

.contact-info-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-info-box>p {
    color: var(--grey-500);
    font-size: 0.875rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-dark);
}

.ci-item:first-of-type {
    border-top: 1px solid var(--border-dark);
}

.ci-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-10);
    border: 1px solid var(--gold-20);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.ci-label {
    font-size: 0.70rem;
    color: var(--grey-500);
    margin-bottom: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ci-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--white);
}

.social-row {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.soc-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border-dark);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    cursor: pointer;
    transition: all var(--t);
}

.soc-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.contact-form-box {
    background: var(--white);
    border: 1.5px solid var(--grey-100);
    border-radius: var(--r-lg);
    padding: 44px;
    box-shadow: var(--sh-light);
}

.cf-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 6px;
    color: var(--black);
}

.cf-sub {
    color: var(--grey-500);
    font-size: 0.875rem;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 0.80rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--grey-700);
    letter-spacing: 0.3px;
}

.form-control {
    width: 100%;
    padding: 13px 18px;
    background: var(--grey-50);
    border: 1.5px solid var(--grey-100);
    border-radius: var(--r-sm);
    color: var(--black);
    font-family: var(--font);
    font-size: 0.92rem;
    transition: all var(--tf);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.form-control:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 171, 24, 0.12);
}

.form-control::placeholder {
    color: var(--grey-300);
}

select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* ═══════════════════════════
   CTA BAND — gold background
═══════════════════════════ */
.cta-band {
    background: var(--gold);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 36px 36px;
}

.cta-band-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-band h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--black);
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.cta-band p {
    color: rgba(0, 0, 0, 0.60);
    font-size: 1.05rem;
    margin: 0 auto 36px;
    max-width: 480px;
}

.cta-band .btn-black {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

/* ═══════════════════════════
   PAGE HEADER
═══════════════════════════ */
.page-hero {
    background: var(--black);
    padding: 140px 0 68px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

.page-hero-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 171, 24, 0.08) 0%, transparent 70%);
}

.page-hero h1 {
    position: relative;
    z-index: 1;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.page-hero h1 span {
    color: var(--gold);
}

.page-breadcrumb {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--grey-500);
    font-size: 0.83rem;
}

.page-breadcrumb a:hover {
    color: var(--gold);
}

.page-breadcrumb .sep {
    color: var(--gold);
}

/* ═══════════════════════════
   HAKKIMIZDA PAGE
═══════════════════════════ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img {
    background: var(--grey-50);
    border: 1.5px solid var(--grey-100);
    border-radius: var(--r-lg);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-img-inner {
    max-width: 60%;
    opacity: 0.8;
}

.about-img-badge {
    position: absolute;
    background: var(--black);
    color: var(--white);
    border-radius: var(--r-md);
    padding: 16px 22px;
    box-shadow: var(--sh-dark);
    animation: floatBadge 6s ease-in-out infinite;
}

.about-img-badge.br {
    bottom: -16px;
    right: -16px;
}

.about-img-badge.tl {
    top: -16px;
    left: -16px;
    animation-delay: 1.3s;
}

.about-img-badge .big {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.about-img-badge .sml {
    font-size: 0.72rem;
    color: var(--grey-500);
}

.about-text .section-sub {
    margin-bottom: 24px;
}

.about-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0 36px;
}

.ac-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--grey-700);
}

.ac-check {
    width: 22px;
    height: 22px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 11px;
    font-weight: 900;
    flex-shrink: 0;
}

/* Values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.val-item {
    background: var(--white);
    border: 1px solid var(--grey-100);
    padding: 36px 30px;
    transition: all var(--t) var(--ease);
}

.val-item:hover {
    background: var(--black);
    border-color: var(--black);
}

.val-item:hover .val-icon {
    background: var(--gold);
    border-color: var(--gold);
}

.val-item:hover .val-title {
    color: var(--white);
}

.val-item:hover .val-desc {
    color: var(--grey-500);
}

.val-icon {
    width: 56px;
    height: 56px;
    background: var(--grey-50);
    border: 1.5px solid var(--grey-100);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: all var(--t);
}

.val-title {
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 9px;
    color: var(--black);
    transition: color var(--t);
}

.val-desc {
    font-size: 0.855rem;
    color: var(--grey-500);
    line-height: 1.75;
    transition: color var(--t);
}

/* Timeline */
.timeline {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}

.tl-track {
    position: absolute;
    left: 14px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), rgba(255, 171, 24, 0.08));
}

.tl-item {
    padding: 0 0 40px 52px;
    position: relative;
}

.tl-dot {
    position: absolute;
    left: 6px;
    top: 3px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 2.5px solid var(--gold);
    border-radius: 50%;
}

.tl-year {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.tl-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 7px;
    color: var(--black);
}

.tl-desc {
    font-size: 0.875rem;
    color: var(--grey-500);
    line-height: 1.78;
}

/* ═══════════════════════════
   FOOTER
═══════════════════════════ */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 72px 0 0;
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer-brand img {
    height: 34px;
    margin-bottom: 18px;
    filter: brightness(10);
}

.footer-brand p {
    color: var(--grey-500);
    font-size: 0.855rem;
    line-height: 1.8;
    max-width: 280px;
    margin-bottom: 24px;
}

.footer-soc-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-sm);
    padding: 8px 16px;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--t);
    text-decoration: none;
}

.footer-soc-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.footer-col h5 {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-dark);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--grey-500);
    font-size: 0.855rem;
    transition: all var(--tf);
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-col ul li a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-ci {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 13px;
}

.footer-ci-ico {
    font-size: 14px;
    color: var(--gold);
    flex-shrink: 0;
}

.footer-ci-txt {
    font-size: 0.84rem;
    color: var(--grey-500);
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom-l {
    color: var(--grey-400);
    font-size: 0.78rem;
}

.footer-bottom-l span {
    color: var(--gold);
}

.footer-bottom-r {
    display: flex;
    gap: 20px;
}

.footer-bottom-r a {
    color: var(--grey-400);
    font-size: 0.78rem;
    transition: color var(--tf);
}

.footer-bottom-r a:hover {
    color: var(--gold);
}

/* ═══════════════════════════
   SCROLL PROGRESS BAR
═══════════════════════════ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), #ff6b18, var(--gold));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    z-index: 9999;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 12px rgba(255, 171, 24, 0.6);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* ═══════════════════════════
   HERO ENHANCEMENTS — Particles & Gradient Text
═══════════════════════════ */

/* Multi-color glow orbs */
.hero-glow-2 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.07) 0%, transparent 68%);
    bottom: -150px;
    left: -100px;
    animation: glowDrift2 14s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero-glow-3 {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 68%);
    top: 30%;
    left: 40%;
    animation: glowDrift3 10s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes glowDrift2 {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(60px, -40px) scale(1.15);
    }
}

@keyframes glowDrift3 {
    from {
        transform: translate(0, 0) scale(0.9);
        opacity: 0.5;
    }

    to {
        transform: translate(-30px, 30px) scale(1.1);
        opacity: 1;
    }
}

/* Animated gradient text for hero title em */
.hero-title em {
    background: linear-gradient(120deg, var(--gold), #ff6b18, #ffd700, var(--gold));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 4s ease infinite;
}

.hero-title em::after {
    -webkit-text-fill-color: initial;
    background-clip: initial;
    -webkit-background-clip: initial;
}

@keyframes gradientText {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.hero-particles span {
    position: absolute;
    display: block;
    width: 4px;
    height: 4px;
    background: rgba(255, 171, 24, 0.25);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

.hero-particles span:nth-child(1) {
    left: 10%;
    width: 3px;
    height: 3px;
    animation-duration: 18s;
    animation-delay: 0s;
}

.hero-particles span:nth-child(2) {
    left: 25%;
    width: 5px;
    height: 5px;
    animation-duration: 22s;
    animation-delay: 2s;
    background: rgba(99, 102, 241, 0.2);
}

.hero-particles span:nth-child(3) {
    left: 40%;
    width: 3px;
    height: 3px;
    animation-duration: 16s;
    animation-delay: 4s;
}

.hero-particles span:nth-child(4) {
    left: 55%;
    width: 6px;
    height: 6px;
    animation-duration: 24s;
    animation-delay: 1s;
    background: rgba(236, 72, 153, 0.15);
}

.hero-particles span:nth-child(5) {
    left: 70%;
    width: 4px;
    height: 4px;
    animation-duration: 20s;
    animation-delay: 3s;
}

.hero-particles span:nth-child(6) {
    left: 85%;
    width: 3px;
    height: 3px;
    animation-duration: 17s;
    animation-delay: 5s;
    background: rgba(255, 171, 24, 0.3);
}

.hero-particles span:nth-child(7) {
    left: 15%;
    width: 5px;
    height: 5px;
    animation-duration: 21s;
    animation-delay: 7s;
}

.hero-particles span:nth-child(8) {
    left: 60%;
    width: 3px;
    height: 3px;
    animation-duration: 19s;
    animation-delay: 2.5s;
    background: rgba(99, 102, 241, 0.15);
}

.hero-particles span:nth-child(9) {
    left: 35%;
    width: 4px;
    height: 4px;
    animation-duration: 23s;
    animation-delay: 6s;
}

.hero-particles span:nth-child(10) {
    left: 80%;
    width: 5px;
    height: 5px;
    animation-duration: 15s;
    animation-delay: 1.5s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* Floating geometric shapes */
.hero-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.06;
}

.hero-shape-1 {
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold);
    border-radius: 16px;
    top: 20%;
    right: 8%;
    animation: shapeRotate 20s linear infinite;
}

.hero-shape-2 {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(99, 102, 241, 0.5);
    border-radius: 50%;
    bottom: 25%;
    left: 5%;
    animation: shapeRotate 15s linear infinite reverse;
}

.hero-shape-3 {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(236, 72, 153, 0.3);
    top: 60%;
    right: 15%;
    animation: shapeFloat 8s ease-in-out infinite;
}

@keyframes shapeRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes shapeFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(15deg);
    }
}

/* ═══════════════════════════
   SHIMMER SWEEP EFFECT — Cards
═══════════════════════════ */
.svc-item::after,
.pf-card::after,
.blog-card::after,
.ref-card::after,
.testi-card::after,
.val-item::after,
.ws-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.04),
            rgba(255, 171, 24, 0.06),
            rgba(255, 255, 255, 0.04),
            transparent);
    transition: none;
    pointer-events: none;
    z-index: 2;
}

.svc-item:hover::after,
.pf-card:hover::after,
.blog-card:hover::after,
.ref-card:hover::after,
.testi-card:hover::after,
.val-item:hover::after,
.ws-item:hover::after {
    animation: shimmerSweep 0.8s ease forwards;
}

@keyframes shimmerSweep {
    0% {
        left: -100%;
    }

    100% {
        left: 120%;
    }
}

/* ═══════════════════════════
   3D TILT PERSPECTIVE — Cards
═══════════════════════════ */
.svc-item,
.pf-card,
.blog-card,
.ref-card,
.testi-card,
.val-item {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Neon glow border on hover — service & portfolio cards */
.svc-item:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 171, 24, 0.08),
        inset 0 1px 0 rgba(255, 171, 24, 0.1);
}

.pf-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15),
        0 0 24px rgba(255, 171, 24, 0.06);
}

.blog-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 171, 24, 0.1);
}

/* ═══════════════════════════
   SECTION WAVE DIVIDERS
═══════════════════════════ */
.section-divider-wave {
    position: relative;
    height: 80px;
    overflow: hidden;
    z-index: 2;
}

.section-divider-wave svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
}

.section-divider-wave.white-to-black svg path {
    fill: var(--black);
}

.section-divider-wave.black-to-white svg path {
    fill: var(--white);
}

.section-divider-wave.white-to-offwhite svg path {
    fill: var(--off-white);
}

.section-divider-wave.offwhite-to-black svg path {
    fill: var(--black);
}

.section-divider-wave.black-to-gold svg path {
    fill: var(--gold);
}

.section-divider-wave.gold-to-black svg path {
    fill: var(--black);
}

/* ═══════════════════════════
   PREMIUM BUTTON ENHANCEMENTS
═══════════════════════════ */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: none;
}

.btn:hover::before {
    animation: btnSweep 0.5s ease forwards;
}

@keyframes btnSweep {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Pulse glow on CTA */
.btn-gold {
    animation: ctaPulse 3s ease-in-out infinite;
}

.btn-gold:hover {
    animation: none;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 171, 24, 0.3);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 171, 24, 0);
    }
}

/* ═══════════════════════════
   NAVBAR ENHANCEMENTS
═══════════════════════════ */
.navbar-nav a {
    position: relative;
}

.navbar-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    transform: translateX(-50%);
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
    width: 60%;
}

/* ═══════════════════════════
   STATS GLOW ENHANCEMENT
═══════════════════════════ */
.ws-num,
.hs-num {
    text-shadow: 0 0 30px rgba(255, 171, 24, 0.15);
}

.ws-item {
    position: relative;
    overflow: hidden;
}

.ws-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 171, 24, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.ws-item:hover::before {
    opacity: 1;
}

/* ═══════════════════════════
   FOOTER AMBIENT GLOW
═══════════════════════════ */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    box-shadow: 0 0 40px 8px rgba(255, 171, 24, 0.12);
}

.footer-soc-btn:hover,
.soc-btn:hover {
    box-shadow: 0 0 20px rgba(255, 171, 24, 0.3),
        0 4px 12px rgba(255, 171, 24, 0.15);
}

/* ═══════════════════════════
   LINK UNDERLINE SLIDE-IN
═══════════════════════════ */
.footer-col ul li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.25s var(--ease);
    display: inline-block;
    margin-right: 0;
    width: 0;
    overflow: hidden;
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
    width: 18px;
}

/* ═══════════════════════════
   PORTFOLIO THUMBNAIL ZOOM
═══════════════════════════ */
.pf-thumb {
    transition: transform 0.6s var(--ease);
}

.pf-card:hover .pf-thumb {
    transform: scale(1.06);
}

.blog-thumb {
    transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-thumb {
    transform: scale(1.04);
}

/* ═══════════════════════════
   ANIMATIONS
═══════════════════════════ */
.aos {
    opacity: 0;
    transform: translateY(38px) scale(0.985);
    filter: blur(8px);
    transition:
        opacity 0.8s var(--ease),
        transform 0.8s cubic-bezier(.16, .84, .34, 1),
        filter 0.8s var(--ease);
    will-change: opacity, transform;
}

.aos.from-left {
    transform: translateX(-40px);
}

.aos.from-right {
    transform: translateX(40px);
}

.aos.scale-in {
    transform: scale(0.9);
}

.aos.visible {
    opacity: 1 !important;
    transform: none !important;
    filter: blur(0) !important;
}

.d1 {
    transition-delay: 0.07s !important;
}

.d2 {
    transition-delay: 0.14s !important;
}

.d3 {
    transition-delay: 0.21s !important;
}

.d4 {
    transition-delay: 0.28s !important;
}

.d5 {
    transition-delay: 0.35s !important;
}

.d6 {
    transition-delay: 0.42s !important;
}

.ha1 {
    animation: fadeUp 0.75s var(--ease) 0.05s both;
}

.ha2 {
    animation: fadeUp 0.75s var(--ease) 0.2s both;
}

.ha3 {
    animation: fadeUp 0.75s var(--ease) 0.35s both;
}

.ha4 {
    animation: fadeUp 0.75s var(--ease) 0.5s both;
}

.ha5 {
    animation: fadeUp 0.75s var(--ease) 0.65s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════
   MOBILE MENU
═══════════════════════════ */
@media (max-width: 1100px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hc-float:nth-of-type(2),
    .hc-float:nth-of-type(3),
    .hc-float:nth-of-type(4) {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-split {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .ref-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-h: 62px;
    }

    .navbar .container {
        padding: 0 20px;
    }

    .navbar-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .navbar-nav {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(12, 10, 8, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        z-index: 1001;
        opacity: 0;
        pointer-events: none;
        padding: 0;
        overflow: hidden;
        transform: translateX(-100%);
        transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .navbar-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .nav-menu-header {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-menu-logo {
        height: 36px;
        width: auto;
    }

    .nav-menu-close {
        width: 38px;
        height: 38px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: grid;
        place-items: center;
        color: var(--white);
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .nav-menu-close:active {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav-menu-inner {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 8px;
        padding: 24px;
        flex: 1;
        min-height: 0;
        overflow-y: auto;
    }

    .nav-menu-inner a {
        display: flex;
        align-items: center;
        gap: 16px;
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--white) !important;
        text-decoration: none;
        padding: 14px 16px;
        border-radius: 12px;
        transition: background 0.3s ease, color 0.3s ease;
    }

    .nav-menu-inner a svg {
        display: block;
    }

    .nav-menu-inner a .icon {
        color: var(--gold);
        transition: transform 0.3s ease;
    }

    .nav-menu-inner a.active, .nav-menu-inner a:hover {
        background: rgba(255, 171, 24, 0.1);
        color: var(--gold) !important;
    }

    .nm-extras {
        padding: 12px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        border-top: 1px solid rgba(255,255,255,0.08);
        margin-top: 8px;
    }

    .nm-social {
        display: flex;
        justify-content: center;
        gap: 12px;
        width: 100%;
    }

    .nm-social a {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        color: var(--gold) !important;
        display: grid;
        place-items: center;
        text-decoration: none;
        transition: background 0.3s ease, transform 0.3s ease;
        padding: 0;
    }

    .nm-social a:active {
        transform: scale(0.92);
        background: rgba(255, 255, 255, 0.1);
    }

    .nm-mail {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        color: rgba(255, 255, 255, 0.6) !important;
        text-decoration: none;
        padding: 0 !important;
    }
    
    .nm-mail .icon {
        color: var(--gold);
    }

    .nav-mobile-clients {
        display: block;
        padding: 16px 0 24px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
    }
    
    .nmc-title {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, 0.4);
        margin-bottom: 16px;
        padding: 0;
        font-weight: 700;
    }
    
    .nmc-track {
        animation-duration: 45s; /* Slower, smooth scroll */
    }
    
    .nmc-item {
        font-size: 0.95rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.6);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Bölüm ayırıcı */
    .nm-section {
        display: flex;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        flex-direction: column;
        gap: 12px;
    }

    .nm-clients-section {
        padding-bottom: 4px;
    }

    .nm-bottom-section {
        align-items: center;
        padding-bottom: 12px;
    }

    /* Eski nav-mobile-contact artık nav-menu-inner içinde nm-section olarak kullanılıyor */
    .nav-mobile-contact {
        display: none;
    }

    .nm-main-call {
        display: flex;
        align-items: center;
        gap: 16px;
        background: rgba(255, 255, 255, 0.05);
        padding: 16px 20px;
        border-radius: 14px;
        text-decoration: none;
        color: var(--white);
        font-weight: 800;
        font-size: 1.15rem;
        margin-bottom: 16px;
        transition: background 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nm-main-call:active {
        background: rgba(255, 255, 255, 0.1);
    }

    .nm-main-call .ic {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: var(--gold-10);
        color: var(--gold);
        display: grid;
        place-items: center;
    }

    .nm-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .nm-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px;
        border-radius: 12px;
        text-decoration: none;
        font-weight: 700;
        font-size: 0.85rem;
        transition: transform 0.3s ease, filter 0.3s ease;
    }

    .nm-btn:active {
        transform: scale(0.96);
    }

    .nm-wa {
        background: rgba(37, 211, 102, 0.15);
        color: #25D366;
        border: 1px solid rgba(37, 211, 102, 0.3);
    }

    .nm-google {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nm-google .icon {
        color: #4285F4;
    }

    .navbar-contact {
        display: none;
    }

    .navbar-toggle {
        display: flex !important;
    }

    .section {
        padding: 68px 0;
    }

    .hero-inner {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-visual {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-stats {
        grid-template-columns: 1fr 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-checks {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .sh-row {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .ref-grid {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-bottom-r {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .btn { padding: 12px 28px; font-size: 0.9rem; }
}

/* ═══════════════════════════
   WHATSAPP BOT WIDGET
═══════════════════════════ */
.wa-bot-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: var(--font);
}

.wa-bot-trigger {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-bot-trigger:hover {
    transform: scale(1.1);
}

.wa-bot-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: var(--white);
    border-radius: var(--r-md);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-bot-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.wa-bot-header {
    background: #25D366;
    color: #fff;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-bot-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
}

.wa-bot-close {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
    padding: 0;
    display: flex;
}

.wa-bot-close:hover {
    opacity: 1;
}

.wa-bot-body {
    padding: 20px;
}

.wa-bot-body p {
    font-size: 0.85rem;
    color: var(--grey-500);
    margin-bottom: 16px;
    line-height: 1.5;
}

.wa-bot-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wa-bot-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--grey-50);
    border: 1px solid var(--grey-100);
    border-radius: var(--r-sm);
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.wa-bot-opt:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

@media (max-width: 768px) {
    .wa-bot-wrapper {
        bottom: 16px;
        right: 16px;
    }
    .wa-bot-trigger {
        width: 54px;
        height: 54px;
    }
}

/* Menü açıkken WhatsApp balonunu gizle */
.navbar-nav.open ~ * .wa-bot-wrapper,
body.menu-open .wa-bot-wrapper {
    display: none !important;
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
        width: 100%;
    }
}
/* ============================================================
   NAVBAR — tutarlı premium koyu (her sayfada beyaz logo okunur)
   v4 override (2026)
   ============================================================ */
.navbar {
    background: rgba(8, 8, 8, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar.scrolled {
    background: rgba(8, 8, 8, 0.94);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}
.navbar .navbar-nav a { color: rgba(255, 255, 255, 0.82); }
.navbar .navbar-nav a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.navbar .navbar-nav a.active { color: var(--gold); }
.navbar .navbar-toggle span { background: #fff; }
.navbar-logo img { filter: none; }
