:root {
    --gold: #D4AF37;
    --gold-light: #F0D060;
    --gold-dark: #B8860B;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F0D060 40%, #B8860B 100%);
    --gold-gradient-text: linear-gradient(135deg, #D4AF37, #F0D060, #D4AF37);
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1c1c1c;
    --text-primary: #f5f5f5;
    --text-secondary: #b0b0b0;
    --text-muted: #707070;
    --glass-bg: rgba(10, 10, 10, 0.88);
    --glass-border: rgba(212, 175, 55, 0.12);
    --glass-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Raleway', sans-serif;
    --font-handwriting: 'Dancing Script', cursive;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 18px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.8;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--gold);
    color: var(--bg-primary);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Performance: lazy-load sections below fold */
.about,
.vision-mission,
.projects,
.contact,
.intro-reel {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 6%;
}

@media (min-width: 1800px) {
    .container {
        padding: 0 8%;
    }
}

.section-padding {
    padding: 140px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    max-width: 800px;
    margin: 0 auto 80px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.9;
}

.gold-line {
    width: 100px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 0 auto 80px;
    position: relative;
}

.gold-line::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 10px;
    background: var(--gold);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 42px;
    background: var(--gold-gradient);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.6s;
}

.btn-gold:hover::before {
    left: 100%;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 38px;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.25);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 14px 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0 48px;
    position: relative;
}

.nav-section {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 56px;
}

.nav-section.left {
    justify-content: flex-end;
    padding-right: 70px;
}

.nav-section.right {
    justify-content: flex-start;
    padding-left: 70px;
}

.nav-section a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
    transition: var(--transition-smooth);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.navbar.scrolled .nav-section a {
    text-shadow: none;
}

.nav-section a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-section a:hover {
    color: var(--gold);
}

.nav-section a:hover::after {
    width: 100%;
}

.nav-section a.active {
    color: var(--gold);
}

.nav-logo {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.nav-logo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3), 0 0 80px rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
    object-fit: cover;
}

.navbar.scrolled .nav-logo img {
    width: 120px;
    height: 120px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 6px;
    z-index: 1001;
}

.navbar-toggle span {
    width: 30px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-smooth);
    border-radius: 2px;
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-mobile-overlay {
    display: none;
}

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
}

@supports (height: 100dvh) {
    .hero {
        height: 100dvh;
    }
}

@supports (-webkit-touch-callout: none) {
    .hero {
        height: -webkit-fill-available;
    }
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.55) 40%, rgba(10,10,10,0.95) 100%);
    z-index: 1;
}

/* Gold gradient light overlays for hero */
.hero::after {
    content: '';
    position: absolute;
    top: -200px;
    left: -100px;
    width: calc(100% + 200px);
    height: calc(100% + 400px);
    z-index: 0;
    background:
        radial-gradient(ellipse at 25% 20%, rgba(212, 175, 55, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 60%, rgba(212, 175, 55, 0.04) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 85%, rgba(212, 175, 55, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

/* Light sweep - statik, hero altına da taşar */
.hero-sweep {
    position: absolute;
    top: -80%;
    left: -40%;
    width: 180%;
    height: 250%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
        120deg,
        transparent 25%,
        rgba(212, 175, 55, 0.04) 35%,
        rgba(212, 175, 55, 0.025) 40%,
        rgba(255, 215, 0, 0.01) 45%,
        transparent 55%
    );
}

/* Corner lights - statik, alt sectiona taşar */
.hero-light-corner {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    width: calc(100% + 200px);
    height: calc(100% + 300px);
    top: -150px;
    left: -100px;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 35%),
        radial-gradient(ellipse at 100% 100%, rgba(212, 175, 55, 0.03) 0%, transparent 30%);
}

.hero-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(transparent, var(--bg-primary));
    z-index: 1;
}

/* Hero Light Effects */
.hero-light-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-light-ray {
    position: absolute;
    top: -30%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    transform: translateX(-50%) rotate(-15deg);
}

.hero-light-ray-2 {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center top, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    transform: translateX(-50%) rotate(10deg);
}

.hero-gold-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    /* removed animation for performance */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
    max-width: 1000px;
}

