/* ==========================================================================
   Gönül Günay Haute Couture - Silky Smooth Aesthetic Luxury CSS
   ========================================================================== */

:root {
    --color-bg-main: #070709;
    --color-bg-sec: #0d0d12;
    --color-bg-card: rgba(18, 18, 24, 0.75);
    --color-bg-card-hover: rgba(26, 26, 36, 0.88);
    
    --color-gold-primary: #d4af37;
    --color-gold-light: #f7e7b4;
    --color-gold-dark: #a88319;
    --color-gold-glow: rgba(212, 175, 55, 0.25);
    
    --color-text-main: #ffffff;
    --color-text-sec: #c4c4d0;
    --color-text-muted: #808092;
    
    --font-heading: 'Cormorant Garamond', 'Playfair Display', serif;
    --font-body: 'Inter', 'Plus Jakarta Sans', sans-serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --container-width: 1320px;
    --header-height: 80px;
}

/* Reset & Global Smooth Scroll Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* Lenis Smooth Scroll Compatibility */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    background-color: var(--color-bg-main);
    color: var(--color-text-sec);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Gold Gradient Utility */
.gold-gradient-text {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-primary) 50%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-main);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--color-gold-primary), var(--color-gold-dark));
    border-radius: 4px;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-bounce);
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px var(--color-gold-glow);
}

.btn-gold {
    background: linear-gradient(135deg, #e6c247 0%, #c99e2e 100%);
    color: #070709;
    border: 1px solid var(--color-gold-light);
}

.btn-gold:hover {
    background: linear-gradient(135deg, #f7e7b4 0%, #d4af37 100%);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-main);
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--color-gold-primary);
    color: var(--color-gold-light);
}

.btn-sm {
    padding: 9px 20px;
    font-size: 0.78rem;
}

.btn-lg {
    padding: 16px 38px;
    font-size: 0.92rem;
}

.btn-block {
    width: 100%;
    display: flex;
}

/* Top Bar */
.top-bar {
    background-color: rgba(7, 7, 9, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 8px 0;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--color-text-muted);
}

.top-bar-item i {
    color: var(--color-gold-primary);
}

.highlight-tag {
    color: var(--color-gold-light);
    font-weight: 500;
}

/* Header & Glassmorphism Nav */
.main-header {
    background-color: rgba(7, 7, 9, 0.85);
    height: var(--header-height);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    height: 70px;
    background-color: rgba(7, 7, 9, 0.96);
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    border-bottom-color: rgba(212, 175, 55, 0.25);
}

.main-header .container {
    max-width: 1360px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    gap: 0.8rem;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    padding-right: 1.2rem;
    margin-right: 0;
    border-right: 1px solid rgba(212, 175, 55, 0.22);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo-sub {
    font-size: 0.62rem;
    letter-spacing: 3px;
    color: var(--color-gold-light);
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    background: linear-gradient(135deg, #ffffff 0%, #f7e7b4 40%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    justify-content: center;
    flex-shrink: 1;
    min-width: 0;
}

.nav-link {
    font-size: 0.74rem;
    font-weight: 500;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    position: relative;
    padding: 6px 4px;
    color: rgba(244, 244, 245, 0.85);
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold-light), var(--color-gold-primary));
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-gold-primary);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    margin-left: auto;
}

.header-randevu-btn {
    padding: 9px 18px;
    font-size: 0.76rem;
    letter-spacing: 0.6px;
    white-space: nowrap;
    flex-shrink: 0;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 19px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-main);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION - Silky Aesthetic Stage
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: auto;
    padding: 45px 0 65px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-backdrop-glow {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 30px;
    color: var(--color-gold-light);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.2vw, 3.8rem);
    color: var(--color-text-main);
    line-height: 1.14;
    font-weight: 300;
    margin-bottom: 18px;
}

.hero-subtitle-text {
    font-size: 1.02rem;
    color: var(--color-text-sec);
    line-height: 1.7;
    margin-bottom: 22px;
    max-width: 550px;
}

.hero-pillars-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.pillar-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 0.82rem;
    color: var(--color-text-main);
    backdrop-filter: blur(10px);
}

.pillar-tag i {
    color: var(--color-gold-primary);
}

.highlight-pillar {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(212, 175, 55, 0.1);
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Hero Image Card Stage */
.hero-image-stage {
    position: relative;
}

.hero-card-frame {
    position: relative;
    border-radius: 14px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7);
    transition: var(--transition-smooth);
}

.hero-card-frame:hover {
    transform: scale(1.015);
}

.model-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    height: 580px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    filter: brightness(0.9) contrast(1.05);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-card-frame:hover .hero-main-img {
    transform: scale(1.05);
}

