/* 
   Bursa TV Tamiri - Global Tasarım Sistemi & Stil Dosyası
   Tasarım: Bursaspor İlhamlı Yeşil-Beyaz Koyu Tema
*/

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

/* --- DEĞİŞKENLER (CSS VARIABLES) --- */
:root {
    --bg-dark: #f4f9f6;          /* Light grey-green background */
    --bg-deep: #e8f2ec;          /* Slightly darker grey-green background */
    --bg-card: rgba(255, 255, 255, 0.85); /* White card with light-green border and shadow */
    --bg-card-hover: rgba(255, 255, 255, 0.98);
    
    --bg-header: rgba(244, 249, 246, 0.85);
    --bg-dropdown: rgba(255, 255, 255, 0.96);
    --bg-input: rgba(255, 255, 255, 0.9);
    --bg-detail-hero: linear-gradient(to bottom, rgba(0, 104, 56, 0.08), var(--bg-dark));
    --bg-btn-secondary: rgba(0, 104, 56, 0.05);
    
    --primary: #00a651;          /* Green remains green! */
    --primary-hover: #008c44;
    --primary-glow: rgba(0, 166, 81, 0.15);
    
    --secondary: #006838;        /* Dark green remains dark green! */
    --secondary-hover: #005530;
    --secondary-glow: rgba(0, 104, 56, 0.15);
    
    --success: #10b981;
    --success-hover: #059669;
    --success-glow: rgba(16, 185, 129, 0.15);
    
    --text-white: #ffffff;       /* Always white for buttons/dark containers */
    --text-title: #0c1f13;       /* Very dark green-black for main headings */
    --text-main: #2d3b32;        /* Charcoal dark green-grey for body text */
    --text-muted: #5f7366;       /* Muted green-grey for descriptions */
    --text-dark: #203326;
    
    --border: rgba(0, 104, 56, 0.1); /* Light green-grey border */
    --border-hover: rgba(0, 166, 81, 0.4);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 10px rgba(0, 40, 20, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 40, 20, 0.08);
    --shadow-glow: 0 0 20px rgba(0, 166, 81, 0.1);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body.dark-theme {
    --bg-dark: #0a0f0c;
    --bg-deep: #0d1410;
    --bg-card: rgba(12, 28, 18, 0.7);
    --bg-card-hover: rgba(18, 42, 28, 0.85);
    
    --bg-header: rgba(10, 15, 12, 0.85);
    --bg-dropdown: rgba(10, 15, 12, 0.96);
    --bg-input: rgba(10, 15, 12, 0.5);
    --bg-detail-hero: linear-gradient(to bottom, rgba(13, 20, 16, 0.6), var(--bg-dark));
    --bg-btn-secondary: rgba(255, 255, 255, 0.05);
    
    --primary: #00a651;
    --primary-hover: #008c44;
    --primary-glow: rgba(0, 166, 81, 0.25);
    
    --secondary: #006838;
    --secondary-hover: #005530;
    --secondary-glow: rgba(0, 104, 56, 0.25);
    
    --success: #34d399;
    --success-hover: #10b981;
    --success-glow: rgba(52, 211, 153, 0.25);
    
    --text-title: #ffffff;
    --text-main: #f0f4f1;
    --text-muted: #9caa9f;
    --text-dark: #4b5e50;
    
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 166, 81, 0.35);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px var(--primary-glow);
}

