/* =============================================================
   MANİSA TEKNİK SERVİS — ANA STİL DOSYASI
   Lacivert + Turuncu Renk Paleti | Mobil Öncelikli
   ============================================================= */

/* ───────────────────────────────────────────
   CSS DEĞİŞKENLERİ (DESIGN TOKENS)
─────────────────────────────────────────── */
:root {
    /* Renkler */
    --color-navy: #0f1e3d;
    --color-navy-light: #1a3466;
    --color-navy-mid: #162d5a;
    --color-orange: #f97316;
    --color-orange-dark: #ea6c0a;
    --color-orange-glow: rgba(249, 115, 22, 0.25);
    --color-blue: #1a56db;
    --color-blue-light: #3b82f6;
    --color-white: #ffffff;
    --color-light: #f8faff;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-600: #6b7280;
    --color-gray-800: #1f2937;
    --color-success: #10b981;

    /* Tipografi */
    --font-family: 'Nunito', system-ui, -apple-system, sans-serif;
    --font-size-base: 16px;

    /* Boşluklar */
    --section-gap: 80px;
    --section-gap-sm: 48px;

    /* Gölgeler */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, .12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, .16);
    --shadow-orange: 0 8px 32px rgba(249, 115, 22, .35);
    --shadow-navy: 0 8px 32px rgba(15, 30, 61, .4);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    /* Transition */
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ───────────────────────────────────────────
   GENEL / RESET
─────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    background-color: var(--color-light);
    color: var(--color-gray-800);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-orange);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-navy);
}

/* ───────────────────────────────────────────
   NAV BAR
─────────────────────────────────────────── */
#mainNav {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    box-shadow: var(--shadow-navy);
    padding: 10px 0;
    transition: var(--transition);
    z-index: 1000;
    position: relative;
}

/* Navbar lüks mesh ve cam yansıması */
#mainNav::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 85% 0%, rgba(249, 115, 22, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 15% 100%, rgba(59, 130, 246, 0.15) 0%, transparent 45%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

#mainNav .container {
    position: relative;
    z-index: 1;
}

#mainNav.scrolled {
    padding: 6px 0;
    background: var(--color-navy) !important;
}

/* Logo */
.brand-icon {
    width: 38px;
    height: 38px;
    background: var(--color-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-main {
    font-size: 1.1rem;
    font-weight: 900;
    color: white;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 14px;
    margin-right: 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.85) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
}

/* Navbar Arama Butonu */
.btn-call-nav {
    background: var(--color-orange);
    color: white !important;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(249, 115, 22, .35);
    white-space: nowrap;
}

.btn-call-nav:hover {
    background: var(--color-orange-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-orange);
    color: white !important;
}

/* Dropdown */
.dropdown-menu-dark {
    background: var(--color-navy-mid) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

/* ───────────────────────────────────────────
   HERO SECTION
─────────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 55%, #1e3a8a 100%);
    overflow: hidden;
    padding: 80px 0 60px;
}

/* Arka plan: Ultra Premium Desensiz Mesh Gradient & Neon Glow */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        /* Sağ alt güçlü turuncu enerji halesi (Kombi / Isı) */
        radial-gradient(ellipse 70% 60% at 88% 85%, rgba(249, 115, 22, 0.22) 0%, rgba(249, 115, 22, 0.05) 45%, transparent 70%),
        /* Sol üst derin buz mavisi / cyan ışık (Klima / Soğuk) */
        radial-gradient(ellipse 65% 55% at 12% 18%, rgba(59, 130, 246, 0.22) 0%, rgba(29, 78, 216, 0.08) 45%, transparent 65%),
        /* Orta üst pürüzsüz ambiyans aydınlatması */
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(96, 165, 250, 0.12) 0%, transparent 60%),
        /* Taban cam yüzey parlama geçişi */
        linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
}

/* Dekoratif büyük degrade halkalar */
.hero-section::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(249, 115, 22, 0.08) 0%, rgba(249, 115, 22, 0.03) 40%, transparent 70%);
    top: -200px;
    right: -180px;
    pointer-events: none;
    /* Halka efekti */
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.03),
        0 0 0 80px rgba(249, 115, 22, 0.02),
        0 0 0 160px rgba(59, 130, 246, 0.015);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.35);
    color: #fbbf24;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-orange);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 16px;
}

