:root {
    /* Colors */
    --bg-main: #030303;
    --bg-sec: #0a0a0a;
    --bg-ter: #111111;
    --text-main: #ffffff;
    --text-sec: #999999;
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-dark: #997A00;
    
    /* Typography */
    --font-heading: 'Syne', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Layout */
    --container: 1400px;
    --transition-smooth: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-hover: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none; /* Custom cursor */
}

body.loading {
    overflow: hidden;
}

/* Global Styles */
h1, h2, h3, h4, h5, h6, .logo {
    font-family: var(--font-heading);
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

h1 { font-size: clamp(3rem, 6vw, 6.5rem); line-height: 1.1; letter-spacing: -1px; }
h2 { font-size: clamp(2rem, 4vw, 4rem); line-height: 1.2; letter-spacing: -0.5px; }
h3 { font-size: clamp(1.5rem, 3vw, 2.5rem); letter-spacing: -0.5px; }
h4 { font-size: 1.25rem; font-weight: 500; }

p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: #cccccc;
    max-width: 600px;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Cinematic Noise Overlay */
.noise {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    animation: noiseAnim 0.2s infinite;
}

@keyframes noiseAnim {
    0% { transform: translate(0,0) }
    10% { transform: translate(-5%,-5%) }
    20% { transform: translate(-10%,5%) }
    30% { transform: translate(5%,-10%) }
    40% { transform: translate(-5%,15%) }
    50% { transform: translate(-10%,5%) }
    60% { transform: translate(15%,0) }
    70% { transform: translate(0,15%) }
    80% { transform: translate(3%,35%) }
    90% { transform: translate(-10%,10%) }
    100% { transform: translate(0,0) }
}

/* Custom Cursor */
.cursor {
    position: fixed;
    top: 0; left: 0;
    width: 10px; height: 10px;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    top: 0; left: 0;
    width: 40px; height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background 0.3s;
}

.cursor-follower.active {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(2px);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--bg-main);
    z-index: 9990;
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-inner {
    text-align: center;
    width: 300px;
}

.loader-progress {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    position: relative;
    margin-bottom: 15px;
}

.loader-bar {
    position: absolute;
    top: 0; left: 0;
    height: 100%; width: 0%;
    background: var(--gold);
}

.loader-counter {
    font-size: 0.9rem;
    color: var(--gold);
    letter-spacing: 2px;
}

/* Split Text Utilities for GSAP */
.split-line {
    overflow: hidden;
}
.split-word {
    display: inline-block;
}
.split-char {
    display: inline-block;
}

/* Image Reveal Base */
.img-reveal {
    clip-path: inset(100% 0 0 0);
}

/* Utilities */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 150px 0;
}

.gold-text {
    color: var(--gold);
}

.mt-4 {
    margin-top: 2rem;
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
    z-index: 1;
}

.btn-primary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--bg-main);
}

.btn-primary:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold);
    z-index: 1000;
}

/* Header */
.header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 15px 0; /* Reduced padding to decrease height */
    z-index: 900;
    transition: var(--transition-smooth);
    background: rgba(3, 3, 3, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header.scrolled {
    padding: 10px 0; /* Reduced padding for scrolled state */
    background: rgba(3, 3, 3, 0.98);
}

/* Header Glow Line */
.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    background: rgba(255,255,255,0.05);
}

.header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -50%;
    height: 2px;
    width: 50%;
    background: linear-gradient(90deg, transparent, #ffea8c, transparent);
    animation: headerGlowBar 3s linear infinite;
    z-index: 100;
    box-shadow: 0 0 15px rgba(212, 175, 55, 1);
}

@keyframes headerGlowBar {
    0% { left: -50%; }
    100% { left: 100%; }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Text styling */
.brand-logo-text {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gold);
    font-family: var(--font-heading);
}

.brand-logo-text .logo-sub {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 15px;
    margin-right: -15px;
    margin-top: 5px;
}

.header-logo .logo-main {
    font-size: 1.02rem; /* Yüzde 15 küçültüldü */
    letter-spacing: 5px;
    margin-right: -5px;
}

.header-logo .logo-sub {
    font-size: 0.75rem; /* Yüzde 25 büyütüldü */
    letter-spacing: 6px;
    margin-right: -6px;
    margin-top: 2px;
}

.preloader .brand-logo-text {
    margin-bottom: 2rem;
}