/* --- SIFIRLAMA & TEMEL YAPI --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-title);
    font-weight: 700;
}

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

button, input, textarea, select {
    font-family: inherit;
}

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

/* --- YARDIMCI SINIFLAR & GRADYANLAR --- */
.text-gradient {
    background: linear-gradient(135deg, var(--text-title) 30%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-green {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-free {
    background: rgba(0, 166, 81, 0.12);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.badge-info {
    background: rgba(0, 166, 81, 0.12);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* --- BUTONLAR --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(0, 166, 81, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 166, 81, 0.4);
}

.btn-secondary {
    background: var(--bg-btn-secondary);
    border: 1px solid var(--border);
    color: var(--text-title);
}

.btn-secondary:hover {
    background: rgba(0, 166, 81, 0.08);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* --- ÜST BİLGİ BANDI (TOP BAR) --- */
.topbar {
    background-color: var(--secondary);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    padding: 8px 0;
    color: rgba(255,255,255,0.85);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.topbar-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-item svg {
    color: var(--success);
    width: 14px;
    height: 14px;
}

.topbar-item a {
    color: rgba(255,255,255,0.85);
}

.topbar-item a:hover {
    color: var(--text-white);
}

/* --- ESNEMEZ NAVİGASYON (HEADER) --- */
.header {
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--primary);
}

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

.nav-links > li {
    position: relative;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

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

.nav-links > li > a:hover::after, .nav-links > li > a.active::after {
    width: 100%;
}

/* --- DROPDOWN MEGA MENÜ (HİZMETLER) --- */
.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-dropdown-trigger svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 280px;
    background: var(--bg-dropdown);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.25s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    z-index: 1001;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--bg-dropdown);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
    rotate: 45deg;
    border-radius: 2px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Hover boşluğunu kapatmak için görünmez köprü */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: rgba(0, 166, 81, 0.1);
    color: var(--primary);
    padding-left: 18px;
}

.dropdown-menu a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    transition: var(--transition);
    flex-shrink: 0;
}

.dropdown-menu a:hover::before {
    opacity: 1;
}

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

/* MOBİL MENÜ TETİKLEYİCİ */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-title);
}

.menu-toggle svg {
    width: 28px;
    height: 28px;
}

/* --- HERO (KAHRAMAN) ALANI --- */
.hero {
    position: relative;
    padding: 120px 0 80px 0;
    background: radial-gradient(circle at 10% 20%, rgba(0, 104, 56, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(0, 166, 81, 0.08) 0%, transparent 40%);
    overflow: hidden;
}

.hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-subtitle {
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 550px;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 10px 0;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-feature-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    box-shadow: 0 20px 40px rgba(0, 166, 81, 0.15);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px dashed rgba(0, 166, 81, 0.3);
    border-radius: 26px;
    pointer-events: none;
    animation: rotate 60s linear infinite;
}

.hero-img {
    border-radius: 14px;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- DEĞER ÖNERİLERİ (BENEFITS) --- */
.section {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--bg-deep);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
}

.section-desc {
    color: var(--text-muted);
}

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

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    background-color: var(--bg-card-hover);
    box-shadow: var(--shadow-glow);
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 166, 81, 0.1);
    border: 1px solid rgba(0, 166, 81, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--primary);
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-white);
    border-color: transparent;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
}

.benefit-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- HİZMETLER GRID BÖLÜMÜ --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    background-color: var(--bg-card-hover);
    box-shadow: var(--shadow-glow);
}

.service-img-container {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

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

.service-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(10, 15, 12, 0.85);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 10px;
}

.service-body h3 {
    font-size: 1.15rem;
    line-height: 1.4;
}

.service-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-grow: 1;
}

.service-footer {
    padding: 0 20px 20px 20px;
}

.service-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
}

.service-card:hover .service-link {
    text-decoration: underline;
}

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

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

/* --- DESTEKLENEN MARKALAR (MARQUEE) --- */
.brands-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background-color: var(--bg-deep);
    overflow: hidden;
}

.brands-marquee {
    position: relative;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 30px;
}

.brands-track {
    display: flex;
    gap: 50px;
    animation: scroll 30s linear infinite;
    min-width: 100%;
    align-items: center;
}

.brand-item {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-muted);
    white-space: nowrap;
    opacity: 0.5;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-item::before {
    content: "●";
    color: var(--primary);
    font-size: 0.8rem;
    margin-right: 15px;
    opacity: 0.7;
}

.brand-item:hover {
    color: var(--primary);
    opacity: 1;
    cursor: default;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- İLÇELER HİZMET ALANI (MODERN GRID) --- */
.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
}

.district-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 16px 12px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.district-card:hover {
    border-color: var(--primary);
    background: rgba(0, 166, 81, 0.08);
    color: var(--primary);
    transform: translateY(-2px);
}

.district-card svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

/* --- SIKÇA SORULAN SORULAR (FAQ) - DÜZELTİLMİŞ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: none;
    border: none;
    text-align: left;
    color: var(--text-title);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.faq-question svg {
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.open {
    border-color: var(--border-hover);
    box-shadow: 0 4px 20px rgba(0, 166, 81, 0.08);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
    /* JS sets max-height dynamically */
}

.faq-answer-inner {
    padding: 0 25px 22px 25px;
    line-height: 1.7;
}

