/* ==========================================================================
   FATİH KOMBİ - ÇERKEZKÖY KOMBİ BAKIM, ONARIM VE MONTAJ SERVİSİ
   Design System: Clean White Base with Energizing Flame Orange & Water Cyan
   ========================================================================== */

:root {
    --color-orange-primary: #ff6b00;
    --color-orange-hover: #e05d00;
    --color-orange-light: #fff7ed;
    --color-orange-border: #ffedd5;
    
    --color-cyan-primary: #0ea5e9;
    --color-cyan-hover: #0284c7;
    --color-cyan-light: #f0f9ff;
    
    --color-bg-white: #ffffff;
    --color-bg-light: #f8fafc;
    --color-bg-alt: #f1f5f9;
    
    --color-text-dark: #0f172a;
    --color-text-muted: #475569;
    --color-text-light: #94a3b8;
    
    --color-whatsapp: #22c55e;
    --color-whatsapp-hover: #16a34a;
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-full: 9999px;
    
    --shadow-subtle: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 30px -4px rgba(249, 115, 22, 0.12);
    --shadow-lg: 0 20px 40px -6px rgba(15, 23, 42, 0.12);
    --shadow-orange: 0 10px 25px -3px rgba(255, 107, 0, 0.35);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-orange { color: var(--color-orange-primary) !important; }
.text-cyan { color: var(--color-cyan-primary) !important; }
.text-white { color: #ffffff !important; }
.bg-light { background-color: var(--color-bg-light) !important; }

/* Section Utilities */
.section {
    padding: 90px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-orange-light);
    color: var(--color-orange-primary);
    border: 1px solid var(--color-orange-border);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-text-dark);
    line-height: 1.25;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 48px auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-orange-primary), #ff8c00);
    color: #ffffff;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-orange-hover), var(--color-orange-primary));
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -4px rgba(255, 107, 0, 0.45);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: #ffffff;
    box-shadow: 0 10px 25px -3px rgba(34, 197, 94, 0.35);
}

.btn-whatsapp:hover {
    background: var(--color-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -4px rgba(34, 197, 94, 0.45);
}

.btn-outline-orange {
    background: transparent;
    border: 2px solid var(--color-orange-primary);
    color: var(--color-orange-primary);
}

.btn-outline-orange:hover {
    background: var(--color-orange-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-light-orange {
    background: var(--color-orange-light);
    color: var(--color-orange-primary);
    border: 1px solid var(--color-orange-border);
}

.btn-light-orange:hover {
    background: #ffedd5;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================
   TOP BAR
   ========================================== */
/* ==========================================
   TOP BAR (ULTRA MODERN GLASS DESIGN)
   ========================================== */
.top-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #e2e8f0;
    font-size: 0.84rem;
    padding: 8px 0;
    border-bottom: 2px solid #ff6b00;
    position: relative;
    z-index: 1001;
}

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

.top-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    color: #cbd5e1;
}

.badge-experience {
    background: rgba(255, 107, 0, 0.15);
    color: #ff8c00;
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 107, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.top-phone {
    color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.top-phone i {
    color: var(--color-orange-primary);
    font-size: 0.95rem;
}

.top-phone:hover {
    color: var(--color-orange-primary);
}

.top-divider {
    color: #475569;
}

.top-whatsapp {
    color: #4ade80;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding: 2px 10px;
    background: rgba(34, 197, 94, 0.12);
    border-radius: var(--radius-full);
    border: 1px solid rgba(34, 197, 94, 0.25);
    transition: var(--transition);
}

.top-whatsapp:hover {
    background: rgba(34, 197, 94, 0.25);
    color: #86efac;
    transform: translateY(-1px);
}

.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* ==========================================
   HEADER & LOGO (PREMIUM NAVIGATION)
   ========================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 25px -4px rgba(15, 23, 42, 0.06);
    transition: var(--transition);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon-svg {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon-svg {
    transform: scale(1.05) rotate(3deg);
}

.logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(249, 115, 22, 0.25));
}

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

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.brand-navy {
    color: #0f172a;
}

.brand-orange {
    color: #ff6b00;
}

.brand-subtitle {
    font-size: 0.65rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1.5px;
    margin-top: 2px;
}

/* Nav Menu Items */
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: #334155;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    position: relative;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--color-orange-primary);
    background-color: rgba(255, 107, 0, 0.06);
}

.nav-link.active {
    color: var(--color-orange-primary);
    background-color: var(--color-orange-light);
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 3px;
    background: var(--color-orange-primary);
    border-radius: var(--radius-full);
}

.nav-highlight-eca {
    color: #0284c7 !important;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: var(--radius-full);
    padding: 6px 14px;
}

.nav-highlight-eca:hover {
    background: #e0f2fe;
}

.nav-highlight-promo {
    color: #ff6b00 !important;
    background: #fff7ed;
    border: 1px solid #ffedd5;
    border-radius: var(--radius-full);
    padding: 6px 14px;
}

.nav-highlight-promo:hover {
    background: #ffedd5;
}

/* Header Call CTA Button */
.btn-call-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b00 0%, #ea580c 100%);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.btn-call-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(255, 107, 0, 0.45);
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    color: #ffffff;
}

.btn-call-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.btn-call-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.call-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    font-weight: 500;
}