.hero-badge {
    position: relative;
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 28px;
    opacity: 0.9;
    animation: fadeInDown 0.8s ease forwards;
    text-shadow: 0 2px 30px rgba(0,0,0,0.8);
}

.hero-badge::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold-gradient);
    margin-right: 16px;
    vertical-align: middle;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.hero-badge::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--gold-gradient);
    margin-left: 16px;
    vertical-align: middle;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 9vw, 6rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 32px;
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
}

.hero-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 28px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.hero-title .line1 {
    display: block;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-title .line2 {
    display: block;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-description {
    color: var(--text-primary);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto 44px;
    letter-spacing: 1px;
    line-height: 1.9;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 0 60px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-nav {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-dot.active {
    background: var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
    transform: scale(1.3);
}

.hero-arrow {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(10, 10, 10, 0.5);
    color: var(--gold);
    cursor: pointer;
    font-size: 1.3rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-arrow:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--gold);
    font-size: 1.8rem;
    animation: bounceDown 2.5s infinite;
    cursor: pointer;
}

@keyframes bounceDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(12px);
    }
    60% {
        transform: translateX(-50%) translateY(6px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about {
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
    z-index: 1;
}

.about::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(212, 175, 55, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.about-glow {
    position: absolute;
    top: -200px;
    left: -100px;
    width: calc(100% + 200px);
    height: calc(100% + 400px);
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-visual-main {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.about-visual-frame {
    position: absolute;
    top: -24px;
    left: -24px;
    right: 24px;
    bottom: 24px;
    border: 2px solid var(--gold);
    z-index: -1;
    opacity: 0.2;
}

.about-visual-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: var(--bg-primary);
    border: 2px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-visual-accent .number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.about-visual-accent .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 8px;
    display: block;
}

.about-content .section-title {
    text-align: left;
}

.about-content .gold-line {
    margin: 0 0 32px;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 24px;
    max-width: 640px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.about-stat {
    text-align: center;
}

.about-stat .number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.about-stat .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 6px;
    display: block;
}

.vision-mission {
    background: var(--bg-primary);
    position: relative;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
    z-index: 1;
}

.vision-mission-glow {
    position: absolute;
    top: -200px;
    left: -100px;
    width: calc(100% + 200px);
    height: calc(100% + 400px);
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
}

.section-title-vm {
    font-family: var(--font-handwriting) !important;
    font-size: clamp(2.8rem, 6vw, 4.2rem) !important;
    text-transform: none !important;
    letter-spacing: 2px !important;
    font-weight: 600 !important;
}

.vm-flow {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.vm-flow-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 50px;
    align-items: start;
    position: relative;
}

.vm-flow-item-reverse {
    direction: rtl;
}

.vm-flow-item-reverse .vm-flow-content {
    direction: ltr;
}

.vm-flow-icon {
    width: 90px;
    height: 90px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--gold);
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    flex-shrink: 0;
    position: sticky;
    top: 120px;
    transition: var(--transition-smooth);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.08);
}

.vm-flow-item:hover .vm-flow-icon {
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
    transform: scale(1.05);
}

.vm-flow-content {
    position: relative;
}

.vm-flow-number {
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.04);
    position: absolute;
    top: -30px;
    right: 0;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.vm-flow-content h3 {
    font-family: var(--font-handwriting);
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.vm-flow-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 2;
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.vm-flow-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    position: relative;
}

.vm-flow-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.vm-flow-diamond {
    font-size: 1.2rem;
    color: var(--gold);
    background: var(--bg-primary);
    padding: 0 24px;
    position: relative;
    z-index: 1;
    animation: diamondGlow 3s ease-in-out infinite;
}

@keyframes diamondGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.vm-flow-sign {
    font-family: var(--font-handwriting);
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 28px;
    opacity: 0.7;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.vm-flow-sign::before {
    content: '— ';
    color: var(--gold-dark);
}

.projects {
    background: var(--bg-secondary);
    position: relative;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
    z-index: 1;
}

.projects-glow {
    position: absolute;
    top: -200px;
    left: -100px;
    width: calc(100% + 200px);
    height: calc(100% + 400px);
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 70% 20%, rgba(212, 175, 55, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.project-item {
    background: var(--bg-tertiary);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
    overflow: hidden;
    position: relative;
}

.project-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.project-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 11;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-item:hover .project-image img {
    transform: scale(1.08);
}

.project-image .project-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 20px;
    background: var(--gold-gradient);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 2;
    border-radius: 3px;
}

.project-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(10,10,10,0.6));
    pointer-events: none;
}

.project-info {
    padding: 24px 28px 28px;
}

.project-info .project-location {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.project-info .project-desc {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
    font-weight: 300;
}

.contact {
    background: var(--bg-primary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
    z-index: 1;
}

.contact-glow {
    position: absolute;
    top: -200px;
    left: -100px;
    width: calc(100% + 200px);
    height: calc(100% + 400px);
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(212, 175, 55, 0.10) 0%, transparent 45%),
        radial-gradient(ellipse at 70% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 35%);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
}

.contact-left {
    position: relative;
}

.contact-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -40px;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--gold-dark), transparent);
}

.contact-left h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
    letter-spacing: 3px;
}

.contact-left > p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 36px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 24px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(212, 175, 55, 0.06);
    transition: var(--transition-smooth);
}