.hero-title span {
    color: var(--color-orange);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    margin-bottom: 32px;
    max-width: 520px;
}

/* Hero CTA Butonlar */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

@media (min-width: 480px) {
    .hero-cta-group {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.btn-call-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-orange);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 16px 28px;
    border-radius: var(--radius-xl);
    border: none;
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
    animation: heroCallPulse 3s ease-in-out infinite;
    text-decoration: none;
}

@keyframes heroCallPulse {

    0%,
    100% {
        box-shadow: 0 8px 32px rgba(249, 115, 22, .35);
    }

    50% {
        box-shadow: 0 8px 48px rgba(249, 115, 22, .6);
    }
}

.btn-call-hero:hover {
    background: var(--color-orange-dark);
    transform: translateY(-3px);
    color: white;
    animation: none;
    box-shadow: 0 12px 40px rgba(249, 115, 22, .5);
}

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

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

.btn-call-hero .call-label {
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-call-hero .call-number {
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.01em;
}

/* Hero hizmet butonları */
.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 20px;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    text-decoration: none;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.45);
    color: white;
    transform: translateY(-2px);
}

/* Hero trust stats */
.hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-orange);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

/* Hero görsel bölümü */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-navy);
    max-width: 480px;
    width: 100%;
}

.hero-img-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 30, 61, 0.85) 0%, transparent 100%);
    padding: 24px;
    color: white;
}

.hero-call-card {
    position: absolute;
    top: 20px;
    right: -20px;
    background: white;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-call-card .call-icon {
    width: 40px;
    height: 40px;
    background: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-call-card .card-text {
    line-height: 1.2;
}

.hero-call-card .card-label {
    font-size: 0.7rem;
    color: var(--color-gray-600);
    font-weight: 600;
}

.hero-call-card .card-number {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-navy);
}

.hero-badge-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--color-navy);
    color: white;
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-navy);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 4s ease-in-out infinite 2s;
}

.hero-badge-card .badge-icon {
    width: 36px;
    height: 36px;
    background: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* ───────────────────────────────────────────
   HİZMET KARTLARI
─────────────────────────────────────────── */
.section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 900;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-gray-600);
    max-width: 560px;
    margin: 0 auto 48px;
}

.section-label {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: var(--color-orange);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-orange), var(--color-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.service-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.2);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.icon-orange {
    background: rgba(249, 115, 22, 0.1);
    color: var(--color-orange);
}

.icon-blue {
    background: rgba(26, 86, 219, 0.1);
    color: var(--color-blue);
}

.icon-navy {
    background: rgba(15, 30, 61, 0.08);
    color: var(--color-navy);
}

.icon-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    flex: 1;
    margin-bottom: 20px;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-orange);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0;
    border: none;
    background: none;
    transition: var(--transition);
}

.btn-service:hover {
    gap: 10px;
    color: var(--color-orange-dark);
}

/* ───────────────────────────────────────────
   NEDEN BİZ (TRUST SİNYALLERİ)
─────────────────────────────────────────── */
.trust-section {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    padding: var(--section-gap) 0;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        /* Sol dinamik amber/turuncu parıltı */
        radial-gradient(ellipse 60% 70% at 0% 50%, rgba(249, 115, 22, 0.18) 0%, transparent 60%),
        /* Sağ derin kobalt mavisi */
        radial-gradient(ellipse 50% 60% at 100% 50%, rgba(59, 130, 246, 0.16) 0%, transparent 55%),
        /* Üst cam parlama efekti */
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, transparent 100%);
    pointer-events: none;
}

/* Sağ taraf dekoratif yay */
.trust-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.03);
    bottom: -250px;
    right: -100px;
    pointer-events: none;
    box-shadow:
        0 0 0 60px rgba(249, 115, 22, 0.015),
        0 0 0 120px rgba(59, 130, 246, 0.01);
}

.trust-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.trust-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 16px;
    transition: var(--transition);
    color: var(--color-orange);
}

.trust-item:hover .trust-icon {
    background: var(--color-orange);
    border-color: var(--color-orange);
    color: white;
    transform: scale(1.1);
}

