/* ==========================================================================
   BURSA PREMIUM KURU TEMİZLEME - Ana Stil Dosyası
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

:root {
    /* Renk Paleti - Premium Koyu */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a25;
    --bg-card: #16161f;
    
    /* Altın & Accent */
    --gold: #c9a961;
    --gold-light: #e8c77e;
    --gold-dark: #9d8246;
    --gold-gradient: linear-gradient(135deg, #c9a961 0%, #e8c77e 50%, #9d8246 100%);
    
    /* Metin */
    --text-primary: #f5f5f7;
    --text-secondary: #a8a8b3;
    --text-muted: #6b6b7d;
    
    /* Border & Divider */
    --border: rgba(201, 169, 97, 0.15);
    --border-light: rgba(255, 255, 255, 0.06);
    
    /* Gölgeler */
    --shadow-gold: 0 10px 40px -10px rgba(201, 169, 97, 0.4);
    --shadow-soft: 0 20px 60px -20px rgba(0, 0, 0, 0.8);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    
    /* Fontlar */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Geçişler */
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 300;
}

/* Arka plan dekoratif grain */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 169, 97, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(10, 10, 15, 0.92);
    border-bottom: 1px solid var(--border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
    position: relative;
}

.logo-mark::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.logo-tag {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px -10px rgba(201, 169, 97, 0.6);
}

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(201, 169, 97, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201, 169, 97, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    animation: fadeInUp 1s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 32px;
}

.hero h1 .accent {
    font-style: italic;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat-item .number {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 500;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Hero Visual - Dekoratif Görsel */
.hero-visual {
    position: relative;
    height: 600px;
    animation: fadeIn 1.5s ease forwards;
}

.visual-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border);
}

.visual-circle.c1 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 40s linear infinite;
}

.visual-circle.c2 {
    width: 380px;
    height: 380px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 30s linear infinite reverse;
}

.visual-circle.c3 {
    width: 260px;
    height: 260px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold-gradient);
    opacity: 0.1;
    filter: blur(40px);
    animation: pulse-glow 4s ease-in-out infinite;
}

.visual-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--bg-secondary);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.visual-center svg {
    width: 90px;
    height: 90px;
    fill: var(--gold);
}

.visual-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    animation: float 6s ease-in-out infinite;
}

.visual-icon:nth-child(5) { top: 10%; right: 20%; animation-delay: 0s; }
.visual-icon:nth-child(6) { top: 30%; left: 10%; animation-delay: 1s; }
.visual-icon:nth-child(7) { bottom: 20%; right: 10%; animation-delay: 2s; }
.visual-icon:nth-child(8) { bottom: 15%; left: 25%; animation-delay: 3s; }

/* ==========================================================================
   SECTION COMMON
   ========================================================================== */
section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 6px 18px;
    border: 1px solid var(--border);
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-title .italic {
    font-style: italic;
    color: var(--gold);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services {
    background: var(--bg-secondary);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: var(--shadow-card);
}

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

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(201, 169, 97, 0.05) 100%);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 28px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.service-price .from {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-price .amount {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--gold);
    font-weight: 500;
    margin-left: 8px;
}

.service-price .currency {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how-works {
    position: relative;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--bg-secondary);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--gold);
    position: relative;
    transition: var(--transition);
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid var(--border);
    border-radius: 50%;
    opacity: 0.5;
}

.step:hover .step-number {
    background: var(--gold-gradient);
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
}

.step h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
}

.step p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================================================
   ORDER FORM SECTION
   ========================================================================== */
.order-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.order-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.order-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
}

.order-info h2 .italic {
    font-style: italic;
    color: var(--gold);
}

.order-info > p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.order-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.order-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 15px;
}

.order-benefits li:last-child {
    border-bottom: none;
}

.order-benefits .check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 14px;
    font-weight: 700;
}

.order-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-soft);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
    font-family: var(--font-body);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c9a961'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 44px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--text-secondary);
    font-size: 14px;
}

.form-check input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--gold);
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 12px;
    color: var(--bg-primary);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px -10px rgba(201, 169, 97, 0.6);
}

.form-message {
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid #25D366;
    color: #25D366;
}

.form-message.error {
    background: rgba(255, 80, 80, 0.1);
    border: 1px solid #ff5050;
    color: #ff8080;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
    padding: 120px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--font-display);
    font-size: 120px;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--bg-primary);
}

.author-info .name {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.author-info .role {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ==========================================================================
   CONTACT & MAP
   ========================================================================== */
.contact {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px;
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
}

.contact-info-card > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.contact-item-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(201, 169, 97, 0.05) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
}

.contact-item-content .label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.contact-item-content .value {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.5;
}

.contact-item-content .value a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item-content .value a:hover {
    color: var(--gold);
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 500px;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    filter: invert(0.9) hue-rotate(180deg) saturate(0.7) brightness(0.9);
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1ebe5d;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7); }
    50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--bg-primary);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.footer-col h5 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--gold);
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 13px;
}