.image-light-reflection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 50%);
    pointer-events: none;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(14, 14, 18, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 10px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    z-index: 10;
    transition: var(--transition-smooth);
}

.badge-top-right {
    top: 40px;
    right: -25px;
}

.badge-bottom-left {
    bottom: 50px;
    left: -25px;
}

.badge-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #070709;
    font-size: 1.1rem;
}

.badge-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.badge-desc {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gold-light);
}

/* Scroll indicator */
.scroll-indicator-wrap {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.8;
}

.scroll-label {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.mouse-icon {
    width: 22px;
    height: 36px;
    border: 1px solid var(--color-gold-primary);
    border-radius: 12px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--color-gold-primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnimation 1.8s infinite;
}

@keyframes scrollAnimation {
    0% { top: 6px; opacity: 1; }
    50% { top: 16px; opacity: 0.2; }
    100% { top: 6px; opacity: 1; }
}

/* ==========================================================================
   SERVICES SECTION - 4 Uzmanlık Kartı
   ========================================================================== */
section {
    padding: 110px 0;
}

.section-title-wrap {
    margin-bottom: 70px;
}

.section-gold-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold-primary);
    margin-bottom: 12px;
}

.section-main-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--color-text-main);
    font-weight: 400;
    margin-bottom: 18px;
}

.section-description {
    max-width: 640px;
    margin: 0 auto;
    color: var(--color-text-sec);
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.service-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 14px;
    padding: 42px 35px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
}

.service-card:hover {
    background: var(--color-bg-card-hover);
    border-color: rgba(212, 175, 55, 0.45);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px var(--color-gold-glow);
}

.highlight-card {
    border-color: rgba(212, 175, 55, 0.4);
    background: linear-gradient(145deg, rgba(30, 26, 15, 0.8) 0%, rgba(18, 18, 24, 0.85) 100%);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-primary);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.gold-bg {
    background: linear-gradient(135deg, var(--color-gold-primary), var(--color-gold-dark));
    color: #070709 !important;
}

.service-card:hover .service-icon-wrap {
    background: var(--color-gold-primary);
    color: #070709;
    transform: scale(1.08);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
}

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

.service-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text-main);
    font-weight: 400;
    margin-bottom: 15px;
}

.service-text {
    font-size: 0.98rem;
    color: var(--color-text-sec);
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--color-text-sec);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--color-gold-primary);
    font-size: 0.8rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-gold-light);
    transition: var(--transition-smooth);
}

.service-btn:hover {
    color: var(--color-gold-primary);
    transform: translateX(6px);
}

/* ==========================================================================
   ROADMAP ACCORDION LIST SECTION (Görsel 3: 8 Adımlı Liste)
   ========================================================================== */
.roadmap-section {
    background: var(--color-bg-main);
}

.roadmap-accordion-container {
    max-width: 840px;
    margin: 0 auto;
    background: rgba(18, 18, 24, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
}

.roadmap-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.roadmap-item:last-child {
    border-bottom: none;
}

.roadmap-item:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(8px);
}

.roadmap-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-light);
    font-size: 0.95rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.roadmap-item:hover .roadmap-badge {
    background: var(--color-gold-primary);
    color: #070709;
}

.roadmap-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-text-main);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   PROVEN 4-STEP FEATURE SHOWCASE SECTION (Görsel 1: 4 Adımlı Yapı)
   ========================================================================== */
.process-section {
    background: linear-gradient(180deg, var(--color-bg-main) 0%, var(--color-bg-sec) 50%, var(--color-bg-main) 100%);
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.process-steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-card-row {
    background: rgba(18, 18, 24, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    backdrop-filter: blur(15px);
    transition: var(--transition-smooth);
}

.process-card-row:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 25px var(--color-gold-glow);
    transform: translateY(-4px);
}

.process-step-index {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold-primary);
    margin-bottom: 18px;
}

.step-num-badge {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 4px 10px;
    border-radius: 4px;
    color: var(--color-gold-light);
}

.step-dot {
    color: var(--color-gold-primary);
}

.process-row-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-text-main);
    line-height: 1.25;
    font-weight: 400;
    margin-bottom: 18px;
}

.process-row-desc {
    font-size: 1.02rem;
    color: var(--color-text-sec);
    line-height: 1.8;
    margin-bottom: 25px;
}

.process-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--color-gold-light);
}

/* Mockup Frame */
.mockup-frame {
    background: #111116;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    position: relative;
}