.contact-item:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(6px);
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-item:hover .contact-item-icon {
    background: var(--gold);
    color: var(--bg-primary);
}

.contact-item-text h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    letter-spacing: 1.5px;
}

.contact-item-text span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: block;
}

/* Project Detail Page */
.project-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.project-detail-header {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.project-detail-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.project-detail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.40) 40%, rgba(10,10,10,0.90) 100%);
}

.project-detail-intro {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.project-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    margin-bottom: 32px;
    transition: var(--transition-smooth);
}

.project-detail-back:hover {
    color: var(--gold);
}

.project-detail-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--gold-gradient);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.project-detail-intro h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.project-detail-intro p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 600px;
    margin: 0 auto;
}

.project-detail-features {
    background: var(--bg-secondary);
    position: relative;
}

.project-detail-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-3px);
}

.feature-item i {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.feature-item span {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.project-detail-gallery {
    background: var(--bg-primary);
    position: relative;
}

.project-detail-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.gallery-item {
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
    aspect-ratio: 16 / 11;
}

.gallery-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-counter {
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-top: 16px;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.lightbox-nav:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

.contact-whatsapp {
    background: var(--bg-tertiary);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 40px;
    transition: var(--transition-smooth);
}

.contact-whatsapp:hover {
    border-color: rgba(212, 175, 55, 0.25);
}

.contact-whatsapp-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.contact-whatsapp-header i {
    font-size: 2rem;
    color: #25D366;
    filter: drop-shadow(0 0 12px rgba(37, 211, 102, 0.3));
}

.contact-whatsapp-header span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.contact-whatsapp-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.contact-whatsapp-body textarea {
    width: 100%;
    padding: 18px 22px;
    background: var(--bg-primary);
    border: 1px solid rgba(212, 175, 55, 0.12);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.8;
    resize: vertical;
    outline: none;
    transition: var(--transition-smooth);
    margin-bottom: 20px;
    min-height: 140px;
}

.contact-whatsapp-body textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.08);
}

.contact-whatsapp-body textarea::placeholder {
    color: var(--text-muted);
    font-family: var(--font-body);
}

.contact-whatsapp-btn {
    width: 100%;
    justify-content: center;
    background: var(--gold-gradient);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.25);
    color: var(--bg-primary);
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-whatsapp-btn:hover {
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.4);
}