.footer-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

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

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.25; }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Scroll animations için */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-content,
    .order-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-visual {
        height: 400px;
        order: -1;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .steps::before {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 80px);
        background: var(--bg-secondary);
        border-left: 1px solid var(--border);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 24px;
        transition: right 0.4s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-cta .btn-outline {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    section {
        padding: 80px 0;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .order-form,
    .contact-info-card {
        padding: 32px 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 24px;
    }
}

/* ==========================================================================
   TRUST BAR - Profesyonellik Rozeti
   ========================================================================== */
.trust-bar {
    padding: 50px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    text-align: left;
}

.trust-item .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.05));
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
    flex-shrink: 0;
}

.trust-item .text {
    font-size: 13px;
    line-height: 1.5;
}

.trust-item .text strong {
    display: block;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.trust-item .text span {
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ==========================================================================
   MINI FAQ (Anasayfa)
   ========================================================================== */
.mini-faq {
    padding: 100px 0;
    background: var(--bg-secondary);
}

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

.mini-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mini-faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.mini-faq-item.open {
    border-color: var(--gold);
}

.mini-faq-q {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    font-weight: 500;
}

.mini-faq-q .toggle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    flex-shrink: 0;
}

.mini-faq-item.open .toggle {
    background: var(--gold);
    color: var(--bg-primary);
    transform: rotate(45deg);
}

.mini-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mini-faq-item.open .mini-faq-a {
    max-height: 400px;
}

.mini-faq-a > div {
    padding: 0 24px 22px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .mini-faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}


/* === RESIM STİLLERİ === */

/* Hero görseli - dekoratif çember yerine gerçek fotoğraf */
.hero-visual-image {
    position: relative;
    height: 600px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.hero-visual-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.4) 0%, transparent 50%, rgba(201, 169, 97, 0.15) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-visual-image::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.6);
    z-index: 2;
    pointer-events: none;
}

.hero-visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05);
    transition: transform 0.8s ease;
}

.hero-visual-image:hover img {
    transform: scale(1.03);
}

/* Hero alt dekor etiketi (sağ alt köşe) */
.hero-visual-image .visual-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    padding: 16px 20px;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 3;
}

.hero-visual-image .visual-badge .bdg-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.hero-visual-image .visual-badge .bdg-text {
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-primary);
}

.hero-visual-image .visual-badge .bdg-text strong {
    display: block;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 2px;
}

/* Servis kartları üst görseli */
.service-card {
    padding: 0 !important;
    overflow: hidden;
}

.service-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--bg-secondary);
}

.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(22, 22, 31, 0.9) 100%);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-card-body {
    padding: 32px;
}

.service-card-body h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 12px;
}

.service-card-body p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Müşteri yorumları - avatar gerçek fotoğraf */
.author-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}

.author-avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hakkımızda story görseli */
.story-visual-image {
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    position: relative;
    box-shadow: var(--shadow-soft);
}

.story-visual-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 15, 0.8) 100%);
    z-index: 1;
}

.story-visual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05);
}

.story-visual-image .story-year-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 2;
}

.story-visual-image .story-year-overlay .year {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 7rem);
    color: var(--gold);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -2px;
    font-style: italic;
}

.story-visual-image .story-year-overlay .since {
    font-size: 11px;
    color: var(--text-primary);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 8px;
    opacity: 0.8;
}

/* Süreç adımları - görsel arka plan */
.step-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--gold);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.step-image .step-num-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--gold);
    font-weight: 500;
    z-index: 2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

/* Servis görsel CSS - 1024'te küçültme */
@media (max-width: 1024px) {
    .hero-visual-image {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hero-visual-image {
        height: 380px;
    }
    .service-card-image {
        height: 180px;
    }
}

/* ==========================================================================
   GÜNCELLEMELER v2 - İyileştirmeler
   ========================================================================== */

/* Scroll progress bar - üstte altın çizgi */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    z-index: 1001;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.6);
}

/* Back-to-top butonu */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner .ck-icon {
    font-size: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

.cookie-banner .ck-text {
    flex: 1;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-banner .ck-text strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
    font-size: 14px;
}

.cookie-banner .ck-btn {
    padding: 8px 18px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 8px;
    color: var(--bg-primary);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.cookie-banner .ck-btn:hover {
    transform: translateY(-1px);
}

/* ==========================================================================
   HERO İYİLEŞTİRME - Animated grid + shine efekti
   ========================================================================== */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(201, 169, 97, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 60%);
    animation: grid-drift 40s linear infinite;
}

@keyframes grid-drift {
    from { background-position: 0 0; }
    to { background-position: 60px 60px; }
}

/* Hero badge shine */
.hero-badge {
    position: relative;
    overflow: hidden;
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.3), transparent);
    animation: shine 3s infinite;
}

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

/* ==========================================================================
   GALERİ - Öncesi / Sonrası
   ========================================================================== */
.gallery-section {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.gallery-item {
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.6);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 15, 0.95) 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0.9;
    transition: var(--transition);
}

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

