/* =============================================
   Setup34 Digital — Creative Agency Theme
   ============================================= */

:root {
    --fuchsia: #E91E63;
    --fuchsia-dark: #C2185B;
    --fuchsia-light: #FCE4EC;
    --fuchsia-glow: rgba(233, 30, 99, 0.3);
    --orange: #FF6B35;
    --gradient: linear-gradient(135deg, var(--orange), var(--fuchsia));
    --dark: #0a0a0f;
    --dark-soft: #16161d;
    --gray: #71717a;
    --gray-light: #f4f4f5;
    --white: #ffffff;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --radius: 16px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 0;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a, button, label {
    cursor: pointer;
}

::selection {
    background: var(--fuchsia);
    color: white;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--fuchsia);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10001;
    transform: translate(-50%, -50%);
    transition: width 0.2s var(--ease), height 0.2s var(--ease), background 0.2s;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(233, 30, 99, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.4s var(--ease), height 0.4s var(--ease), border-color 0.3s, opacity 0.3s;
}

body.cursor-hover .cursor {
    width: 60px;
    height: 60px;
    background: rgba(233, 30, 99, 0.1);
    mix-blend-mode: normal;
}

body.cursor-hover .cursor-follower {
    width: 70px;
    height: 70px;
    border-color: var(--fuchsia);
    opacity: 0.5;
}

/* ===== TOPBAR ===== */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 40px;
    transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
}

.topbar.solid {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 16px 40px;
}

.topbar-logo img {
    height: 46px;
    transition: height 0.3s;
}

.topbar.solid .topbar-logo img {
    height: 40px;
}

.menu-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    padding: 8px;
    position: relative;
    z-index: 200;
}

.trigger-line {
    display: block;
    width: 28px;
    height: 2px;
    background: white;
    transition: all 0.4s var(--ease);
    position: absolute;
    right: 0;
}

.topbar.solid .trigger-line {
    background: var(--dark);
}

.topbar.solid .trigger-text {
    color: var(--dark);
}

.trigger-line:first-child {
    top: 4px;
    width: 28px;
}

.trigger-line:nth-child(2) {
    top: 12px;
    width: 20px;
}

.trigger-text {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: white;
    margin-right: 40px;
    transition: color 0.3s;
}

.menu-trigger.active .trigger-line:first-child {
    transform: rotate(45deg);
    top: 8px;
    width: 24px;
    background: white !important;
}

.menu-trigger.active .trigger-line:nth-child(2) {
    transform: rotate(-45deg);
    top: 8px;
    width: 24px;
    background: white !important;
}

.menu-trigger.active .trigger-text {
    color: white !important;
}

/* ===== FULLSCREEN MENU ===== */
.fullmenu {
    position: fixed;
    inset: 0;
    z-index: 99;
    pointer-events: none;
}

.fullmenu.open {
    pointer-events: all;
}

.fullmenu-bg {
    position: absolute;
    inset: 0;
    background: var(--dark);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.7s var(--ease);
}

.fullmenu.open .fullmenu-bg {
    transform: scaleY(1);
}

.fullmenu-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 60px 60px;
    opacity: 0;
    transition: opacity 0.3s 0.1s;
}

.fullmenu.open .fullmenu-content {
    opacity: 1;
    transition: opacity 0.4s 0.4s;
}

.fullmenu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fullmenu-link {
    display: flex;
    align-items: center;
    gap: 24px;
    text-decoration: none;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

.fm-num {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
    font-weight: 500;
    min-width: 30px;
}

.fm-text {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
    color: white;
    transition: all 0.4s var(--ease);
    letter-spacing: -0.5px;
    position: relative;
}

.fullmenu-link:hover .fm-text {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.5);
    transform: translateX(20px);
}

.fullmenu-link:hover .fm-num {
    color: var(--fuchsia);
}

.fullmenu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 54px;
    right: 0;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

.fullmenu-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.fullmenu-info a,
.fullmenu-social a {
    display: block;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.fullmenu-info a:hover,
.fullmenu-social a:hover {
    color: var(--fuchsia);
}

.fullmenu-social {
    display: flex;
    gap: 20px;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--dark);
    padding: 0 40px;
}