.contact-whatsapp-btn i {
    font-size: 1.3rem;
}

/* Intro Reel - Firma Tanıtım */
.intro-reel {
    background: var(--bg-primary);
    position: relative;
}

.intro-reel-glow {
    position: absolute;
    top: -200px;
    left: -100px;
    width: calc(100% + 200px);
    height: calc(100% + 400px);
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(212, 175, 55, 0.10) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
}

.intro-reel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
}

.reel-showcase {
    margin-bottom: 80px;
}

.reel-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.reel-video-wrap {
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.2);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 4px;
    background: var(--bg-tertiary);
}

.reel-video-wrap iframe,
.reel-video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.reel-video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, var(--bg-tertiary) 0%, #1a1a1a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    cursor: pointer;
    transition: var(--transition-smooth);
    min-height: 360px;
}

.reel-video-placeholder:hover {
    border-color: var(--gold);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.1);
}

.reel-video-placeholder i {
    font-size: 4rem;
    color: var(--gold);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    transition: var(--transition-smooth);
}

.reel-video-placeholder:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.6));
}

.reel-video-placeholder span {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.reel-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.reel-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 32px;
}

.reel-logos {
    margin-bottom: 80px;
    overflow: hidden;
}

.reel-logos h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 36px;
}

.reel-logos-track {
    display: flex;
    gap: 40px;
    animation: logoScroll 30s linear infinite;
    width: max-content;
    padding: 20px 0;
}

.reel-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 40px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: var(--transition-smooth);
    white-space: nowrap;
    border-radius: 4px;
    flex-shrink: 0;
}

.reel-logo-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.reel-logo-item i {
    font-size: 1.8rem;
    color: var(--gold);
    opacity: 0.7;
}

.reel-logo-item span {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 1.5px;
}