.gallery-overlay .g-label {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gold);
    color: var(--bg-primary);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    width: fit-content;
}

.gallery-overlay h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.gallery-overlay p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
}

/* ==========================================================================
   KURUMSAL MÜŞTERİLER (Partnerler)
   ========================================================================== */
.partners-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-header p {
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    opacity: 0.5;
    filter: grayscale(1);
    transition: var(--transition);
}

.partners-logos:hover {
    opacity: 0.9;
    filter: grayscale(0.3);
}

.partner-logo {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.partner-logo:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.partner-logo .italic {
    font-style: italic;
    color: var(--gold);
}

/* ==========================================================================
   COMPARISON (Neden biz?)
   ========================================================================== */
.comparison-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.comparison-table {
    max-width: 900px;
    margin: 60px auto 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: center;
    padding: 20px 28px;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:hover {
    background: rgba(201, 169, 97, 0.03);
}

.comparison-row.header {
    background: rgba(201, 169, 97, 0.06);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    padding: 18px 28px;
}

.comparison-feature {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.comparison-cell {
    text-align: center;
    font-size: 14px;
}

.comparison-cell.keta {
    color: var(--gold);
    font-weight: 600;
}

.comparison-cell.other {
    color: var(--text-muted);
}

.comparison-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
}

.comparison-check.yes {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}

.comparison-check.no {
    background: rgba(248, 113, 113, 0.15);
    color: #f87171;
}

@media (max-width: 768px) {
    .comparison-row {
        grid-template-columns: 1.5fr 0.8fr 0.8fr;
        padding: 16px 16px;
        font-size: 13px;
    }
    
    .comparison-feature {
        font-size: 13px;
    }
}

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.newsletter-section {
    padding: 100px 0;
    background: 
        radial-gradient(ellipse at center, rgba(201, 169, 97, 0.1) 0%, transparent 60%),
        var(--bg-secondary);
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.newsletter-box h3 .italic {
    font-style: italic;
    color: var(--gold);
}

.newsletter-box > p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.newsletter-form .btn {
    padding: 16px 28px;
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.5);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.blog-meta .category {
    color: var(--gold);
}

.blog-card h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 12px;
    transition: var(--transition);
}

.blog-card:hover h4 {
    color: var(--gold);
}

.blog-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card .read-more {
    font-size: 13px;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card:hover .read-more {
    gap: 10px;
}

/* ==========================================================================
   IMPROVED HAMBURGER MENU ANIMATION
   ========================================================================== */
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

/* ==========================================================================
   LOADER / PAGE FADE-IN
   ========================================================================== */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--bg-primary);
    animation: loader-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 0 60px rgba(201, 169, 97, 0.5);
}

@keyframes loader-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.85; }
}

/* ==========================================================================
   IMPROVED SCROLLBAR
   ========================================================================== */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-dark), var(--gold));
    border-radius: 10px;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ==========================================================================
   Selection color
   ========================================================================== */
::selection {
    background: var(--gold);
    color: var(--bg-primary);
}

::-moz-selection {
    background: var(--gold);
    color: var(--bg-primary);
}

/* ==========================================================================
   v3 - FURKAN BENZERİ GELİŞTİRMELER
   ========================================================================== */

/* ==========================================================================
   TOP INFO BAR (navbar'ın üstünde ince bilgi şeridi)
   ========================================================================== */
.top-info-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
    padding: 10px 0;
    font-size: 12px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: transform 0.3s ease;
}

.top-info-bar.hidden {
    transform: translateY(-100%);
}

.top-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.top-info-left {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.top-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.top-info-item:hover {
    color: var(--gold);
}

.top-info-item .icon {
    color: var(--gold);
    font-size: 14px;
}

.top-info-right {
    display: flex;
    gap: 12px;
}

.top-info-right a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.1);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.top-info-right a:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

/* Navbar'ı top-bar için aşağı kaydır */
body.has-top-bar .navbar {
    top: 42px;
}

@media (max-width: 768px) {
    .top-info-bar {
        display: none;
    }
    body.has-top-bar .navbar {
        top: 0;
    }
}

/* ==========================================================================
   BEFORE / AFTER (Öncesi / Sonrası)
   ========================================================================== */
.before-after-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.before-after-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.ba-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.ba-card:hover {
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--gold);
    position: relative;
}

.ba-image-wrapper {
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
    background: var(--bg-secondary);
}

.ba-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ba-card:hover .ba-image-wrapper img {
    transform: scale(1.05);
}

.ba-label {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.ba-label.before {
    background: rgba(248, 113, 113, 0.9);
    color: white;
    backdrop-filter: blur(6px);
}

.ba-label.after {
    background: var(--gold-gradient);
    color: var(--bg-primary);
}

.ba-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-primary);
    border: 2px solid var(--gold);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    z-index: 3;
}

.ba-body {
    padding: 24px;
    text-align: center;
}