.mockup-header {
    background: #09090d;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-header .dot.red { background: #ff5f56; }
.mockup-header .dot.yellow { background: #ffbd2e; }
.mockup-header .dot.green { background: #27c93f; }

.mockup-title {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    letter-spacing: 1px;
    margin-left: 10px;
}

.mockup-content {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.mockup-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    filter: brightness(0.88);
}

.overlay-card-mini {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(14, 14, 18, 0.9);
    border: 1px solid var(--color-gold-primary);
    border-radius: 8px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-gold-light);
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* ==========================================================================
   BEFORE VS AFTER / SHORTCUT VS LEVERAGE COMPARISON SECTION (Görsel 2)
   ========================================================================== */
.comparison-section {
    background: var(--color-bg-sec);
    position: relative;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.comparison-col {
    background: rgba(14, 14, 18, 0.6);
    border-radius: 16px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
}

.col-negative {
    border-color: rgba(255, 95, 86, 0.2);
}

.col-positive {
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(20, 20, 15, 0.7);
}

.col-header-badge {
    text-align: center;
    margin-bottom: 35px;
}

.badge-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: #ffffff;
}

.badge-circle.red {
    background: rgba(255, 95, 86, 0.2);
    border: 1px solid #ff5f56;
    color: #ff5f56;
}

.badge-circle.green {
    background: rgba(39, 201, 63, 0.2);
    border: 1px solid var(--color-gold-primary);
    color: var(--color-gold-light);
}

.col-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-text-main);
    margin-bottom: 8px;
    font-weight: 500;
}

.col-sub {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    max-width: 400px;
    margin: 0 auto;
}

.comparison-cards-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comp-card {
    background: var(--color-bg-main);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.comp-vs-badge {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: var(--color-bg-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-gold-primary);
    z-index: 10;
}

.card-fail {
    border-color: rgba(255, 95, 86, 0.15);
}

.card-success {
    border-color: rgba(212, 175, 55, 0.25);
}

.comp-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.comp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}

.fail-cross-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5f56;
    font-size: 5rem;
    pointer-events: none;
}

.success-check-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: var(--color-gold-primary);
    color: #070709;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.comp-card-info {
    padding: 22px;
}

.comp-card-info h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-text-main);
    margin-bottom: 8px;
    font-weight: 500;
}

.comp-card-info p {
    font-size: 0.88rem;
    color: var(--color-text-sec);
    line-height: 1.6;
}

/* ==========================================================================
   CUSTOM STUDIO SECTION - "Siz Hayal Edin Biz Tasarlayalım"
   ========================================================================== */
.custom-studio-section {
    background: linear-gradient(180deg, var(--color-bg-main) 0%, var(--color-bg-sec) 50%, var(--color-bg-main) 100%);
    position: relative;
}

.custom-studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.studio-desc {
    font-size: 1.05rem;
    color: var(--color-text-sec);
    margin-bottom: 35px;
    line-height: 1.8;
}

.glass-form-card {
    background: rgba(18, 18, 24, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 45px 38px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

.card-corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.25), transparent 70%);
}

.form-card-title {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: var(--color-text-main);
    font-weight: 400;
    margin-bottom: 8px;
}

.form-card-sub {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

.interactive-custom-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-field label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-sec);
    margin-bottom: 8px;
}

.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(7, 7, 9, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: var(--transition-smooth);
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
    outline: none;
    border-color: var(--color-gold-primary);
    box-shadow: 0 0 15px var(--color-gold-glow);
}

/* Footer & Developer Credits */
.main-footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background-color: var(--color-bg-main);
}

.footer-logo {
    display: inline-flex;
    margin-bottom: 20px;
}

.footer-credits {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.developer-credit {
    font-size: 0.85rem;
    color: var(--color-text-sec);
    letter-spacing: 0.5px;
}

.gold-link {
    color: var(--color-gold-primary);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition-smooth);
}

.gold-link:hover {
    color: var(--color-gold-light);
    text-shadow: 0 0 10px var(--color-gold-glow);
}

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: pulseWhatsapp 2.2s infinite;
}

@keyframes pulseWhatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.floating-whatsapp:hover {
    transform: scale(1.1);
}

.floating-whatsapp .tooltip-text {
    visibility: hidden;
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--color-bg-card);
    color: var(--color-text-main);
    padding: 6px 15px;
    font-size: 0.8rem;
    border-radius: 4px;
    border: 1px solid var(--color-gold-primary);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}

.floating-whatsapp:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* ===== RESPONSIVE TEXT TOGGLE ===== */
.btn-text-mobile {
    display: none;
}

/* ===== TABLET (max 1024px) ===== */
@media (max-width: 1024px) {
    .hero-grid,
    .process-card-row,
    .comparison-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle-text {
        margin: 0 auto 30px;
    }

    .hero-pillars-grid,
    .hero-cta-group,
    .process-step-index {
        justify-content: center;
    }

    .hero-image-stage {
        max-width: 480px;
        margin: 0 auto;
    }

    .badge-top-right { right: 0; }
    .badge-bottom-left { left: 0; }

    .services-grid,
    .custom-studio-grid {
        grid-template-columns: 1fr;
    }

    .comp-vs-badge {
        display: none;
    }
}