.hero-gradient-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(233, 30, 99, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 80% 60%, rgba(255, 107, 53, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 50% 100%, rgba(233, 30, 99, 0.08) 0%, transparent 50%);
    animation: meshMove 12s ease-in-out infinite alternate;
}

@keyframes meshMove {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.1) translateY(-30px); }
}

.hero-noise {
    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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 120px 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--fuchsia);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(233, 30, 99, 0); }
}

.tag-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: white;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
}

.hero-headline .line {
    display: block;
    overflow: visible;
    padding-bottom: 8px;
}

.hero-headline .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100%);
    animation: wordReveal 1s var(--ease) forwards;
}

.hero-headline .line[data-delay="0"] .word { animation-delay: 0.5s; }
.hero-headline .line[data-delay="1"] .word { animation-delay: 0.7s; }

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glow-word {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 10px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.glow-dot {
    -webkit-text-fill-color: var(--fuchsia);
}

/* Typewriter */
.typewriter-wrapper {
    display: inline-flex;
    align-items: baseline;
}

.typewriter {
    display: inline-block;
    min-width: 2px;
}

.type-cursor {
    display: inline-block;
    color: var(--fuchsia);
    font-weight: 300;
    animation: blink 0.7s step-end infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.glow-word::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 20px;
    background: var(--fuchsia);
    filter: blur(40px);
    opacity: 0.4;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    margin-bottom: 44px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease) 0.9s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 28px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 1.1s forwards;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--fuchsia);
    color: white;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease);
}

.hero-btn-glow {
    position: absolute;
    inset: 0;
    border-radius: 60px;
    box-shadow: 0 0 40px var(--fuchsia-glow), 0 0 80px rgba(233, 30, 99, 0.15);
    opacity: 0;
    transition: opacity 0.4s;
}

.hero-btn:hover .hero-btn-glow {
    opacity: 1;
}

.hero-btn:hover {
    transform: scale(1.05);
}

.hero-btn-arrow {
    display: inline-flex;
    transition: transform 0.3s var(--ease);
}

.hero-btn:hover .hero-btn-arrow {
    transform: translateX(4px);
}

.reel-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

.reel-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.3s var(--ease);
}

.reel-btn:hover {
    color: white;
}

.reel-btn:hover .reel-icon {
    border-color: var(--fuchsia);
    background: rgba(233, 30, 99, 0.1);
}

/* Hero floating stats */
.hero-float-stats {
    position: absolute;
    right: 60px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 2;
}

.float-stat {
    text-align: right;
    opacity: 0;
    transform: translateX(30px);
    animation: fadeLeft 0.8s var(--ease) forwards;
    animation-delay: calc(1.2s + var(--delay));
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fs-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: white;
    line-height: 1;
}

.fs-plus {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--fuchsia);
    font-weight: 300;
}

.fs-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--fuchsia), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.5); }
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

/* ===== TICKER ===== */
.ticker {
    padding: 24px 0;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 40px;
    animation: tickerScroll 35s linear infinite;
    width: max-content;
    white-space: nowrap;
}

.ticker-track span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.25);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.ticker-dot {
    color: var(--fuchsia) !important;
    opacity: 0.5;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== SECTIONS COMMON ===== */
.section-tag {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--fuchsia);
    text-transform: uppercase;
    letter-spacing: 4px;
    display: block;
    margin-bottom: 20px;
}

.section-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.18;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.section-headline em {
    font-style: normal;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    margin-bottom: 60px;
}

a.section-link,
a.section-link:link,
a.section-link:visited {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 10px 22px 10px 24px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--fuchsia);
    text-decoration: none;
    border: 1.5px solid rgba(233, 30, 99, 0.25);
    border-radius: 100px;
    background: transparent;
    transition: all 0.4s var(--ease);
}

a.section-link:hover {
    background: var(--fuchsia);
    color: white;
    border-color: var(--fuchsia);
    box-shadow: 0 8px 24px var(--fuchsia-glow);
    text-decoration: none;
}