.ba-body h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.ba-body p {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

/* ==========================================================================
   ACİL CTA BANNER
   ========================================================================== */
.urgent-cta {
    padding: 60px 0;
    background: 
        linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, transparent 50%, rgba(201, 169, 97, 0.08) 100%),
        var(--bg-primary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.urgent-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
}

.urgent-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.urgent-cta-text {
    flex: 1;
    min-width: 280px;
}

.urgent-cta .flash {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 50px;
    color: #fbbf24;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    animation: pulse-flash 2s infinite;
}

@keyframes pulse-flash {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
}

.urgent-cta h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.urgent-cta h3 .italic {
    font-style: italic;
    color: var(--gold);
}

.urgent-cta p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.urgent-cta-phone {
    flex-shrink: 0;
    text-align: center;
}

.urgent-cta-phone .big-phone {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 12px;
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

.urgent-cta-phone .big-phone:hover {
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(201, 169, 97, 0.6);
}

.urgent-cta-phone .label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
}

/* ==========================================================================
   ŞUBE KARTLARI
   ========================================================================== */
.branches-section {
    padding: 120px 0;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.branch-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.branch-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

.branch-map {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--bg-secondary);
}

.branch-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: invert(0.9) hue-rotate(180deg) saturate(0.7) brightness(0.9);
    transition: transform 0.6s ease;
}

.branch-card:hover .branch-map iframe {
    transform: scale(1.05);
}

.branch-body {
    padding: 28px;
}

.branch-body .b-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.branch-body h4 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 14px;
}

.branch-info {
    display: flex;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.branch-info .icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.branch-direction {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
    color: var(--gold);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.branch-card:hover .branch-direction {
    gap: 12px;
}

/* ==========================================================================
   EKSTRA HİZMETLER (Mini Servis Kartları) - Yeni hizmetler için
   ========================================================================== */
.extra-services {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.extra-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 50px;
}

.extra-service-chip {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.extra-service-chip:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08), transparent);
}

.extra-service-chip .emoji {
    font-size: 34px;
    margin-bottom: 12px;
    display: block;
    filter: grayscale(0.3);
    transition: var(--transition);
}

.extra-service-chip:hover .emoji {
    filter: grayscale(0);
    transform: scale(1.1);
}

.extra-service-chip h5 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 6px;
}

.extra-service-chip p {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   STATS COUNTER (Yıllar, müşteriler vb)
   ========================================================================== */
.stats-counter-section {
    padding: 100px 0;
    background: 
        linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, transparent 50%),
        var(--bg-primary);
    position: relative;
}

.stats-counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-counter {
    position: relative;
}

.stat-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.stat-counter {
    padding-top: 30px;
}

.stat-counter .big-num {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -2px;
    font-style: italic;
}

.stat-counter .big-num::after {
    content: '+';
    color: var(--gold);
    font-style: normal;
}

.stat-counter .lbl {
    margin-top: 12px;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.stat-counter .desc {
    margin-top: 6px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
}

/* ==========================================================================
   GOOGLE REVIEW BADGE
   ========================================================================== */
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 13px;
    margin-top: 16px;
}

.google-badge .g-logo {
    width: 20px;
    height: 20px;
    background: conic-gradient(from 0deg, #4285f4, #ea4335, #fbbc04, #34a853, #4285f4);
    border-radius: 50%;
}

.google-badge .g-stars {
    color: #fbbc04;
    letter-spacing: 2px;
}

.google-badge strong {
    color: var(--text-primary);
}

.google-badge span {
    color: var(--text-muted);
}


/* ==========================================================================
   v4 - DÜNYA ÇAPINDAKİ EN İYİ ÖZELLİKLER
   ========================================================================== */

/* ==========================================================================
   LIVE SOCIAL PROOF - "X kişi şu an bakıyor"
   ========================================================================== */
.live-proof {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 20px 10px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 998;
    box-shadow: var(--shadow-soft);
    transform: translateY(120%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 320px;
}

.live-proof.visible {
    transform: translateY(0);
}

.live-proof .lp-dot {
    width: 10px;
    height: 10px;
    background: #4ade80;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    animation: pulse-live 2s infinite;
}

@keyframes pulse-live {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
    50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.live-proof .lp-text {
    font-size: 13px;
    color: var(--text-primary);
    line-height: 1.3;
}

.live-proof .lp-text strong {
    color: var(--gold);
    font-weight: 600;
}

.live-proof .lp-close {
    margin-left: 8px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
    padding: 0 4px;
    line-height: 1;
}

.live-proof .lp-close:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .live-proof {
        bottom: 80px;
        left: 10px;
        right: 10px;
        max-width: none;
        font-size: 12px;
    }
}

/* ==========================================================================
   PRICING TIERS - Paketler
   ========================================================================== */
.pricing-section {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 48px 36px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.7);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(201, 169, 97, 0.08) 0%, var(--bg-card) 50%);
    border-color: var(--gold);
    transform: scale(1.03);
    box-shadow: 0 20px 60px -15px rgba(201, 169, 97, 0.25);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    background: var(--gold-gradient);
    color: var(--bg-primary);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card .tier-label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.pricing-card .tier-name {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.pricing-card .tier-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    min-height: 44px;
}

.pricing-card .tier-price {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-card .tier-price .amount {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--gold);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2px;
}

.pricing-card .tier-price .currency {
    font-size: 20px;
    color: var(--text-secondary);
    vertical-align: top;
}

.pricing-card .tier-price .period {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 8px;
    display: block;
}

.pricing-card .tier-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-card .tier-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-card .tier-features li::before {
    content: '✓';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: rgba(201, 169, 97, 0.15);
    color: var(--gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.pricing-card .tier-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

.pricing-card .tier-features li.disabled::before {
    content: '✕';
    background: rgba(107, 107, 125, 0.15);
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* ==========================================================================
   FOUNDER / OWNER STORY
   ========================================================================== */
.founder-section {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

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

.founder-image {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--gold);
    box-shadow: 
        0 30px 60px -20px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(201, 169, 97, 0.15),
        0 0 50px -10px rgba(201, 169, 97, 0.2);
}

.founder-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 70%, rgba(201, 169, 97, 0.08) 100%);
    pointer-events: none;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.founder-image .sig-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold);
    border-radius: 12px;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold);
    font-size: 18px;
    z-index: 2;
}