.call-num {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
}

.mobile-toggle {
    display: none;
    background: #f1f5f9;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    font-size: 1.3rem;
    color: #0f172a;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: #e2e8f0;
    color: var(--color-orange-primary);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    padding: 70px 0 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-bg-white);
    color: var(--color-orange-primary);
    border: 1px solid var(--color-orange-border);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-subtle);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.highlight-orange {
    color: var(--color-orange-primary);
    position: relative;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 36px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text-dark);
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 237, 213, 0.6);
}

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

.hero-visual {
    position: relative;
}

.hero-card-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid #ffffff;
    object-fit: cover;
}

.hero-floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #f1f5f9;
}

.badge-top-right {
    top: -20px;
    right: -20px;
}

.badge-top-right i {
    font-size: 2rem;
    color: var(--color-orange-primary);
}

.badge-bottom-left {
    bottom: -20px;
    left: -20px;
}

.badge-bottom-left i {
    font-size: 2rem;
}

.hero-floating-badge strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-text-dark);
}

.hero-floating-badge span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
    background: #0f172a;
    color: #ffffff;
    padding: 45px 0;
    position: relative;
    border-bottom: 4px solid var(--color-orange-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    padding: 10px;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--color-orange-primary);
    margin-bottom: 10px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* ==========================================
   ABOUT / 25 YIL TECRÜBE SECTION
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-image-card {
    position: relative;
    border-radius: var(--radius-lg);
}

.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.experience-seal {
    position: absolute;
    bottom: 30px;
    right: -25px;
    width: 120px;
    height: 120px;
    background: var(--color-orange-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 6px solid #ffffff;
    box-shadow: var(--shadow-orange);
}

.seal-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.seal-text {
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1.1;
}

.about-lead {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-orange-primary);
    margin-bottom: 16px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0 36px 0;
}

.highlight-item {
    display: flex;
    gap: 16px;
}

.highlight-item .icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-orange-light);
    color: var(--color-orange-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 2px;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-subtle);
    border: 1px solid #e2e8f0;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-orange-border);
}

.service-card.highlighted-card {
    border: 2px solid var(--color-orange-primary);
    background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
}

.popular-badge {
    position: absolute;
    top: -14px;
    right: 24px;
    background: var(--color-orange-primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--color-cyan-light);
    color: var(--color-cyan-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.icon-orange {
    background: var(--color-orange-light);
    color: var(--color-orange-primary);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-list {
    margin-bottom: 24px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-orange-primary);
}

.service-link:hover {
    gap: 12px;
}

/* ==========================================
   E.C.A. ÖZEL BÖLÜM
   ========================================== */
.section-eca {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.eca-banner-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.eca-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(14, 165, 233, 0.2);
    color: #38bdf8;
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.eca-content h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.eca-lead {
    font-size: 1.15rem;
    color: var(--color-orange-primary);
    font-weight: 600;
    margin-bottom: 14px;
}

.eca-content p {
    color: #94a3b8;
    margin-bottom: 28px;
}

.eca-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 34px;
}

.eca-feat {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.eca-feat i {
    font-size: 1.6rem;
    color: var(--color-orange-primary);
    margin-bottom: 8px;
    display: block;
}

.eca-feat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.eca-feat span {
    font-size: 0.75rem;
    color: #94a3b8;
}

.eca-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.eca-image-box {
    position: relative;
}

.eca-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.eca-floating-tag {
    position: absolute;
    bottom: -15px;
    left: 20px;
    background: var(--color-orange-primary);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-orange);
}

.eca-floating-tag strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.eca-floating-tag span {
    font-size: 0.78rem;
    opacity: 0.9;
}

/* ==========================================
   BRAND CATALOG SECTION
   ========================================== */
.brand-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.brand-tab {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.brand-tab:hover, .brand-tab.active {
    background: var(--color-orange-primary);
    color: #ffffff;
    border-color: var(--color-orange-primary);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.brand-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
    position: relative;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-orange-primary);
}

.brand-header-badge {
    display: inline-block;
    background: var(--color-bg-alt);
    color: var(--color-text-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.brand-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.brand-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.brand-tags span {
    background: var(--color-orange-light);
    color: var(--color-orange-primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.brand-link-ariza {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-cyan-hover);
}

/* ==========================================
   ESKİSİNİ GETİR YENİSİNİ GÖTÜR KAMPANYASI
   ========================================== */
.campaign-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
    border: 2px solid var(--color-orange-border);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-lg);
}

.campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-orange-primary);
    color: #ffffff;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.campaign-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.campaign-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 750px;
    margin: 0 auto 40px auto;
}

.campaign-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.campaign-img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
    width: 100%;
}

