/* ==========================================================================
   PRATİK TAŞIMA - WEB TASARIM SİSTEMİ & STİLLERİ
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* Tasarım Değişkenleri (Design Tokens) */
:root {
    --primary: #E31C79;
    --primary-hover: #c21262;
    --primary-light: rgba(227, 28, 121, 0.1);
    
    --secondary: #CDF683;
    --secondary-hover: #b4df5e;
    --secondary-dark: #0f100a;
    
    --dark: #091023;
    --dark-card: #121829;
    --dark-light: #1c233a;
    
    --light: #F8F9FA;
    --light-border: #E9ECEF;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --text-white: #FFFFFF;
    
    --gradient-primary: linear-gradient(135deg, #E31C79 0%, #FF4D97 100%);
    --gradient-secondary: linear-gradient(135deg, #CDF683 0%, #AEE348 100%);
    --gradient-dark: linear-gradient(180deg, #091023 0%, #151C33 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(9, 16, 35, 0.08);
    --shadow-lg: 0 20px 40px rgba(9, 16, 35, 0.12);
    --shadow-glow: 0 0 20px rgba(227, 28, 121, 0.35);
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-pill: 9999px;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --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-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Genel Sıfırlama & Temel Stiller */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

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

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

ul {
    list-style: none;
}

input, select, textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius-sm);
    padding: 0.75rem 1rem;
    transition: var(--transition-fast);
    width: 100%;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

/* Kapsayıcı (Container) */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ==========================================================================
   BİLEŞENLER (COMPONENTS)
   ========================================================================== */

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--border-radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    gap: 0.5rem;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--secondary-dark);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(205, 246, 131, 0.3);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-white);
    transform: translateY(-3px);
}

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

.btn-whatsapp:hover {
    background-color: #20ba5a;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transform: translateY(-3px);
}

.btn-phone {
    background-color: #007AFF;
    color: white;
}

.btn-phone:hover {
    background-color: #0062cc;
    box-shadow: 0 10px 20px rgba(0, 122, 255, 0.3);
    transform: translateY(-3px);
}

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

/* Bölüm Başlıkları (Section Headers) */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 0.75rem;
    background-color: var(--primary-light);
    padding: 0.3rem 1rem;
    border-radius: var(--border-radius-pill);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

/* ==========================================================================
   SAYFA YAPISI & BÖLÜMLER (PAGE STRUCTURE & SECTIONS)
   ========================================================================== */

/* Üst Bilgi Barı (Top Bar) */
.topbar {
    background-color: var(--dark);
    color: var(--text-white);
    font-size: 0.85rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.topbar-info {
    display: flex;
    gap: 1.5rem;
}

.topbar-info span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.topbar-info i {
    color: var(--secondary);
}

.topbar-socials {
    display: flex;
    gap: 1rem;
}

.topbar-socials a:hover {
    color: var(--secondary);
}

/* Navigasyon (Header & Navbar) */
header {
    background-color: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-normal);
}

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

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

.nav-cta {
    display: flex;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--gradient-dark);
    color: var(--text-white);
    padding: 8rem 0 10rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://pratiktasima.com/wp-content/uploads/2024/08/pratiktasima-header.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.15;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--light), transparent);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(227, 28, 121, 0.2);
    border: 1px solid rgba(227, 28, 121, 0.4);
    color: #FF85B3;
    padding: 0.4rem 1rem;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--secondary);
}

.hero-title {
    color: var(--text-white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-title span {
    color: var(--secondary);
    background: linear-gradient(135deg, var(--secondary) 0%, #E31C79 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-feat-item i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Hero Görsel Alanı (Visual Focus) */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-main-img {
    width: 100%;
    max-width: 650px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transition: var(--transition-slow);
    border: 3px solid rgba(255, 255, 255, 0.12);
}

.hero-main-img:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.03);
    box-shadow: 0 25px 50px rgba(227, 28, 121, 0.25);
}

/* Güven Rozetleri (Features Section) */
.features-strip {
    margin-top: -5rem;
    position: relative;
    z-index: 10;
}

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

.feature-strip-item {
    background-color: var(--text-white);
    border-radius: var(--border-radius-md);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition-normal);
    border-bottom: 4px solid transparent;
}

.feature-strip-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--primary);
}

.feat-icon-wrap {
    background-color: var(--primary-light);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.feature-strip-item:hover .feat-icon-wrap {
    background-color: var(--primary);
    color: var(--text-white);
}

.feat-text-wrap h4 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.feat-text-wrap p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Hizmetlerimiz Section */
.services {
    padding: 7rem 0;
    background-color: var(--light);
}

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

.service-card {
    background-color: var(--text-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--light-border);
    display: flex;
    flex-direction: column;
}

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

.service-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

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

.service-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(9, 16, 35, 0.5));
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: var(--border-radius-pill);
    z-index: 10;
}