.founder-content .section-label {
    margin-bottom: 24px;
    display: inline-block;
}

.founder-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.founder-content h2 .italic {
    font-style: italic;
    color: var(--gold);
}

.founder-quote {
    padding: 24px 0 24px 24px;
    border-left: 2px solid var(--gold);
    margin: 32px 0;
    font-family: var(--font-display);
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-primary);
}

.founder-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.founder-signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
}

.founder-signature .name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.founder-signature .title {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ==========================================================================
   AWARDS / CERTIFICATES
   ========================================================================== */
.awards-section {
    padding: 80px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.awards-header {
    text-align: center;
    margin-bottom: 50px;
}

.awards-header p {
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.award-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.award-badge:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08), transparent);
}

.award-badge .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.05));
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--gold);
}

.award-badge h5 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.award-badge p {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}

/* ==========================================================================
   PRICE CALCULATOR (Instant quote)
   ========================================================================== */
.calculator-section {
    padding: 120px 0;
    background: 
        radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.12) 0%, transparent 50%),
        var(--bg-primary);
}

.calculator-wrap {
    max-width: 900px;
    margin: 60px auto 0;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.7);
}

.calc-header {
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), transparent);
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.calc-header h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 6px;
}

.calc-header p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

.calc-discount {
    background: rgba(74, 222, 128, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.4);
    color: #4ade80;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.calc-body {
    padding: 40px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
}

.calc-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.calc-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: center;
    padding: 16px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    transition: var(--transition);
}

.calc-item:hover {
    border-color: var(--border);
}

.calc-item-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.calc-item-icon {
    width: 36px;
    height: 36px;
    background: rgba(201, 169, 97, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}

.calc-item-name {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.calc-item-price {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.calc-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--gold);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.calc-qty-btn:hover {
    background: var(--gold);
    color: var(--bg-primary);
}

.calc-qty-value {
    min-width: 28px;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
}

.calc-total {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.02));
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.calc-total .ct-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.calc-total .ct-amount {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--gold);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

.calc-total .ct-amount .currency {
    font-size: 20px;
    color: var(--text-secondary);
    vertical-align: top;
}

.calc-total .ct-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.calc-discount-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 13px;
    color: var(--text-secondary);
    border-top: 1px dashed var(--border-light);
}

.calc-discount-line:first-of-type {
    border-top: none;
    padding-top: 0;
}

.calc-discount-line.saving {
    color: #4ade80;
}

.calc-total-final {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.calc-cta {
    margin-top: 20px;
    padding: 14px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 12px;
    color: var(--bg-primary);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    width: 100%;
}

.calc-cta:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .calc-body {
        grid-template-columns: 1fr;
        padding: 24px;
    }
    
    .calc-total {
        position: static;
        order: -1;
    }
}

/* ==========================================================================
   CONTACT / LOCATION (tek şube)
   ========================================================================== */
.location-section {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: stretch;
}

.location-info {
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
}

.location-info h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.location-info > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
}

.location-detail:last-of-type {
    border-bottom: none;
}

.location-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.05));
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    flex-shrink: 0;
}

.location-detail-content .label {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.location-detail-content .value {
    color: var(--text-primary);
    font-size: 15px;
    line-height: 1.5;
}

.location-detail-content .value a {
    color: var(--text-primary);
    text-decoration: none;
}

.location-detail-content .value a:hover {
    color: var(--gold);
}

.location-actions {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.location-map-big {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 500px;
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.5);
}

.location-map-big iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    filter: invert(0.9) hue-rotate(180deg) saturate(0.7) brightness(0.9);
}