.campaign-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.c-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.campaign-calculator-card {
    background: #ffffff;
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid #e2e8f0;
}

.campaign-calculator-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.calc-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 6px;

}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: #ffffff;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-orange-primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.discount-estimation-box {
    background: var(--color-orange-light);
    border: 1px solid var(--color-orange-border);
    border-radius: var(--radius-md);
    padding: 18px;
    text-align: center;
    margin: 24px 0;
}

.discount-estimation-box span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.discount-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-orange-primary);
    margin: 4px 0;
}

.discount-estimation-box small {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* ==========================================
   ARIZA KODLARI MODÜLÜ (COMPACT & ORGANIZED TABLE)
   ========================================== */
.ariza-pills-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.ariza-pill {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ariza-pill:hover {
    border-color: var(--color-orange-primary);
    color: var(--color-orange-primary);
    background: #fff7ed;
}

.ariza-pill.active {
    background: linear-gradient(135deg, #ff6b00 0%, #ea580c 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
}

.ariza-search-wrapper {
    background: #ffffff;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid #e2e8f0;
    margin-bottom: 24px;
}

.ariza-filters {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 18px;
    margin-bottom: 16px;
}

.ariza-filter-group label, .ariza-search-group label {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    margin-bottom: 6px;
    color: #1e293b;
}

.ariza-counter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px dashed #e2e8f0;
    font-size: 0.86rem;
    color: #64748b;
    flex-wrap: wrap;
    gap: 8px;
}

.ariza-hint {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Brand Grouping List Blocks */
.ariza-brand-group-block {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-subtle);
    margin-bottom: 24px;
    overflow: hidden;
}

.ariza-brand-group-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.ariza-brand-group-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ariza-brand-count-badge {
    background: rgba(255, 107, 0, 0.2);
    color: #ff8c00;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 3px 14px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 107, 0, 0.4);
}

.ariza-list-group {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: #e2e8f0;
}

.ariza-list-card {
    background: #ffffff;
    padding: 16px 20px;
    transition: all 0.2s ease;
    display: grid;
    grid-template-columns: 2fr 3fr 160px;
    gap: 16px;
    align-items: center;
}

.ariza-list-card:hover {
    background-color: #fff7ed;
}

.ariza-card-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ariza-card-tags {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ariza-badge-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.76rem;
    padding: 2px 8px;
    border-radius: 4px;
    background: #f1f5f9;
    color: #475569;
}

.ariza-badge-code {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.88rem;
    color: #ff6b00;
    background: #fff7ed;
    border: 1px solid #ffedd5;
    padding: 2px 10px;
    border-radius: var(--radius-sm);
}

.ariza-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.98rem;
    color: #0f172a;
    margin: 0;
}

.ariza-card-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ariza-card-desc {
    font-size: 0.85rem;
    color: #475569;
    margin: 0;
}

.ariza-card-solution {
    font-size: 0.85rem;
    color: #1e293b;
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border-left: 3px solid #22c55e;
}

.ariza-card-footer {
    text-align: right;
}

.btn-whatsapp-call {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.82rem;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.25);
    transition: all 0.25s ease;
}

.btn-whatsapp-call:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
}

.ariza-table-container {
    max-height: 680px;
    overflow-y: auto;
    margin-bottom: 36px;
    padding-right: 4px;
}

@media (max-width: 992px) {
    .ariza-list-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .ariza-card-footer {
        text-align: left;
    }
}

.ariza-badge-code {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: #ff6b00;
    background: #fff7ed;
    border: 1px solid #ffedd5;
    padding: 2px 10px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.ariza-row-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #0f172a;
    font-size: 0.95rem;
}

.ariza-row-desc-short {
    font-size: 0.82rem;
    color: #64748b;
    margin-top: 2px;
}

.ariza-row-solution-text {
    font-size: 0.85rem;
    color: #334155;
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border-left: 3px solid #ff6b00;
}

.ariza-table-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #22c55e;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.82rem;
    transition: var(--transition);
}

.ariza-table-btn:hover {
    background: #16a34a;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(34, 197, 94, 0.3);
}

.ariza-warning-banner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border-radius: var(--radius-md);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.banner-icon {
    font-size: 2.4rem;
    color: var(--color-orange-primary);
}