.service-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.service-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.service-link i {
    transition: var(--transition-fast);
}

.service-card:hover .service-link i {
    transform: translateX(4px);
}

/* Neden Biz Section */
.why-us {
    padding: 7rem 0;
    background-color: var(--text-white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-us-img {
    position: relative;
}

.why-us-img::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80%;
    height: 80%;
    border-radius: var(--border-radius-md);
    background-color: var(--secondary);
    z-index: 1;
}

.why-us-img img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.why-us-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-glow);
    z-index: 3;
    max-width: 200px;
    text-align: center;
}

.why-us-badge .num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    color: var(--secondary);
    margin-bottom: 0.25rem;
}

.why-us-badge .txt {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.why-us-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
}

.why-us-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.why-us-item i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.2rem;
}

.why-us-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.why-us-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Çalışmalarımız (Canlı Instagram Feed - Elfsight) Bölümü */
.instagram-section {
    padding: 7rem 0;
    background-color: var(--light);
    border-top: 1px solid var(--light-border);
    border-bottom: 1px solid var(--light-border);
}

.instagram-section .container {
    max-width: 100%;
    width: 95%;
}

.elfsight-feed-wrapper {
    margin-top: 2.5rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background-color: var(--text-white);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    border: 1px solid var(--light-border);
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.elfsight-feed-wrapper > div {
    width: 100%;
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 4rem 0;
    }
    .instagram-section .container {
        width: 100%;
        padding: 0 1rem;
    }
    .elfsight-feed-wrapper {
        padding: 0.75rem;
        margin-top: 1.5rem;
        min-height: 450px;
        border-radius: var(--border-radius-md);
    }
}


/* Statik Hizmet Bilgi Etiketi (Link olmayan kartlar için) */
.service-static-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    background-color: var(--light);
    border: 1px solid var(--light-border);
    padding: 0.4rem 0.85rem;
    border-radius: var(--border-radius-sm);
    margin-top: auto;
    align-self: flex-start;
}

/* Lightbox Modal (Görsel Ön İzleme) */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 16, 35, 0.95);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.35s ease;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.lightbox.open {
    display: flex;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2.5rem;
    color: var(--text-white);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lightbox-close:hover {
    color: var(--primary);
}

.lightbox-content {
    max-width: 90%;
    max-height: 75vh;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.35s ease;
}

.lightbox.open .lightbox-content {
    transform: scale(1);
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 500;
    text-align: center;
}

/* Instagram Mobil Uyumluluk */
@media (max-width: 992px) {
    .instagram-layout {
        grid-template-columns: 1fr;
    }
    .instagram-profile-card {
        position: relative;
        top: 0;
    }
}

@media (max-width: 576px) {
    .instagram-posts-grid {
        grid-template-columns: 1fr;
    }
}



/* İlçe Nakliyat Bölümü (SEO & AdWords) */
.districts-section {
    padding: 7rem 0;
    background-color: var(--text-white);
}

.districts-search-bar {
    max-width: 600px;
    margin: -1rem auto 3rem;
    position: relative;
    display: flex;
    align-items: center;
}

.districts-search-bar input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    font-size: 1.1rem;
    border-radius: var(--border-radius-pill);
    box-shadow: var(--shadow-md);
    border: 1px solid transparent;
    background-color: var(--light);
    transition: var(--transition-fast);
}