@media (max-width: 900px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-info {
        padding: 36px 28px;
    }
    
    .location-map-big {
        min-height: 350px;
    }
    
    .location-map-big iframe {
        min-height: 350px;
    }
}


/* ==========================================================================
   v5 - SERVİS BÖLGELERİ + MAVİ KUMBARA
   ========================================================================== */

/* ==========================================================================
   SERVİS BÖLGELERİ
   ========================================================================== */
.service-area-section {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.service-area-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.service-area-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
    margin-top: 60px;
}

.service-area-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-area-info h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.service-area-info h2 .italic {
    font-style: italic;
    color: var(--gold);
}

.service-area-info > p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 32px;
}

.area-zones {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.area-zone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.area-zone:hover {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08), transparent);
    transform: translateY(-2px);
}

.area-zone .pin {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(201, 169, 97, 0.05));
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
    position: relative;
}

.area-zone .pin::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: pin-pulse 2s infinite;
}

@keyframes pin-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0; }
}

.area-zone .zone-name {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.area-zone .zone-time {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.service-area-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.area-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 10px;
}

.area-feature .icon {
    color: #4ade80;
    font-size: 18px;
    flex-shrink: 0;
}

.area-feature .text {
    font-size: 13px;
    color: var(--text-primary);
    line-height: 1.4;
}

.area-feature .text strong {
    display: block;
    color: #4ade80;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.service-area-map {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

.service-area-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
    filter: invert(0.9) hue-rotate(180deg) saturate(0.7) brightness(0.9);
}

.service-area-map .map-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    padding: 20px 24px;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.service-area-map .map-overlay-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: 24px;
    flex-shrink: 0;
}

.service-area-map .map-overlay-text {
    flex: 1;
}

.service-area-map .map-overlay-text strong {
    display: block;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 4px;
}

.service-area-map .map-overlay-text span {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .service-area-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .area-zones {
        grid-template-columns: 1fr;
    }
    
    .service-area-features {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   MAVİ KUMBARA - SOSYAL SORUMLULUK
   ========================================================================== */
.kumbara-section {
    padding: 120px 0;
    background: 
        radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
        var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.kumbara-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.kumbara-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.kumbara-visual {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 40px 80px -25px rgba(0, 0, 0, 0.7);
}

.kumbara-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, transparent 50%, rgba(201, 169, 97, 0.15) 100%);
    z-index: 2;
    pointer-events: none;
}

.kumbara-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.05);
    transition: transform 0.8s ease;
}

.kumbara-visual:hover img {
    transform: scale(1.05);
}

.kumbara-icon-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    z-index: 3;
    box-shadow: 0 15px 40px -10px rgba(59, 130, 246, 0.6);
    animation: kumbara-float 4s ease-in-out infinite;
}

@keyframes kumbara-float {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
}

.kumbara-stats-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    padding: 20px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    z-index: 3;
}

.kumbara-stats-overlay .stat-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 16px;
}

.kumbara-stats-overlay .stat-item:last-child {
    border-right: none;
}

.kumbara-stats-overlay .stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    color: #3b82f6;
    font-weight: 500;
    line-height: 1;
}

.kumbara-stats-overlay .stat-lbl {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

.kumbara-content .kumbara-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.4);
    color: #60a5fa;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.kumbara-content .kumbara-label .pulse {
    width: 6px;
    height: 6px;
    background: #60a5fa;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.kumbara-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.kumbara-content h2 .italic {
    font-style: italic;
    color: #3b82f6;
}

.kumbara-content > p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 28px;
}

.kumbara-steps {
    list-style: none;
    margin: 32px 0;
}

.kumbara-steps li {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border-light);
}

.kumbara-steps li:last-child {
    border-bottom: none;
}

.kumbara-steps .step-circle {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 8px 20px -5px rgba(59, 130, 246, 0.4);
}

.kumbara-steps .step-content h5 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.kumbara-steps .step-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.kumbara-cta {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px -8px rgba(59, 130, 246, 0.5);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -8px rgba(59, 130, 246, 0.7);
}

@media (max-width: 900px) {
    .kumbara-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .kumbara-icon-overlay {
        width: 60px;
        height: 60px;
        font-size: 30px;
        top: 20px;
        right: 20px;
    }
    
    .kumbara-stats-overlay {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
        padding: 14px;
    }
    
    .kumbara-stats-overlay .stat-num {
        font-size: 22px;
    }
    
    .kumbara-stats-overlay .stat-item {
        padding-right: 8px;
    }
}

/* Mavi Kumbara Avantaj Banner (CTA) */
.kumbara-bonus-banner {
    margin-top: 60px;
    padding: 36px 40px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(201, 169, 97, 0.08) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.kumbara-bonus-banner::before {
    content: '🎁';
    position: absolute;
    right: -30px;
    top: -30px;
    font-size: 200px;
    opacity: 0.04;
    transform: rotate(-15deg);
    pointer-events: none;
}

.kumbara-bonus-banner .bonus-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
    box-shadow: 0 15px 30px -10px rgba(59, 130, 246, 0.5);
}