a.section-link span {
    display: inline-block;
    transition: transform 0.3s var(--ease);
}

a.section-link:hover span {
    transform: translateX(4px);
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0 80px;
    background: var(--white);
    overflow: hidden;
}

.services-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 40px 40px;
}

.services-scroll::-webkit-scrollbar {
    display: none;
}

.services-track {
    display: flex;
    gap: 24px;
    width: max-content;
}

.service-slide {
    width: 360px;
    min-height: 420px;
    padding: 40px 36px;
    padding-top: 44px;
    background: var(--gray-light);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
    border: 1px solid transparent;
}

.service-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease);
    z-index: 10;
    box-shadow: 0 2px 12px var(--fuchsia-glow);
}

.service-slide:hover {
    background: var(--white);
    border-color: rgba(233, 30, 99, 0.1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
    transform: translateY(-8px);
}

.service-slide:hover::before {
    transform: scaleX(1);
}

.slide-num {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 300;
    color: rgba(0,0,0,0.03);
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 24px;
    transition: color 0.4s;
}

.service-slide:hover .slide-num {
    color: rgba(233, 30, 99, 0.06);
}

.slide-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: white;
    color: var(--fuchsia);
    margin-bottom: 28px;
    transition: all 0.4s var(--ease);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.service-slide:hover .slide-icon {
    background: var(--fuchsia);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 30px var(--fuchsia-glow);
}

.service-slide h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--dark);
}

.service-slide p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--gray);
    flex-grow: 1;
}

.slide-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.slide-link span {
    transition: transform 0.3s var(--ease);
}

.slide-link:hover {
    color: var(--fuchsia);
}

.slide-link:hover span {
    transform: translateX(6px);
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--gray-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.75;
    margin: 24px 0 32px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
}

.hl-icon {
    color: var(--fuchsia);
    font-size: 0.6rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fuchsia);
    text-decoration: none;
    transition: gap 0.3s var(--ease);
}

.text-link:hover {
    gap: 16px;
}

/* About card stack */
.about-card-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card {
    padding: 36px;
    border-radius: 20px;
    transition: transform 0.4s var(--ease);
}

.about-card:hover {
    transform: translateY(-4px);
}

.ac-1 {
    background: var(--dark);
    color: white;
}

.ac-2 {
    background: var(--fuchsia);
    color: white;
}

.ac-3 {
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
}

.ac-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 300;
    line-height: 1;
    display: block;
}

.ac-desc {
    font-size: 0.9rem;
    opacity: 0.7;
    display: block;
    margin-top: 8px;
}

.ac-quote {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--dark);
    margin-bottom: 12px;
}

.ac-author {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--fuchsia);
}

/* ===== BLOG ===== */
.blog {
    padding: 120px 0;
}

.blog-list {
    display: flex;
    flex-direction: column;
}

.blog-row {
    display: grid;
    grid-template-columns: 100px 1fr 120px 40px;
    gap: 24px;
    align-items: center;
    padding: 28px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s var(--ease);
}

.blog-row:first-child {
    border-top: 1px solid rgba(0,0,0,0.06);
}

.blog-row:hover {
    padding-left: 16px;
    border-color: var(--fuchsia-light);
}

.br-date {
    font-size: 0.8rem;
    color: var(--gray);
    font-variant-numeric: tabular-nums;
}

.br-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.3s;
}

.blog-row:hover .br-title {
    color: var(--fuchsia);
}

.br-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--fuchsia);
    font-weight: 600;
}

.br-arrow {
    font-size: 1.2rem;
    color: var(--gray);
    transition: all 0.3s var(--ease);
}

.blog-row:hover .br-arrow {
    color: var(--fuchsia);
    transform: translateX(4px);
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--dark);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-center {
    display: flex;
    justify-content: center;
    text-align: center;
}