.districts-search-bar input:focus {
    background-color: var(--text-white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.districts-search-bar i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
}



.districts-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.district-tab-btn {
    background: none;
    border: 1px solid var(--light-border);
    padding: 0.6rem 1.5rem;
    border-radius: var(--border-radius-pill);
    font-family: var(--font-heading);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.district-tab-btn.active,
.district-tab-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.district-card {
    background-color: var(--light);
    border: 1px solid var(--light-border);
    border-radius: var(--border-radius-sm);
    padding: 1rem 1.25rem;
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.district-card:hover {
    background-color: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.district-card span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.2rem;
}

/* İlçe Detay Pop-Up / Modalı */
.district-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 16, 35, 0.75);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
    backdrop-filter: blur(5px);
}

.district-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.district-modal-content {
    background-color: var(--text-white);
    border-radius: var(--border-radius-md);
    width: 90%;
    max-width: 550px;
    padding: 2.5rem;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.district-modal.open .district-modal-content {
    transform: scale(1);
}

.district-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.district-modal-close:hover {
    color: var(--primary);
}

.district-modal-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.district-modal-title span {
    color: var(--primary);
}

.district-modal-desc {
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
}

.district-modal-highlights {
    background-color: var(--light);
    border-radius: var(--border-radius-sm);
    padding: 1.25rem;
    margin-bottom: 2rem;
}

.district-modal-highlights ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.district-modal-highlights li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.district-modal-highlights li i {
    color: var(--primary);
}

.district-modal-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Sıkça Sorulan Sorular (SSS Accordion) */
.faq-section {
    padding: 7rem 0;
    background-color: var(--light);
}

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

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

.faq-item:hover {
    border-color: rgba(227, 28, 121, 0.2);
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    cursor: pointer;
}

.faq-trigger i {
    color: var(--primary);
    transition: var(--transition-normal);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background-color: rgba(248, 249, 250, 0.5);
    border-top: 1px solid transparent;
}

.faq-content p {
    padding: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.faq-item.active {
    border-color: var(--primary-light);
}

.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
}

.faq-item.active .faq-content {
    border-top-color: var(--light-border);
}

/* Müşteri Yorumları (Testimonials) */
.testimonials {
    padding: 7rem 0;
    background-color: var(--text-white);
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
    text-align: center;
    padding: 0 3rem;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-stars {
    color: #FFC107;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem auto;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    display: block;
    transition: transform var(--transition-fast);
}

.testimonial-slide:hover .testimonial-img {
    transform: scale(1.08);
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.testimonial-author h5 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--light);
    border: 1px solid var(--light-border);
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-pill);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.carousel-nav-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

.carousel-nav-btn.prev {
    left: -1rem;
}

.carousel-nav-btn.next {
    right: -1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--border-radius-pill);
    background-color: var(--light-border);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background-color: var(--primary);
    width: 24px;
}

/* İletişim & CTA Section (AdWords Conversion Focus) */
.cta-banner {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    top: -100px;
    right: -100px;
}

.cta-banner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    bottom: -50px;
    left: -50px;
}

.cta-banner-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-banner-content {
    max-width: 650px;
}

.cta-banner-content h2 {
    color: var(--text-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cta-banner-actions .btn {
    padding: 1rem 2.25rem;
}

/* Alt Bilgi Bölümü (Footer) */
footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
}

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

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary);
}

.footer-logo img {
    height: 55px;
    width: auto;
    margin-bottom: 1.25rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-pill);
    background-color: var(--dark-light);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-social-btn:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.85rem;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.footer-contact-item span {
    display: block;
    color: var(--text-white);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

/* Mobil İletişim Kısayolları (Floating Call Buttons) */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(9, 16, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1999;
    display: none;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-sticky-bar-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0.75rem;
    gap: 0.75rem;
}

.mobile-sticky-bar .btn {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
}

/* ==========================================================================
   ANİMASYONLAR (ANIMATIONS)
   ========================================================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   RESPONSIVE TASARIM (MEDIA QUERIES)
   ========================================================================== */

/* Masaüstü Ekranlar (Maks 1200px) */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    .features-strip {
        margin-top: -3rem;
    }
}

/* Tablet Ekranlar (Maks 992px) */
@media (max-width: 992px) {
    html {
        font-size: 15px;
    }
    .hero {
        padding: 6rem 0 8rem;
    }
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-badge {
        justify-content: center;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-features {
        justify-content: center;
    }
    .hero-card {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .why-us-img {
        max-width: 500px;
        margin: 0 auto;
    }
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .districts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cta-banner-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }
    .cta-banner-content {
        max-width: 100%;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-col:first-child {
        grid-column: span 2;
    }
    .hero-main-img {
        transform: none !important;
        max-width: 100%;
        border-radius: var(--border-radius-md);
        box-shadow: var(--shadow-md);
    }
    .hero-main-img:hover {
        transform: scale(1.02) !important;
    }
}

/* Büyük Mobil Ekranlar (Maks 768px) */
@media (max-width: 768px) {
    .topbar {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 80px; /* Header yüksekliği */
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--text-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2.5rem 1.5rem;
        gap: 1.5rem;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        transition: var(--transition-normal);
        overflow-y: auto;
    }
    .nav-menu.open {
        left: 0;
    }
    .nav-link {
        font-size: 1.25rem;
        width: 100%;
    }
    .nav-cta {
        display: none; /* Mobilde hamburger menüde veya sticky bar'da olacak */
    }
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .districts-tabs {
        flex-wrap: wrap;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-col:first-child {
        grid-column: span 1;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .mobile-sticky-bar {
        display: block;
    }
    body {
        padding-bottom: 70px; /* Sticky bar için boşluk */
    }
}

/* Küçük Mobil Ekranlar (Maks 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    .districts-grid {
        grid-template-columns: 1fr;
    }
    .district-modal-content {
        padding: 1.5rem;
    }
    .district-modal-ctas {
        grid-template-columns: 1fr;
    }
    .calc-row,
    .hero-card-form .form-row {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2rem;
    }
    .carousel-nav-btn {
        display: none;
    }
    .testimonial-slide {
        padding: 0 1rem;
    }
}