.kumbara-bonus-banner .bonus-text {
    flex: 1;
    min-width: 260px;
}

.kumbara-bonus-banner .bonus-text h4 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.kumbara-bonus-banner .bonus-text p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.kumbara-bonus-banner .bonus-text strong {
    color: #60a5fa;
}


/* ==========================================================================
   v6 - KE&TA LOGO TASARIM
   ========================================================================== */

/* Yeni logo mark - "KE&TA" */
.logo-mark-new {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    padding: 6px 14px;
    background: var(--gold-gradient);
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--bg-primary);
    box-shadow: var(--shadow-gold);
    position: relative;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-mark-new .ke {
    font-size: 22px;
    font-weight: 700;
}

.logo-mark-new .amp {
    font-size: 18px;
    font-weight: 400;
    font-style: italic;
    margin: 0 2px;
    opacity: 0.85;
}

.logo-mark-new .ta {
    font-size: 22px;
    font-weight: 700;
}

.logo-mark-new::after {
    content: '';
    position: absolute;
    inset: -3px;
    border: 1px solid var(--gold);
    border-radius: 10px;
    opacity: 0.3;
    pointer-events: none;
}

/* Navbar'da logo + tag düzeni */
.logo-text-new {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text-new .brand-line {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 6px;
    font-weight: 500;
}

.logo-text-new .brand-line .accent {
    color: var(--gold);
}

/* Loader logo - büyük KE&TA */
.loader-logo-new {
    padding: 16px 28px;
    background: var(--gold-gradient);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: var(--bg-primary);
    font-family: var(--font-display);
    font-weight: 700;
    box-shadow: 0 0 80px rgba(201, 169, 97, 0.5);
    animation: loader-pulse 1.5s ease-in-out infinite;
    position: relative;
}

.loader-logo-new .ke,
.loader-logo-new .ta {
    font-size: 42px;
}

.loader-logo-new .amp {
    font-size: 32px;
    font-style: italic;
    margin: 0 4px;
    opacity: 0.85;
}

.loader-logo-new::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid var(--gold);
    border-radius: 18px;
    opacity: 0.4;
}



/* === KE&TA Dükkan Fotoğrafı - Premium ve Parlak === */
.founder-image img {
    /* Fotoğraf zaten keskinleştirildi, sadece hafif vurgu */
    filter: contrast(1.02) saturate(1.05);
    transition: filter 0.5s ease, transform 0.6s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.founder-image:hover img {
    transform: scale(1.02);
}

/* Overlay'i tamamen şeffaf yap - sadece köşede çok ince altın vurgu */
.founder-image::after {
    background: linear-gradient(
        135deg,
        transparent 70%,
        rgba(201, 169, 97, 0.08) 100%
    );
}

/* Sig-badge (sağ alt köşedeki rozet) - daha şık ve okunaklı */
.founder-image .sig-badge {
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 22px;
    box-shadow: 
        0 8px 30px -5px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(201, 169, 97, 0.3);
    letter-spacing: 0.5px;
}

/* ==========================================================================
   v7 - BEFORE/AFTER GERÇEKÇİ KİRLİ GÖRÜNÜM
   ========================================================================== */

/* "Öncesi" görsel - kirli/yıpranmış görünüm */
.ba-img-dirty {
    filter: 
        brightness(0.65)
        contrast(0.85)
        saturate(0.55)
        sepia(0.35)
        hue-rotate(-10deg);
}

/* "Sonrası" görsel - parlak ve temiz */
.ba-img-clean {
    filter: 
        brightness(1.05)
        contrast(1.08)
        saturate(1.1);
}

/* Üzerine eklenen leke noktaları */
.ba-stain {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(
        circle,
        rgba(60, 30, 0, 0.55) 0%,
        rgba(80, 50, 20, 0.35) 50%,
        transparent 100%
    );
    filter: blur(3px);
    mix-blend-mode: multiply;
}

/* Farklı leke konumları ve boyutları */
.ba-stain-1 {
    top: 25%;
    left: 30%;
    width: 60px;
    height: 50px;
}

.ba-stain-2 {
    top: 55%;
    left: 55%;
    width: 45px;
    height: 35px;
    background: radial-gradient(
        circle,
        rgba(80, 0, 0, 0.5) 0%,
        rgba(100, 20, 20, 0.25) 60%,
        transparent 100%
    );
}

.ba-stain-3 {
    top: 35%;
    left: 50%;
    width: 90px;
    height: 70px;
    background: radial-gradient(
        circle,
        rgba(40, 20, 0, 0.6) 0%,
        rgba(60, 35, 15, 0.3) 50%,
        transparent 100%
    );
}

.ba-stain-4 {
    top: 60%;
    left: 25%;
    width: 65px;
    height: 50px;
    background: radial-gradient(
        circle,
        rgba(30, 40, 60, 0.5) 0%,
        rgba(50, 60, 80, 0.25) 50%,
        transparent 100%
    );
}

.ba-stain-5 {
    top: 30%;
    left: 35%;
    width: 50px;
    height: 40px;
    background: radial-gradient(
        circle,
        rgba(120, 80, 30, 0.4) 0%,
        rgba(140, 100, 50, 0.2) 60%,
        transparent 100%
    );
}

.ba-stain-6 {
    top: 65%;
    left: 50%;
    width: 55px;
    height: 45px;
    background: radial-gradient(
        circle,
        rgba(80, 60, 30, 0.45) 0%,
        rgba(100, 80, 50, 0.2) 50%,
        transparent 100%
    );
}

/* Hover'da leke biraz solar (önizleme efekti gibi) */
.ba-card:hover .ba-stain {
    opacity: 0.7;
    transition: opacity 0.4s;
}

.ba-card:hover .ba-img-dirty {
    transition: filter 0.4s;
}


/* ==========================================================================
   v8 - NAVBAR HIZLI İLETİŞİM CTA BUTONU
   ========================================================================== */
.nav-cta-wrap {
    margin-left: 8px;
}

.nav-cta {
    display: inline-flex !important;
    align-items: center;
    padding: 10px 18px !important;
    background: var(--gold-gradient) !important;
    color: var(--bg-primary) !important;
    border-radius: 50px;
    font-weight: 600 !important;
    font-size: 13px !important;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px -5px rgba(201, 169, 97, 0.5);
    white-space: nowrap;
    position: relative;
    animation: nav-cta-pulse 2.5s infinite;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(201, 169, 97, 0.7);
    color: var(--bg-primary) !important;
}

.nav-cta::before {
    display: none !important;
}

.nav-cta::after {
    display: none !important;
}

@keyframes nav-cta-pulse {
    0%, 100% { 
        box-shadow: 
            0 6px 20px -5px rgba(201, 169, 97, 0.5),
            0 0 0 0 rgba(201, 169, 97, 0.5);
    }
    50% { 
        box-shadow: 
            0 6px 20px -5px rgba(201, 169, 97, 0.5),
            0 0 0 8px rgba(201, 169, 97, 0);
    }
}

/* Mobilde nav-cta gizle (zaten WhatsApp float ve top-bar'da var) */
@media (max-width: 1100px) {
    .nav-cta-wrap {
        display: none !important;
    }
}


/* ==========================================================================
   v9 - HİZMETLER SAYFASI SERVİS DETAY KARTLARI
   ========================================================================== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.service-detail:last-child {
    border-bottom: none;
}

/* Tek/çift sırada görsel-metin pozisyonunu değiştir (zigzag düzen) */
.service-detail:nth-child(even) .service-detail-image {
    order: 2;
}

.service-detail-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 
        0 20px 60px -20px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(201, 169, 97, 0.15);
    position: relative;
    transition: all 0.4s ease;
}