.contact-center .contact-left {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-center .contact-headline {
    text-align: center;
}

.contact-center .contact-meta {
    align-items: center;
    text-align: center;
}

.contact-center .contact-social {
    justify-content: center;
}

a.contact-page-btn,
a.contact-page-btn:link,
a.contact-page-btn:visited {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--fuchsia) !important;
    -webkit-text-fill-color: var(--fuchsia) !important;
    text-decoration: none !important;
    border: 1.5px solid rgba(233, 30, 99, 0.4);
    border-radius: 100px;
    background: transparent;
    transition: all 0.4s var(--ease);
    position: relative;
    z-index: 100;
    cursor: pointer !important;
    pointer-events: all !important;
}

a.contact-page-btn:hover {
    background: var(--fuchsia);
    color: white !important;
    -webkit-text-fill-color: white !important;
    border-color: var(--fuchsia);
    box-shadow: 0 8px 24px var(--fuchsia-glow);
}

a.contact-page-btn span {
    display: inline-block;
    transition: transform 0.3s var(--ease);
}

a.contact-page-btn:hover span {
    transform: translateX(4px);
}

.contact .section-tag {
    color: var(--fuchsia);
}

.contact-headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
}

.contact-headline em {
    font-style: normal;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.cm-item {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s;
}

a.cm-item:hover {
    color: var(--fuchsia);
}

.contact-social {
    display: flex;
    gap: 12px;
}

.cs-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
}

.cs-link:hover {
    border-color: var(--fuchsia);
    color: var(--fuchsia);
    background: rgba(233, 30, 99, 0.08);
}

/* Contact form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 16px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
}

.form-field textarea {
    resize: none;
}

.form-field label {
    position: absolute;
    top: 16px;
    left: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.35);
    pointer-events: none;
    transition: all 0.3s var(--ease);
}

.form-field input:focus ~ label,
.form-field input:valid ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:valid ~ label {
    top: -8px;
    font-size: 0.7rem;
    color: var(--fuchsia);
}

.field-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.4s var(--ease);
}

.form-field input:focus ~ .field-line,
.form-field textarea:focus ~ .field-line {
    width: 100%;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    align-self: flex-start;
    padding: 18px 40px;
    background: var(--fuchsia);
    color: white;
    border: none;
    border-radius: 60px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s var(--ease);
}

.submit-btn:hover {
    background: var(--fuchsia-dark);
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--fuchsia-glow);
}

.submit-arrow {
    transition: transform 0.3s var(--ease);
}

.submit-btn:hover .submit-arrow {
    transform: translateX(4px);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0 0;
    background: #050508;
    color: rgba(255,255,255,0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}

.footer-brand p {
    font-size: 0.85rem;
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.6;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.footer-col a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--fuchsia);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
}

.fs-link {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    transition: color 0.3s;
}

.fs-link:hover {
    color: var(--fuchsia);
}

/* ===== QUOTE FAB ===== */
.quote-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--fuchsia);
    color: white;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    box-shadow: 0 8px 30px var(--fuchsia-glow);
}

.quote-fab:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 50px rgba(233, 30, 99, 0.4);
}

.fab-pulse,
.fab-pulse-2 {
    position: absolute;
    inset: 0;
    border-radius: 60px;
    border: 2px solid var(--fuchsia);
    animation: fabPulse 2.5s ease-out infinite;
}

.fab-pulse-2 {
    animation-delay: 1.25s;
}

@keyframes fabPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

.fab-icon {
    display: flex;
    position: relative;
}

.fab-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
}

/* ===== QUOTE OVERLAY ===== */
.quote-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s var(--ease);
}

.quote-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.quote-close {
    position: absolute;
    top: 32px;
    right: 40px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.5rem;
    transition: color 0.3s;
    z-index: 10;
}

.quote-close:hover {
    color: white;
}

.quote-wizard {
    width: 100%;
    max-width: 600px;
    padding: 40px;
}

.qw-progress {
    height: 2px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    margin-bottom: 48px;
    overflow: hidden;
}

.qw-bar {
    height: 100%;
    width: 33.33%;
    background: var(--gradient);
    border-radius: 2px;
    transition: width 0.5s var(--ease);
}