.logo-inner-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-logo-text .logo-main {
    font-size: 3.4rem;
    font-weight: 500;
    letter-spacing: 12px;
    line-height: 1;
    margin-right: -12px; /* compensate for letter spacing */
    background: linear-gradient(90deg, #D4AF37 0%, #FFF2CD 50%, #D4AF37 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: goldShineText 6s linear infinite;
}

@keyframes goldShineText {
    to {
        background-position: 200% center;
    }
}


.nav {
    display: flex;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 3rem; /* Spacing between li items */
    align-items: center;
    margin: 0;
    padding: 0;
}

nav a.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    position: relative;
    padding: 5px 0;
    display: inline-block;
}

nav a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Hero Section */
.hero {
    height: 100vh;
    height: 100svh;
    position: relative;
    overflow: hidden;
    background-color: var(--dark); /* Arka plan rengi eklendi (resimler yüklenene kadar boş durmasın) */
    opacity: 0; /* JS ile Swiper hazır olduğunda gösterilecek */
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero.swiper-ready {
    opacity: 1;
    visibility: visible;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.slide-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; /* Taşmaları kesinlikle engelle */
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Resmi tam ortala */
    transform-origin: center;
    /* Sadece çok hafif ve net bir scale ver (1.15 gibi abartılı rakamlar kaliteyi bozar) */
    transform: scale(1.05); 
    will-change: transform; /* Performans optimizasyonu */
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(3,3,3,1) 0%, rgba(3,3,3,0.4) 100%);
}

.slide-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    z-index: 2;
    padding-top: 80px;
}

.slide-title {
    font-size: clamp(3rem, 6.5vw, 6.5rem);
    margin-bottom: 20px;
    line-height: 1.1;
}

.slide-desc {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--text-sec);
    max-width: 600px;
    margin-bottom: 50px;
}

.swiper-slide-active .slide-bg img {
    animation: heroZoom 12s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.15); }
    to { transform: scale(1); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
    color: var(--text-sec);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.mouse {
    width: 22px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.wheel {
    width: 3px;
    height: 6px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* Intro */
.intro {
    text-align: center;
    background: var(--bg-main);
    position: relative;
}

.intro-title {
    font-size: clamp(1.8rem, 3.5vw, 3.5rem);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
}

.intro-line {
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 80px auto 0;
}

/* About / Counters */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-text p {
    color: var(--text-sec);
    font-size: 1.15rem;
    max-width: 550px;
}

.counters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.counter-item {
    padding: 35px;
    background: var(--bg-sec);
    border: 1px solid rgba(255,255,255,0.03);
    position: relative;
    overflow: hidden;
}

.counter-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 2px; height: 100%;
    background: var(--gold);
}

.counter-val {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 10px;
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.counter-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-sec);
}

/* Process Sticky */
.process {
    background: var(--bg-sec);
    position: relative;
}

.process-container {
    display: flex;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 5%;
}

.process-left {
    width: 45%;
    position: relative;
}

.process-sticky-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-desc {
    color: var(--text-sec);
    margin-bottom: 50px;
    max-width: 450px;
    font-size: 1.1rem;
}

.process-images {
    position: relative;
    width: 100%;
    height: 45vh;
    overflow: hidden;
}

.process-images img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1s;
    z-index: 1;
}

.process-images img.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.process-right {
    width: 50%;
    padding: 30vh 0 10vh 0; /* Boşlukları azalttık */
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 150px; /* Adımlar arası boşluğu da biraz azalttık */
}

.step-item {
    opacity: 0.2;
    transition: opacity 0.8s;
    position: relative;
    padding-left: 50px;
}

.step-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 1px; height: 100%;
    background: rgba(255,255,255,0.1);
}

.step-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 1px; height: 0%;
    background: var(--gold);
    transition: height 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.step-item.active {
    opacity: 1;
}

.step-item.active::after {
    height: 100%;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    color: transparent;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.3);
    line-height: 1;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.step-item.active .step-number {
    -webkit-text-stroke: 1px var(--gold);
    color: rgba(212, 175, 55, 0.1);
}

.step-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.step-item p {
    color: var(--text-sec);
    font-size: 1.15rem;
}

/* Services Grid */
.services {
    background: var(--bg-main);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    position: relative;
    border: 1px solid rgba(255,255,255,0.03);
    background: var(--bg-sec);
    padding: 40px;
    transition: var(--transition-hover);
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-hover);
}