.trust-item h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.trust-item p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ───────────────────────────────────────────
   BÖLGE KARTLARI
─────────────────────────────────────────── */
.district-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1.5px solid var(--color-gray-200);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--color-gray-800);
}

.district-card:hover {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-navy);
}

.district-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-orange);
    flex-shrink: 0;
    transition: var(--transition);
}

.district-card:hover .district-card-icon {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.district-card h5 {
    font-size: 1rem;
    font-weight: 800;
    margin: 0 0 2px;
}

.district-card p {
    font-size: 0.8rem;
    color: var(--color-gray-600);
    margin: 0;
    transition: var(--transition);
}

.district-card:hover p {
    color: rgba(255, 255, 255, 0.7);
}

.district-card:hover h5 {
    color: white;
}

/* ───────────────────────────────────────────
   BÜYÜK ARAMA CTA BÖLÜMÜ
─────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--color-orange) 0%, #dc6f0f 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.cta-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 28px;
}

.btn-call-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: white;
    color: var(--color-orange);
    font-weight: 900;
    font-size: 1.1rem;
    padding: 18px 32px;
    border-radius: var(--radius-xl);
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    text-decoration: none;
}

.btn-call-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: var(--color-orange-dark);
}

/* ───────────────────────────────────────────
   HİZMET DETAY SAYFASI — İÇ SAYFA
─────────────────────────────────────────── */
.inner-hero {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    padding: 60px 0 48px;
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        /* Sağ soft amber glow */
        radial-gradient(ellipse 55% 85% at 85% 50%, rgba(249, 115, 22, 0.16) 0%, transparent 60%),
        /* Sol mavi ambiyans */
        radial-gradient(ellipse 45% 65% at 10% 50%, rgba(59, 130, 246, 0.13) 0%, transparent 55%),
        /* Üst degrade geçiş */
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

/* Inner hero sağ dekoratif daire */
.inner-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(249, 115, 22, 0.06);
    top: -150px;
    right: -100px;
    pointer-events: none;
    box-shadow: 0 0 0 60px rgba(249, 115, 22, 0.025);
}

.inner-hero .page-title {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
}

.inner-hero .page-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 20px;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    flex-wrap: wrap;
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    transition: var(--transition);
}

.breadcrumb-custom a:hover {
    color: var(--color-orange);
}

.breadcrumb-custom .bc-sep {
    opacity: 0.4;
}

.breadcrumb-custom .bc-current {
    color: var(--color-orange);
    font-weight: 700;
}

/* İçerik bölümü */
.content-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
    margin-bottom: 24px;
}

.content-card h2 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: var(--color-navy);
}

.content-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--color-gray-100);
    font-size: 0.95rem;
    color: var(--color-gray-800);
}

.content-card ul li:last-child {
    border-bottom: none;
}

.content-card ul li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2310b981'%3E%3Cpath d='M13.78 4.22a.75.75 0 010 1.06l-7.25 7.25a.75.75 0 01-1.06 0L2.22 9.28a.75.75 0 011.06-1.06L6 10.94l6.72-6.72a.75.75 0 011.06 0z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Yan panel — sticky arama kutusu */
.sticky-call-panel {
    position: sticky;
    top: 90px;
}

.call-panel {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 28px;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-navy);
}

.call-panel-icon {
    width: 72px;
    height: 72px;
    background: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 16px;
    animation: pulse-ring 2.5s ease-in-out infinite;
}

@keyframes pulse-ring {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5);
    }

    50% {
        box-shadow: 0 0 0 16px rgba(249, 115, 22, 0);
    }
}

.call-panel h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
}

.call-panel p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.call-panel .btn-call-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--color-orange);
    color: white;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px 20px;
    border-radius: var(--radius-xl);
    border: none;
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
    text-decoration: none;
    width: 100%;
}

.call-panel .btn-call-panel:hover {
    background: var(--color-orange-dark);
    transform: translateY(-2px);
    color: white;
}

.call-panel .panel-phone {
    font-size: 1.1rem;
    font-weight: 900;
    color: white;
    margin-top: 12px;
    letter-spacing: 0.02em;
}