.qw-steps {
    position: relative;
    min-height: 320px;
}

.qw-step {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s var(--ease);
    pointer-events: none;
}

.qw-step.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: relative;
}

.qw-step h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    margin-bottom: 32px;
}

.qw-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.qw-option {
    position: relative;
}

.qw-option input {
    position: absolute;
    opacity: 0;
}

.qw-option span {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: all 0.3s var(--ease);
}

.qw-option input:checked + span,
.qw-option:hover span {
    border-color: var(--fuchsia);
    color: white;
    background: rgba(233, 30, 99, 0.1);
}

.qw-option input:checked + span {
    background: var(--fuchsia);
    border-color: var(--fuchsia);
    box-shadow: 0 4px 20px var(--fuchsia-glow);
}

.qw-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.qw-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.qw-input:focus {
    border-color: var(--fuchsia);
}

.qw-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.qw-textarea {
    resize: none;
}

.qw-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.qw-btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s var(--ease);
}

.qw-prev {
    background: transparent;
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.qw-prev:hover {
    border-color: rgba(255,255,255,0.3);
    color: white;
}

.qw-prev.hidden {
    opacity: 0;
    pointer-events: none;
}

.qw-next {
    background: var(--fuchsia);
    color: white;
}

.qw-next:hover {
    background: var(--fuchsia-dark);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--fuchsia-glow);
}

.qw-success {
    text-align: center;
    padding: 40px 0;
}

.qw-check {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--fuchsia);
    font-size: 2rem;
    color: white;
    animation: scaleIn 0.5s var(--ease);
}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.qw-success p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
}

/* ===== REVEAL ANIMATIONS ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .topbar { padding: 20px 24px; }
    .hero { padding: 0 24px; }
    .hero-float-stats { right: 24px; bottom: 80px; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
    .service-slide { width: 300px; min-height: 380px; }
}

@media (max-width: 768px) {
    body { cursor: auto; }
    a, button, input, textarea, label { cursor: auto; }
    .cursor, .cursor-follower { display: none; }

    .topbar { padding: 16px 20px; }

    .hero-content { padding: 100px 0 140px; }
    .hero-headline {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }
    .hero-sub { font-size: 0.95rem; }
    .hero-float-stats {
        position: relative;
        right: auto;
        bottom: auto;
        flex-direction: row;
        gap: 20px;
        margin-top: 40px;
    }
    .float-stat { text-align: left; }
    .fs-number { font-size: 1.8rem; }

    .scroll-indicator { display: none; }

    .fullmenu-content { padding: 100px 24px 40px; }
    .fm-text { font-size: 2rem !important; }

    .service-slide { width: 280px; min-height: 360px; padding: 28px; }

    .blog-row {
        grid-template-columns: 1fr auto;
        gap: 8px;
    }
    .br-date, .br-tag { display: none; }
    .br-title { font-size: 1rem; }

    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }

    .quote-fab {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
    }
    .fab-label { font-size: 0.8rem; }

    .quote-wizard { padding: 24px; }
    .qw-step h3 { font-size: 1.3rem; }
}

@media (max-width: 480px) {
    .hero-headline { font-size: 2rem; }
    .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hero-float-stats { flex-wrap: wrap; }
}

/* =============================================
   REFERANSLAR
   ============================================= */
.referanslar {
    padding: 100px 0;
    background: var(--gray-light);
}

.ref-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 20px;
}

.ref-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 28px;
    background: var(--white);
    transition: all 0.4s var(--ease);
}

.ref-item:hover {
    background: rgba(233, 30, 99, 0.03);
}

.ref-item img {
    max-width: 120px;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.4s var(--ease);
}

.ref-item:hover img {
    filter: grayscale(0%) opacity(1);
}

@media (max-width: 1024px) {
    .ref-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .referanslar { padding: 60px 0; }
    .ref-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .ref-item {
        padding: 24px 20px;
    }
    .ref-item img {
        max-width: 90px;
        max-height: 36px;
    }
}

@media (max-width: 480px) {
    .ref-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