/* ===== DESKTOP MEDIUM (max 1440px) ===== */
@media (max-width: 1440px) {
    .logo {
        padding-right: 0.8rem;
        margin-right: 0;
    }
    .logo-main {
        font-size: 1.15rem;
    }
    .nav-menu {
        gap: 0.6rem;
    }
    .nav-link {
        font-size: 0.70rem;
        letter-spacing: 0.4px;
    }
    .header-randevu-btn {
        padding: 8px 14px;
        font-size: 0.73rem;
    }
}

@media (max-width: 1180px) {
    .nav-menu {
        gap: 0.4rem;
    }
    .nav-link {
        font-size: 0.67rem;
        letter-spacing: 0.2px;
        padding: 4px 0;
    }
    .header-randevu-btn {
        padding: 7px 12px;
        font-size: 0.70rem;
    }
}

/* ===== MOBILE (max 768px) ===== */
@media (max-width: 768px) {
    /* --- Top Bar --- */
    .top-bar {
        display: none;
    }

    /* --- Header Core Layout --- */
    .main-header {
        height: 64px;
    }

    .main-header.scrolled {
        height: 58px;
    }

    .header-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        height: 100%;
        padding: 0 16px;
        gap: 12px;
    }

    /* --- Logo: Must shrink, never wrap --- */
    .logo {
        flex-shrink: 1;
        min-width: 0;
        overflow: hidden;
        border-right: none;
        padding-right: 0;
        margin-right: 0;
    }

    .logo-sub {
        font-size: 0.55rem;
        letter-spacing: 2px;
    }

    .logo-main {
        font-size: 1rem;
        letter-spacing: 0.5px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* --- Header Actions: Button + Hamburger --- */
    .header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        flex-shrink: 0;
    }

    .btn-text-full {
        display: none;
    }

    .btn-text-mobile {
        display: inline;
    }

    .header-randevu-btn {
        padding: 8px 14px;
        font-size: 0.76rem;
        letter-spacing: 0.3px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }

    /* --- Mobile Nav Drawer --- */
    .nav-menu {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: var(--color-bg-main);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

    .nav-menu.open {
        left: 0;
    }

    /* --- Hero Section --- */
    .hero-section {
        padding: 30px 0 40px;
        min-height: auto;
    }

    .badge-tag {
        font-size: 0.72rem;
        padding: 6px 14px;
        margin-bottom: 16px;
        letter-spacing: 0.5px;
    }

    .hero-main-title {
        font-size: clamp(1.8rem, 7vw, 2.6rem);
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero-subtitle-text {
        font-size: 0.92rem;
        line-height: 1.65;
        margin-bottom: 22px;
    }

    .hero-pillars-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 28px;
    }

    .pillar-tag {
        padding: 8px 10px;
        font-size: 0.75rem;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image-stage {
        margin-top: 30px;
        max-width: 100%;
    }

    .model-image-container {
        height: 400px;
    }

    /* --- Floating Badges --- */
    .floating-badge {
        padding: 10px 14px;
        gap: 8px;
    }

    .badge-title { font-size: 0.76rem; }
    .badge-desc { font-size: 0.68rem; }
    .badge-top-right { top: 12px; right: 8px; }
    .badge-bottom-left { bottom: 12px; left: 8px; }

    /* --- WhatsApp FAB --- */
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

    /* --- Forms --- */
    .input-row-2 {
        grid-template-columns: 1fr;
    }

    /* --- Content Cards --- */
    .process-card-row,
    .comparison-col {
        padding: 28px 18px;
    }

    .roadmap-item {
        padding: 16px 18px;
    }

    /* --- Section Spacing --- */
    section {
        padding: 70px 0;
    }

    .section-title-wrap {
        margin-bottom: 45px;
    }

    .section-main-heading {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }
}

/* ===== SMALL MOBILE (max 480px) ===== */
@media (max-width: 480px) {
    .header-container {
        padding: 0 12px;
        gap: 8px;
    }

    .logo-sub {
        font-size: 0.48rem;
        letter-spacing: 1.5px;
    }

    .logo-main {
        font-size: 0.88rem;
        letter-spacing: 0.3px;
    }

    .header-randevu-btn {
        padding: 6px 10px;
        font-size: 0.72rem;
    }

    .hero-main-title {
        font-size: clamp(1.5rem, 6.5vw, 2rem);
    }

    .hero-pillars-grid {
        grid-template-columns: 1fr;
    }

    .model-image-container {
        height: 340px;
    }

    .floating-badge {
        display: none;
    }
}