@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.reel-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.reel-feature {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(212, 175, 55, 0.08);
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.reel-feature:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.reel-feature-icon {
    width: 64px;
    height: 64px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--gold);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.reel-feature:hover .reel-feature-icon {
    background: var(--gold);
    color: var(--bg-primary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.reel-feature h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.reel-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 120px;
    margin-bottom: 60px;
}

.footer-brand-img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.9;
    margin-top: 18px;
    max-width: 480px;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(212, 175, 55, 0.08);
    padding-top: 28px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.footer-powered-logo {
    width: 110px;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    transition: var(--transition-smooth);
    margin-left: 6px;
    opacity: 0.8;
}

.footer-powered a:hover .footer-powered-logo {
    filter: brightness(1);
}

.whatsapp-float {
    position: fixed;
    bottom: 36px;
    right: 36px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 14px;
}

.whatsapp-tooltip {
    background: var(--bg-tertiary);
    border: 1px solid var(--gold);
    padding: 12px 20px;
    font-size: 0.85rem;
    color: var(--text-primary);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition-smooth);
    pointer-events: none;
    font-family: var(--font-body);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: var(--transition-smooth);
    position: relative;
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 6px 36px rgba(37, 211, 102, 0.7), 0 0 0 18px rgba(37, 211, 102, 0.08);
    }
    100% {
        box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-btn .whatsapp-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: #ff4444;
    border-radius: 50%;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    animation: badgePulse 1.5s infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@media (max-width: 1200px) {
    .navbar-inner {
        padding: 0 24px;
    }

    .nav-section {
        gap: 36px;
    }

    .nav-section.left {
        padding-right: 40px;
    }

    .nav-section.right {
        padding-left: 40px;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .project-image {
        aspect-ratio: 16 / 11;
    }

    .project-info {
        padding: 22px 24px 26px;
    }

    .project-info .project-location {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 100px 0;
    }

    .about-wrapper {
        gap: 60px;
    }

    .about-visual-main {
        height: 400px;
    }

    .vm-flow-item {
        gap: 36px;
    }

    .vm-flow-icon {
        width: 72px;
        height: 72px;
        font-size: 1.8rem;
    }

    .vm-flow-content h3 {
        font-size: 2.6rem;
    }

    .vm-flow-content p {
        font-size: 0.95rem;
    }

    .projects-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .project-image {
        aspect-ratio: 16 / 11;
    }

    .project-info {
        padding: 20px 22px 24px;
    }

    .project-info .project-location {
        font-size: 1.05rem;
    }

    .project-info .project-desc {
        font-size: 0.8rem;
    }

    .reel-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reel-features {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-left::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 16px;
    }

    .navbar {
        padding: 16px 0;
    }

    .navbar.scrolled {
        padding: 10px 0;
    }

    .navbar-inner {
        justify-content: space-between;
        padding: 0 16px;
    }

    .nav-section {
        display: none;
    }

    .navbar-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
        order: 2;
    }

    .nav-logo {
        margin: 0;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        order: 1;
    }

    .nav-logo img {
        width: 110px;
        height: 110px;
        border-width: 3px;
    }

    .navbar.scrolled .nav-logo img {
        width: 92px;
        height: 92px;
    }

    .nav-mobile-overlay {
        display: none;
    }

    .nav-mobile-overlay.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        justify-content: center;
        align-items: center;
        z-index: 998;
    }

    .nav-mobile-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .nav-mobile-links a {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        font-weight: 500;
        letter-spacing: 5px;
        text-transform: uppercase;
        color: var(--text-secondary);
        transition: var(--transition-smooth);
    }

    .nav-mobile-links a:hover,
    .nav-mobile-links a.active {
        color: var(--gold);
    }

    .hero {
        min-height: 600px;
    }

    .hero-content {
        width: 92%;
    }

    .hero-title {
        letter-spacing: 1px;
    }

    .hero-title .line1 {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
    }

    .hero-title .line2 {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

    .hero-nav {
        bottom: 80px;
    }

    .hero-badge {
        font-size: 0.65rem;
        letter-spacing: 3px;
        margin-bottom: 24px;
    }

    .hero-badge::before,
    .hero-badge::after {
        width: 20px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .hero-buttons {
        gap: 16px;
    }

    .hero-arrow {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .hero-dot {
        width: 12px;
        height: 12px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual-main {
        height: 280px;
    }

    .about-visual-frame {
        display: none;
    }

    .about-visual-accent {
        bottom: -20px;
        right: 10px;
        width: 120px;
        height: 120px;
    }

    .about-visual-accent .number {
        font-size: 2rem;
    }

    .about-visual-accent .label {
        font-size: 0.7rem;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-content .gold-line {
        margin: 0 auto 32px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .about-stat .number {
        font-size: 1.4rem;
    }

    .about-stat .label {
        font-size: 0.7rem;
    }

    .vm-flow-item {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .vm-flow-item-reverse {
        direction: ltr;
    }

    .vm-flow-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
        position: relative;
        top: 0;
        margin: 0 auto;
    }

    .vm-flow-content h3 {
        font-size: 2.4rem;
    }

    .vm-flow-content p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .vm-flow-number {
        font-size: 5rem;
        top: -20px;
    }

    .vm-flow-divider {
        padding: 30px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .project-image {
        aspect-ratio: 16 / 10;
    }

    .project-info {
        padding: 18px 20px 22px;
    }

    .project-info .project-location {
        font-size: 1.1rem;
    }

    .project-info .project-desc {
        font-size: 0.82rem;
    }

    .reel-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .reel-video-placeholder {
        min-height: 240px;
    }

    .reel-video-placeholder i {
        font-size: 3rem;
    }

    .reel-info h3 {
        font-size: 1.5rem;
    }

    .reel-logos-track {
        gap: 24px;
    }

    .reel-logo-item {
        padding: 16px 28px;
    }

    .reel-features {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .reel-feature {
        padding: 28px 20px;
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 36px;
    }

    .gold-line {
        margin-bottom: 40px;
    }

    .contact-whatsapp {
        padding: 28px;
    }

    .contact-whatsapp-header span {
        font-size: 1rem;
    }

    .contact-whatsapp-body textarea {
        font-size: 0.9rem;
        padding: 14px 18px;
        min-height: 120px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .project-detail-header {
        height: 55vh;
        min-height: 400px;
    }

    .project-detail-intro h1 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    .navbar-inner {
        padding: 0 12px;
    }

    .nav-logo img {
        width: 100px;
        height: 100px;
    }

    .navbar.scrolled .nav-logo img {
        width: 82px;
        height: 82px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .project-image {
        aspect-ratio: 16 / 10;
    }

    .project-image .project-tag {
        top: 14px;
        left: 14px;
        padding: 6px 14px;
        font-size: 0.65rem;
    }

    .project-info {
        padding: 16px 18px 20px;
    }

    .project-info .project-location {
        font-size: 1rem;
    }

    .project-info .project-desc {
        font-size: 0.8rem;
    }

    .reel-showcase {
        margin-bottom: 40px;
    }

    .reel-main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .reel-video-placeholder {
        min-height: 200px;
    }

    .reel-video-placeholder i {
        font-size: 2.5rem;
    }

    .reel-video-placeholder span {
        font-size: 0.8rem;
    }

    .reel-info h3 {
        font-size: 1.3rem;
    }

    .reel-logos {
        margin-bottom: 40px;
    }

    .reel-logos-track {
        gap: 16px;
        animation-duration: 20s;
    }

    .reel-logo-item {
        padding: 12px 20px;
    }

    .reel-logo-item i {
        font-size: 1.3rem;
    }

    .reel-logo-item span {
        font-size: 0.7rem;
    }

    .reel-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .reel-feature {
        padding: 24px 16px;
    }

    .reel-feature-icon {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }

    .btn-gold {
        padding: 14px 28px;
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .btn-outline {
        padding: 12px 24px;
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .about-visual-accent {
        width: 100px;
        height: 100px;
        bottom: -16px;
        right: 6px;
    }

    .about-visual-accent .number {
        font-size: 1.6rem;
    }

    .about-visual-main {
        height: 240px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-badge {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .hero-badge::before,
    .hero-badge::after {
        width: 16px;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .hero-nav {
        bottom: 60px;
        gap: 14px;
    }

    .vm-flow-item {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .vm-flow-item-reverse {
        direction: ltr;
    }

    .vm-flow-icon {
        width: 56px;
        height: 56px;
        font-size: 1.3rem;
        position: relative;
        top: 0;
        margin: 0 auto;
    }

    .vm-flow-content h3 {
        font-size: 2rem;
    }

    .vm-flow-content p {
        font-size: 0.88rem;
        max-width: 100%;
    }

    .vm-flow-number {
        font-size: 4rem;
        top: -15px;
    }

    .vm-flow-divider {
        padding: 20px 0;
    }

    .footer-grid {
        gap: 28px;
    }

    .contact-whatsapp {
        padding: 24px;
    }

    .contact-whatsapp-header i {
        font-size: 1.5rem;
    }

    .contact-whatsapp-header span {
        font-size: 0.9rem;
    }

    .contact-whatsapp-body textarea {
        font-size: 0.85rem;
        padding: 12px 16px;
        min-height: 100px;
    }

    .project-detail-header {
        height: 50vh;
        min-height: 350px;
    }

    .project-detail-intro h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .project-detail-intro p {
        font-size: 0.9rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lightbox-nav {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        top: auto;
        bottom: 30px;
        transform: none;
    }

    .lightbox-prev { left: 20px; }
    .lightbox-next { right: 20px; }

    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .lightbox-content img {
        max-height: 70vh;
    }
}
