/* ============================================================================
   İSTANBUL HAMAL HİZMETİ - MERKEZİ STİL DOSYASI (style.css)
   ============================================================================
   Renk Paleti:
   - Lacivert (Primary/Navy) : #0B1B3D (Koyu), #142850 (Ana)
   - Turuncu (Accent/Orange) : #FF6B00 (Ana), #FF8533 (Hover), #E65F00 (Dark)
   - Beyaz & Nötrler        : #FFFFFF, #F8FAFC, #F1F5F9, #E2E8F0, #64748B, #0F172A
   - WhatsApp Yeşil         : #25D366, #20BA5A
   ============================================================================ */

/* ----------------------------------------------------------------------------
   1. CSS DEĞİŞKENLERİ (DESIGN TOKENS)
   ---------------------------------------------------------------------------- */
:root {
    /* Renkler */
    --color-primary: #0B1B3D;
    --color-primary-light: #162B56;
    --color-primary-dark: #061026;
    --color-accent: #FF6B00;
    --color-accent-hover: #FF8533;
    --color-accent-active: #E65F00;
    
    --color-whatsapp: #25D366;
    --color-whatsapp-hover: #20BA5A;
    --color-call: #FF6B00;

    --color-text-main: #0F172A;
    --color-text-muted: #64748B;
    --color-text-light: #94A3B8;
    --color-white: #FFFFFF;
    
    --color-bg-light: #F8FAFC;
    --color-bg-alt: #F1F5F9;
    --color-border: #E2E8F0;
    --color-border-hover: #CBD5E1;

    /* Tipografi */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Yuvarlatma (Yuvarlak Kartlar) */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Gölgeler */
    --shadow-sm: 0 2px 4px rgba(11, 27, 61, 0.04);
    --shadow-md: 0 6px 18px rgba(11, 27, 61, 0.08);
    --shadow-lg: 0 12px 32px rgba(11, 27, 61, 0.12);
    --shadow-xl: 0 20px 48px rgba(11, 27, 61, 0.16);
    --shadow-accent: 0 8px 24px rgba(255, 107, 0, 0.35);
    --shadow-wa: 0 8px 24px rgba(37, 211, 102, 0.35);

    /* Geçişler (Transitions) */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ----------------------------------------------------------------------------
   2. GENEL RESET VE TEMEL STİLLER
   ---------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-main);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

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

ul, ol {
    list-style: none;
}

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

/* Erişilebilirlik - İçeriğe Geç Linki */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    z-index: 9999;
    font-weight: 600;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 1rem;
}

/* Konteyner & Bölüm Boşlukları */
.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-title-wrap {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
    background: rgba(255, 107, 0, 0.08);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
}

.section-title {
    font-size: 2.25rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

/* ----------------------------------------------------------------------------
   3. BUTONLAR & BADGE'LER
   ---------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transition: all var(--transition-normal);
    user-select: none;
    box-shadow: var(--shadow-sm);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary, .btn-call {
    background-color: var(--color-accent);
    color: var(--color-white);
    box-shadow: var(--shadow-accent);
}
.btn-primary:hover, .btn-call:hover {
    background-color: var(--color-accent-hover);
    color: var(--color-white);
    box-shadow: 0 12px 28px rgba(255, 107, 0, 0.45);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-white);
    box-shadow: var(--shadow-wa);
}
.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
    color: var(--color-white);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
}
.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-outline-light {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    backdrop-filter: blur(10px);
}
.btn-outline-light:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

/* ----------------------------------------------------------------------------
   4. ÜST BAR & NAVBAR
   ---------------------------------------------------------------------------- */
.top-bar {
    background-color: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.top-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.top-info-item i {
    color: var(--color-accent);
}

.top-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-weight: 500;
}
.top-link:hover {
    color: var(--color-accent);
}

.top-link-wa i {
    color: var(--color-whatsapp);
}

/* Navbar Container */
.site-navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.site-navbar.is-scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.25rem 0;
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-logo-img {
    height: 48px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.footer-logo-img {
    height: 44px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    background: var(--color-white);
    padding: 4px 8px;
    border-radius: var(--radius-sm);
}

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

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

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-primary);
    padding: 0.5rem 0;
    position: relative;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: var(--radius-full);
    transition: width var(--transition-normal);
}

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

.navbar-link.is-active {
    color: var(--color-accent);
}

/* Dropdown */
.navbar-item--dropdown {
    position: relative;
}

.dropdown-caret {
    font-size: 0.75rem;
    margin-left: 0.35rem;
    transition: transform var(--transition-fast);
}

.navbar-item--dropdown:hover .dropdown-caret {
    transform: rotate(180deg);
}

.navbar-dropdown {
    position: absolute;
    top: 100%;
    left: -1rem;
    width: 260px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-normal);
    z-index: 100;
}

.navbar-item--dropdown:hover .navbar-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-main);
}

.navbar-dropdown a i {
    color: var(--color-accent);
    width: 18px;
    text-align: center;
}

.navbar-dropdown a:hover {
    background-color: var(--color-bg-light);
    color: var(--color-accent);
}