/* --- HIZLI İLETİŞİM FORMU VE HARİTA --- */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(0, 166, 81, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-detail-icon svg {
    width: 20px;
    height: 20px;
}

.contact-detail-content h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-detail-content p, .contact-detail-content a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.contact-detail-content a:hover {
    color: var(--primary);
}

.map-wrapper {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 10px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-panel {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.contact-form-panel::after {
    content: '';
    position: absolute;
    top: -1px;
    right: 40px;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.contact-form-panel h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.contact-form-panel p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    background-color: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-main);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 166, 81, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-success-message {
    display: none;
    background: rgba(0, 166, 81, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- ALT BİLGİ (FOOTER) --- */
.footer {
    background-color: var(--bg-deep);
    border-top: 1px solid var(--border);
    padding: 70px 0 30px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

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

.footer-col p {
    max-width: 320px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}

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

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
}

/* --- WHATSAPP BUTONU --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--text-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 0.4; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* --- DETAY SAYFALARI (SERVICE DETAIL PAGE STYLE) --- */
.detail-hero {
    position: relative;
    padding: 80px 0 50px 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg-detail-hero);
}

.detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-rich-text {
    font-size: 1.05rem;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-rich-text h2 {
    font-size: 1.75rem;
    margin-top: 15px;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}

.detail-rich-text ul {
    list-style-type: none;
    padding-left: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-rich-text ul li {
    position: relative;
    padding-left: 25px;
}

.detail-rich-text ul li::before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.detail-image-box {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 110px;
    height: fit-content;
}

.sidebar-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.sidebar-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    font-size: 0.9rem;
    font-weight: 500;
}

.sidebar-links a:hover, .sidebar-links a.active {
    background: rgba(0, 166, 81, 0.08);
    border-color: var(--primary);
    color: var(--primary);
    padding-left: 18px;
}

.sidebar-links svg {
    width: 14px;
    height: 14px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(0, 104, 56, 0.15) 0%, rgba(0, 166, 81, 0.15) 100%);
    border: 1px solid rgba(0, 166, 81, 0.25);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-box h4 {
    font-size: 1.25rem;
}

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

/* --- SCROLL ANIMASYONLARI (INTERSECTION OBSERVER) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- MOBİL MENÜ MODALI --- */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: var(--text-title);
    cursor: pointer;
}

.mobile-nav-close svg {
    width: 32px;
    height: 32px;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

.mobile-nav-links a:hover, .mobile-nav-links a.active {
    color: var(--primary);
}

.mobile-nav-links .mobile-submenu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 5px;
}

.mobile-nav-links .mobile-submenu a {
    font-size: 1.1rem;
    font-weight: 500;
}

/* --- RESPONSIVE TASARIM (MEDIA QUERIES) --- */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .topbar {
        display: none;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-desc {
        margin: 0 auto;
    }
    
    .hero-features {
        max-width: 500px;
        margin: 10px auto;
    }
    
    .hero-btns {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-section-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-col p {
        max-width: 100%;
    }
    
    .detail-layout {
        grid-template-columns: 1fr;
    }
    
    .detail-sidebar {
        position: static;
    }
    
    .nav-links, .nav-cta .btn-secondary {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }

    .dropdown-menu {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form-panel {
        padding: 25px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- TEMA DEGISTIRICI (THEME TOGGLER) --- */
.theme-toggle {
    background: rgba(0, 104, 56, 0.05);
    border: 1px solid var(--border);
    color: var(--text-title);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: rgba(0, 166, 81, 0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
}

/* By default, hide the sun icon and show the moon icon (Light Mode) */
.theme-toggle .sun-icon {
    display: none;
}
.theme-toggle .moon-icon {
    display: block;
}

/* When dark theme is active, show the sun icon and hide the moon icon */
body.dark-theme .theme-toggle .sun-icon {
    display: block;
}
body.dark-theme .theme-toggle .moon-icon {
    display: none;
}

/* --- MÜŞTERİ YORUMLARI (TESTIMONIALS) ALANI --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    background-color: var(--bg-card-hover);
    box-shadow: var(--shadow-glow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.testimonial-info h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-title);
}

.testimonial-info .testimonial-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
    color: #ffb400; /* Google style gold */
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.testimonial-content {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
}

/* Değerlendirme Özet Kartı */
.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.rating-summary:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.rating-score {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-title);
    line-height: 1;
    margin-bottom: 10px;
}

.rating-stars-large {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
    color: #ffb400;
}

.rating-stars-large svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.rating-text {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.rating-google-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}

.rating-google-logo span:nth-child(1) { color: #4285F4; }
.rating-google-logo span:nth-child(2) { color: #EA4335; }
.rating-google-logo span:nth-child(3) { color: #FBBC05; }
.rating-google-logo span:nth-child(4) { color: #4285F4; }
.rating-google-logo span:nth-child(5) { color: #34A853; }
.rating-google-logo span:nth-child(6) { color: #EA4335; }

.testimonial-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