.service-card:hover {
    transform: translateY(-15px);
    background: var(--bg-ter);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.service-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.card-img {
    height: 180px;
    margin-bottom: 30px;
    overflow: hidden;
}

.card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .card-img img {
    transform: scale(1.15);
}

.card-content h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.card-content p {
    color: var(--text-sec);
    font-size: 1rem;
}

/* Parallax Break */
.parallax-break {
    height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -30%; left: 0; width: 100%; height: 160%;
    z-index: 1;
}

.parallax-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.parallax-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, var(--bg-main) 0%, rgba(3,3,3,0.5) 50%, var(--bg-main) 100%);
    z-index: 2;
}

.parallax-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.parallax-content h2 {
    font-size: clamp(3.5rem, 7vw, 6rem);
    text-shadow: 0 20px 40px rgba(0,0,0,0.9);
}

/* Collection */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 400px;
    gap: 30px;
}

.col-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.col-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.col-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    opacity: 0;
    transition: opacity 0.6s;
}

.col-item:hover img {
    transform: scale(1.08);
}

.col-item:hover .col-overlay {
    opacity: 1;
}

.col-overlay h4 {
    font-size: 2.5rem;
    color: var(--gold);
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.col-overlay span {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.95rem;
    transform: translateY(30px);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}

.col-item:hover .col-overlay h4,
.col-item:hover .col-overlay span {
    transform: translateY(0);
}

/* Why Us */
.why-us {
    background: var(--bg-sec);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.feature-item {
    border-left: 1px solid rgba(255,255,255,0.05);
    padding-left: 30px;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: var(--transition-hover);
    background: transparent;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0; left: -1px;
    width: 2px; height: 0%;
    background: var(--gold);
    transition: height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-item:hover {
    background: rgba(255,255,255,0.01);
    transform: translateX(15px);
}

.feature-item:hover::before {
    height: 100%;
}

.feature-item:hover h4 {
    color: var(--gold);
}

.feature-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
    transition: color 0.4s;
}

.feature-item p {
    color: var(--text-sec);
    font-size: 1rem;
}

/* Trust / Marquee */
.trust {
    background: var(--bg-main);
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 30px 0;
    margin-top: 2rem;
}

.marquee {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.marquee span {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-main);
    margin: 0 40px;
    letter-spacing: 4px;
    transition: color 0.3s ease, -webkit-text-stroke 0.3s ease;
}

.marquee span:hover {
    color: var(--gold);
    -webkit-text-stroke: 0;
}

.marquee .dot {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    margin: 0 20px;
    -webkit-text-stroke: 0;
}

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

/* CTA */
.cta-section {
    position: relative;
    padding: 180px 0;
    text-align: center;
    background: var(--bg-main);
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 30px;
}

/* Footer */
.footer {
    background: #000;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand p {
    color: var(--text-sec);
    margin-top: 25px;
    max-width: 350px;
    font-size: 1.05rem;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--gold);
}

.footer ul li {
    margin-bottom: 15px;
}

.footer ul li a, .footer ul li {
    color: var(--text-sec);
    font-size: 1rem;
    transition: var(--transition-hover);
}

.footer ul li a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-sec);
    font-size: 0.95rem;
}

.socials a {
    margin-left: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-hover);
}

.socials a:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    transition: all 0.3s ease;
    transform-origin: left;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .process-container, .why-grid {
        grid-template-columns: 1fr;
    }
    .process-left {
        width: 100%;
        margin-bottom: 50px;
    }
    .process-sticky-content {
        height: auto;
    }
    .process-right {
        width: 100%;
        padding: 50px 0;
    }
    .collection-grid {
        grid-template-columns: 1fr;
    }
    .col-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .cursor, .cursor-follower {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--dark);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 2rem;
    }
    
    .header-inner .btn {
        display: none; /* Hide button on mobile header to save space */
    }
    
    .counters, .why-features {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2.5rem;
    }
    
    .slide-title {
        font-size: 2.5rem !important; /* Force smaller size on mobile */
    }
    
    .slide-desc {
        font-size: 1rem !important;
    }
    
    .brand-logo-text .logo-main {
        font-size: 2.2rem;
        letter-spacing: 8px;
        margin-right: -8px;
    }
    
    .brand-logo-text .logo-sub {
        font-size: 1rem;
        letter-spacing: 10px;
        margin-right: -10px;
    }
    
    /* Make process sticky content normal flow on mobile */
    .process-sticky-content {
        height: auto !important;
        position: relative !important;
    }
    
    .process-images {
        height: 40vh;
        margin-bottom: 30px;
        position: sticky;
        top: 80px;
        z-index: 10;
    }
    
    .step-item {
        padding-left: 20px;
    }
    
    .step-number {
        font-size: 3.5rem;
    }
    
    .process-steps {
        gap: 80px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .counter-val {
        font-size: 2.5rem;
    }
}