/* Desktop CTA */
.navbar-cta-desktop {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.navbar-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.phone-icon-box {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 107, 0, 0.1);
    color: var(--color-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-info small {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1;
}

.phone-info strong {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 700;
}

.navbar-toggle, .navbar-cta-mobile, .navbar-overlay {
    display: none;
}

/* ----------------------------------------------------------------------------
   5. HERO BÖLÜMÜ (HERO SECTION)
   ---------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, var(--color-primary-light) 100%);
    color: var(--color-white);
    padding: 5rem 0 6rem;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.15) 0%, transparent 40%),
                      radial-gradient(circle at 10% 80%, rgba(37, 211, 102, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.25rem;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-title span {
    color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.25rem;
    line-height: 1.6;
}

.hero-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-feature-item i {
    color: var(--color-accent);
}

/* Hero Kart / İstatistik Kutusu */
.hero-card-box {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
}

.hero-card-title {
    color: var(--color-white);
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.stat-box {
    background: rgba(11, 27, 61, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
    transition: transform var(--transition-normal);
}

.stat-box:hover {
    transform: translateY(-4px);
    border-color: var(--color-accent);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ----------------------------------------------------------------------------
   6. HİZMETLER BÖLÜMÜ (SERVICES SECTION - 12 KART)
   ---------------------------------------------------------------------------- */
.services-section {
    background-color: var(--color-bg-light);
}

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

.service-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 107, 0, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-box {
    width: 64px;
    height: 64px;
    background: rgba(255, 107, 0, 0.08);
    color: var(--color-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon-box {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: scale(1.08);
    box-shadow: var(--shadow-accent);
}

.service-card-title {
    font-size: 1.35rem;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.service-card-desc {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    flex-grow: 1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--color-primary);
    margin-top: auto;
}

.service-card-action i {
    transition: transform var(--transition-fast);
}

.service-card:hover .service-card-action {
    color: var(--color-accent);
}

.service-card:hover .service-card-action i {
    transform: translateX(5px);
}

/* ----------------------------------------------------------------------------
   7. NEDEN BİZ (WHY US SECTION)
   ---------------------------------------------------------------------------- */
.why-us-section {
    background-color: var(--color-white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.why-card {
    background-color: var(--color-bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-6px);
    background-color: var(--color-white);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.why-icon-box {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 20px rgba(11, 27, 61, 0.15);
}

.why-card:hover .why-icon-box {
    background: var(--color-accent);
    box-shadow: var(--shadow-accent);
}

.why-title {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.why-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* ----------------------------------------------------------------------------
   8. ÇALIŞMA SÜRECİ (WORK PROCESS SECTION)
   ---------------------------------------------------------------------------- */
.process-section {
    background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg-light) 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-card {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: transform var(--transition-normal);
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.process-step-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-accent);
}

.process-icon {
    font-size: 2.25rem;
    color: var(--color-primary);
    margin: 1rem 0 1rem;
}

.process-title {
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.process-desc {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ----------------------------------------------------------------------------
   9. HİZMET BÖLGELERİ (SERVICE AREAS)
   ---------------------------------------------------------------------------- */
.areas-section {
    background-color: var(--color-white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
}

.area-card {
    background-color: var(--color-bg-light);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--color-border);
    font-weight: 600;
    color: var(--color-primary);
    transition: all var(--transition-fast);
}

.area-card i {
    color: var(--color-accent);
}

.area-card:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

/* ----------------------------------------------------------------------------
   10. SIK SORULAN SORULAR (FAQ ACCORDION)
   ---------------------------------------------------------------------------- */
.faq-section {
    background-color: var(--color-bg-light);
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.faq-item.is-open {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.35rem 1.75rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background-color: var(--color-bg-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 0.875rem;
    transition: transform var(--transition-normal);
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
    background-color: var(--color-accent);
    color: var(--color-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
    padding: 0 1.75rem 1.5rem;
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

/* ----------------------------------------------------------------------------
   11. İLETİŞİM VE HARİTA (CONTACT SECTION)
   ---------------------------------------------------------------------------- */
.contact-section {
    background-color: var(--color-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.contact-card-box {
    background-color: var(--color-bg-light);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact-icon-box {
    width: 52px;
    height: 52px;
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-accent);
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.contact-details p, .contact-details a {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.contact-details a:hover {
    color: var(--color-accent);
}

.contact-map-box {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    min-height: 420px;
}

.contact-map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

/* ----------------------------------------------------------------------------
   12. PRE-FOOTER CTA & FOOTER
   ---------------------------------------------------------------------------- */
.pre-footer-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-white);
    padding: 4.5rem 0;
}

.pre-footer-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cta-badge {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.25rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.pre-footer-cta-text h2 {
    color: var(--color-white);
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.pre-footer-cta-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin: 0;
}

.pre-footer-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Main Footer */
.site-footer {
    background-color: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 4.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
}

.footer-col h3 {
    color: var(--color-white);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: var(--radius-full);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col a:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    font-size: 0.875rem;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

/* ----------------------------------------------------------------------------
   13. FLOATING BUTTONLAR (SAĞ ALT WHATSAPP & ARA) & MOBİL STICKY BAR
   ---------------------------------------------------------------------------- */
.floating-cta-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.floating-btn {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    color: var(--color-white);
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: transform var(--transition-bounce), box-shadow var(--transition-fast);
}

.floating-btn:hover {
    transform: scale(1.12);
}

.floating-whatsapp {
    background-color: var(--color-whatsapp);
    box-shadow: var(--shadow-wa);
}

.floating-phone {
    background-color: var(--color-accent);
    box-shadow: var(--shadow-accent);
}

.floating-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius-md);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
    right: 68px;
}

/* Mobil Sticky Bar (Varsayılan Masaüstünde Gizli) */
.mobile-sticky-bar {
    display: none;
}

/* Yukarı Çık Butonu */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 46px;
    height: 46px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 999;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
}