/* ───────────────────────────────────────────
   İLETİŞİM SAYFASI
─────────────────────────────────────────── */
.contact-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--color-light) 0%, white 100%);
}

.contact-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-gray-200);
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.contact-card-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--color-orange), #dc6f0f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 24px;
    animation: pulse-ring 2.5s ease-in-out infinite;
}

.contact-card h1 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.contact-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--color-orange);
    color: white;
    font-weight: 900;
    font-size: clamp(1.3rem, 5vw, 1.8rem);
    padding: 20px 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-orange);
    transition: var(--transition);
    margin: 24px 0;
    text-decoration: none;
    animation: heroCallPulse 3s ease-in-out infinite;
}

.contact-phone-link:hover {
    background: var(--color-orange-dark);
    transform: translateY(-3px);
    color: white;
    animation: none;
}

/* ───────────────────────────────────────────
   FOOTER
─────────────────────────────────────────── */
.site-footer {
    background: var(--color-navy);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 20px;
}

.footer-icon {
    width: 42px;
    height: 42px;
    background: var(--color-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.footer-heading {
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 0;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--color-orange);
    padding-left: 4px;
}

.btn-call-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-orange);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-call-footer:hover {
    background: var(--color-orange-dark);
    color: white;
}

.btn-call-footer-big {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-orange);
    color: white;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    border: none;
    text-decoration: none;
}

.btn-call-footer-big:hover {
    background: var(--color-orange-dark);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    margin-top: 8px;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    margin-left: 16px;
    transition: var(--transition);
}

.footer-bottom-link:hover {
    color: var(--color-orange);
}

/* ───────────────────────────────────────────
   SABİT ARAMA BUTONU (MOBİL)
─────────────────────────────────────────── */
.floating-call-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 10px 12px;
    background: linear-gradient(to top, rgba(15, 30, 61, 0.95) 0%, rgba(15, 30, 61, 0.8) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.floating-call-btn {
    display: block;
    text-decoration: none;
}

.floating-call-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-orange);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-orange);
    position: relative;
    overflow: visible;
}

.floating-call-pulse {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    animation: floating-pulse 2s ease-out infinite;
}

@keyframes floating-pulse {
    0% {
        transform: translateY(-50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translateY(-50%) scale(1.8);
        opacity: 0;
    }
}

.floating-call-icon {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.floating-call-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.floating-call-label {
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.floating-call-number {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.02em;
}

/* ───────────────────────────────────────────
   SSS ACCORDION
─────────────────────────────────────────── */
.faq-accordion .accordion-button {
    font-weight: 700;
    color: var(--color-navy);
    background: white;
    font-size: 0.95rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--color-orange);
    background: rgba(249, 115, 22, 0.04);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.faq-accordion .accordion-button::after {
    filter: hue-rotate(200deg);
}

.faq-accordion .accordion-item {
    border: 1.5px solid var(--color-gray-200);
    border-radius: var(--radius-md) !important;
    margin-bottom: 10px;
    overflow: hidden;
}

/* ───────────────────────────────────────────
   GENEL YARDIMCI SINIFLAR
─────────────────────────────────────────── */
.section-gap {
    padding: var(--section-gap) 0;
}

.section-gap-sm {
    padding: var(--section-gap-sm) 0;
}

.bg-navy {
    background: var(--color-navy);
}

.bg-light-custom {
    background: var(--color-light);
}

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

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

.divider {
    width: 48px;
    height: 4px;
    background: var(--color-orange);
    border-radius: 2px;
    margin: 0 auto 24px;
}

.divider-left {
    margin: 0 0 24px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ───────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 50px 0 50px;
        text-align: center;
    }

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

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .hero-call-card,
    .hero-badge-card {
        display: none;
    }

    .divider-left {
        margin: 0 auto 24px;
    }

    .section-gap {
        padding: 48px 0;
    }

    .trust-section {
        padding: 48px 0;
    }
}

@media (max-width: 575.98px) {
    .btn-call-hero {
        font-size: 1rem;
        padding: 14px 22px;
        width: 100%;
        justify-content: center;
    }

    .content-card {
        padding: 22px 18px;
    }

    .contact-card {
        padding: 32px 24px;
    }

    .call-panel {
        padding: 22px 18px;
    }
}