.service-detail-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 70%, rgba(201, 169, 97, 0.08) 100%);
    pointer-events: none;
    z-index: 1;
}

.service-detail-image:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 30px 80px -20px rgba(0, 0, 0, 0.7),
        0 0 0 1px var(--gold);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

/* Metin tarafı */
.service-detail > div:not(.service-detail-image) {
    padding: 20px 0;
}

.service-detail .label {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--gold);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.service-detail h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.service-detail p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.service-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-light);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: rgba(201, 169, 97, 0.15);
    color: var(--gold);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Mobilde tek sütun */
@media (max-width: 900px) {
    .service-detail {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 60px 0;
    }
    
    .service-detail:nth-child(even) .service-detail-image {
        order: 0;
    }
    
    .service-detail-image {
        aspect-ratio: 16/10;
    }
}



/* === NAVBAR HOTFIX 2026-04 === */
/* Tasma sorunlarini cozer, logo + menu + CTA dengeli */

.navbar {
    padding: 12px 0;
}

.nav-container {
    max-width: 1280px;
    padding: 0 20px;
    gap: 20px;
}

/* Logo'yu kucult */
.logo-text-new {
    font-size: 22px !important;
    line-height: 1.1;
}

.logo-text-new .brand-line {
    font-size: 11px !important;
    letter-spacing: 1.5px;
    line-height: 1.1;
}

/* Menu linklerini biraz daralt */
.nav-menu {
    gap: 22px;
}

.nav-menu li a {
    font-size: 13px;
    letter-spacing: 0.3px;
}

/* Nav CTA butonu kompakt */
.nav-cta {
    padding: 10px 20px !important;
    font-size: 13px !important;
}

.nav-mobile-only {
    display: none;
}

/* Mobilde hamburger goster, menu gizle */
@media (max-width: 1100px) {
    .nav-menu {
        display: none;
    }
    .nav-mobile-only {
        display: block;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 22px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--text-primary, #fff);
        border-radius: 2px;
    }
}

/* Cok kucuk ekranlarda logo ek kucult */
@media (max-width: 480px) {
    .logo-text-new {
        font-size: 18px !important;
    }
    .logo-text-new .brand-line {
        font-size: 9px !important;
    }
}