.banner-text h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.banner-text p {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 260px;
    box-shadow: var(--shadow-subtle);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #ffffff;
    opacity: 0.9;
    transition: var(--transition);
}

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

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.gallery-overlay p {
    font-size: 0.8rem;
    color: var(--color-orange-primary);
}

/* ==========================================
   REVIEWS / TESTIMONIALS
   ========================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: #ffffff;
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid #e2e8f0;
}

.stars {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.review-text {
    font-size: 0.92rem;
    color: var(--color-text-dark);
    font-style: italic;
    margin-bottom: 18px;
    line-height: 1.6;
}

.reviewer strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
}

.reviewer span {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* ==========================================
   FAQ ACCORDION
   ========================================== */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 24px;
    background: #ffffff;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-orange-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 24px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px 24px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--color-orange-primary);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-card-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e2e8f0;
}

.contact-lead {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.c-detail-item {
    display: flex;
    gap: 16px;
}

.c-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-orange-light);
    color: var(--color-orange-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.icon-green {
    background: #dcfce7;
    color: #16a34a;
}

.phone-link, .wa-link {
    font-weight: 700;
    color: var(--color-text-dark);
}

.phone-link:hover { color: var(--color-orange-primary); }
.wa-link:hover { color: var(--color-whatsapp); }

.contact-action-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 380px;
}

.map-container {
    width: 100%;
    height: 100%;
}

/* ==========================================
   FOOTER
   ========================================== */
.main-footer {
    background: #090d16;
    color: #94a3b8;
    padding: 70px 0 0 0;
    font-size: 0.9rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.footer-about p {
    margin: 16px 0 20px 0;
    line-height: 1.6;
}

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

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer-bottom {
    background: #030712;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.82rem;
}

/* MOBILE BOTTOM FIXED BAR */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #cbd5e1;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.mobile-bar-btn {
    flex: 1;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
}

.mobile-bar-btn.call-btn {
    background: var(--color-orange-primary);
    color: #ffffff;
}

.mobile-bar-btn.wa-btn {
    background: var(--color-whatsapp);
    color: #ffffff;
}

/* ==========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================== */
@media (max-width: 1024px) {
    .hero-container, .about-grid, .eca-banner-wrapper, .campaign-grid, .contact-card-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brands-grid, .ariza-grid, .gallery-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 992px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px 20px;
        box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
        display: none;
        border-bottom: 3px solid var(--color-orange-primary);
        border-top: 1px solid rgba(226, 232, 240, 0.8);
        animation: fadeInDown 0.3s ease forwards;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .nav-link {
        width: 100%;
        padding: 10px 16px;
        font-size: 1rem;
        border-radius: var(--radius-sm);
    }
    
    .header-cta .btn-call-header {
        display: none;
    }

    .hero-title {
        font-size: 2.1rem;
    }
}
    
    .hero-features-grid, .ariza-filters {
        grid-template-columns: 1fr;
    }

    .services-grid, .brands-grid, .ariza-grid, .gallery-grid, .reviews-grid, .eca-features-grid {
        grid-template-columns: 1fr;
    }

    .campaign-wrapper {
        padding: 24px;
    }

    .mobile-bottom-bar {
        display: flex;
    }
    
    .floating-contact-buttons {
        bottom: 70px;
        right: 16px;
    }

    .experience-seal {
        right: 10px;
        bottom: 10px;
        width: 90px;
        height: 90px;
    }

    .seal-number {
        font-size: 1.6rem;
    }

    .ariza-warning-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* --- LOGO MICRO-INTERACTIONS & SURPRISES --- */
.logo {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

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

.brand-navy, .brand-orange {
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

/* Swap colors and add glow on hover */
.logo:hover .brand-navy {
    color: var(--orange);
    text-shadow: 0 0 12px rgba(234, 88, 12, 0.4);
}

.logo:hover .brand-orange {
    color: var(--navy);
    text-shadow: 0 0 12px rgba(3, 105, 161, 0.4);
}

/* Continuous breathing animation for the logo icon */
@keyframes breathingLogo {
    0% { transform: scale(1); }
    50% { transform: scale(1.04); filter: drop-shadow(0 0 4px rgba(234, 88, 12, 0.3)); }
    100% { transform: scale(1); }
}

.logo-icon-svg {
    animation: breathingLogo 4s ease-in-out infinite;
    position: relative;
}

/* Expanding aura behind the logo on hover */
.logo-icon-svg::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(234,88,12,0.2) 0%, rgba(2,132,199,0) 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    opacity: 0;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    z-index: -1;
}

.logo:hover .logo-icon-svg::after {
    width: 140%;
    height: 140%;
    opacity: 1;
}

.logo-svg {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo-svg {
    transform: rotate(10deg) scale(1.1);
}
