/*
Theme Name: Çekici Pro
Theme URI: https://demo-cekici.com
Author: Demo Yazılım
Author URI: https://demo-cekici.com
Description: Profesyonel çekici ve yol yardım firmaları için SEO odaklı, modern WordPress teması. Hızlı iletişim, form entegrasyonu ve mobil uyumlu tasarım.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cekici-pro
Tags: çekici, oto kurtarma, yol yardım, araç çekici, responsive, seo-ready

Çekici Pro WordPress Teması
© 2024 Tüm hakları saklıdır.
*/

/* ============================
   CSS DEĞİŞKENLERİ (RENK ŞEMASI)
   ============================ */
:root {
    /* Ana Renkler - Sarı & Siyah */
    --primary-color: #FFD000;
    --primary-dark: #E6BB00;
    --primary-light: #FFE44D;
    --secondary-color: #1A1A1A;
    --secondary-light: #2D2D2D;
    --secondary-dark: #000000;
    
    /* Nötr Renkler */
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #666666;
    --text-color: #333333;
    
    /* Durum Renkleri */
    --success: #28A745;
    --error: #DC3545;
    --warning: #FFC107;
    
    /* Tipografi */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    /* Boyutlar */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    
    /* Gölgeler */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);
}

/* ============================
   RESET & TEMEL STİLLER
   ============================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================
   BUTONLAR
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-phone {
    background: var(--success);
    color: var(--white);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(40, 167, 69, 0); }
}

/* ============================
   TOP BAR / ANNOUNCEMENT
   ============================ */
.top-bar {
    background: var(--secondary-color);
    padding: 10px 0;
    border-bottom: 3px solid var(--primary-color);
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar-marquee {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
}

.marquee-icon {
    color: var(--primary-color);
    font-size: 0.7rem;
    display: flex;
    gap: 2px;
}

.marquee-text {
    color: var(--white);
}

.marquee-text strong,
.marquee-text b {
    color: var(--primary-color);
}

/* ============================
   HEADER
   ============================ */
.site-header {
    position: fixed;
    top: 43px; /* Top bar yüksekliği */
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--primary-color);
    height: var(--header-height);
    transition: var(--transition);
}

.site-header.scrolled {
    top: 0;
    box-shadow: var(--shadow-lg);
    background: var(--primary-color);
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.top-bar {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

body.header-scrolled .hero-slider-section {
    margin-top: var(--header-height);
}

body.header-scrolled .hero-section {
    padding-top: var(--header-height);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-logo img {
    height: 60px;
    width: auto;
}

.site-logo .logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.site-logo .logo-text span {
    color: var(--secondary-color);
    background: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
}

/* Navigasyon */
.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: none;
    letter-spacing: 0;
    position: relative;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 4px;
    transition: var(--transition);
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active,
.main-nav > ul > li:hover > a {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.main-nav > ul > li > a i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.main-nav > ul > li:hover > a i {
    transform: rotate(180deg);
}

/* Dropdown Menü - Alt Alta */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1001;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-left-color: var(--secondary-color);
}

/* Header Telefon */
.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--white);
}

.header-phone:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.header-phone i {
    font-size: 1.2rem;
    animation: shake 1.5s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0); }
}

/* Mobil Menü Butonu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================
   HERO SLIDER BÖLÜMÜ
   ============================ */
.hero-slider-section {
    position: relative;
    margin-top: calc(var(--header-height) + 43px); /* Header + Top bar */
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-slide-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-slide-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.slider-nav:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* CTA Bar (Fiyat Teklifi Al) */
.cta-bar {
    background: var(--light-gray);
    padding: 20px 0;
    border-bottom: 3px solid var(--primary-color);
}

.cta-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-bar-text h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.cta-bar-text p {
    margin: 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.cta-bar-text strong {
    color: var(--secondary-color);
}

/* Eski Hero Stilleri (Fallback) */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    overflow: hidden;
    padding-top: calc(var(--header-height) + 43px);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--primary-color);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 208, 0, 0.15);
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.hero-title {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.hero-feature i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 1.1rem;
}

.hero-feature span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Hero Görsel */
.hero-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* ============================
   BÖLÜM BAŞLIKLARI
   ============================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 208, 0, 0.15);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title {
    color: var(--secondary-color);
}

.section-title span {
    color: var(--primary-dark);
}

.section-description {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

/* ============================
   HİZMETLER BÖLÜMÜ
   ============================ */
.services-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 208, 0, 0.3);
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link:hover {
    gap: 12px;
    color: var(--secondary-color);
}

/* ============================
   NEDEN BİZ BÖLÜMÜ
   ============================ */
.why-us-section {
    padding: 100px 0;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.05;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.why-us-item {
    text-align: center;
    padding: 30px;
}

.why-us-number {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.why-us-item h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.why-us-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* ============================
   HAKKIMIZDA BÖLÜMÜ
   ============================ */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-color);
    border-radius: 16px;
    z-index: -1;
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    padding: 25px 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-experience .number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.about-experience span {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-features-list {
    margin: 30px 0;
}

.about-features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--medium-gray);
}

.about-features-list li:last-child {
    border-bottom: none;
}

.about-features-list i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 0.8rem;
}

/* ============================
   CTA (ÇAĞRI) BÖLÜMÜ
   ============================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    text-align: center;
}

.cta-section h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--secondary-color);
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 20px 40px;
    border-radius: var(--border-radius);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition);
}

.cta-phone:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.cta-phone i {
    font-size: 1.8rem;
    animation: shake 1.5s ease-in-out infinite;
}

/* ============================
   İLETİŞİM BÖLÜMÜ
   ============================ */
.contact-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info {
    background: var(--secondary-color);
    padding: 50px;
    border-radius: 16px;
    color: var(--white);
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item h4 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-info-item a {
    color: var(--primary-color);
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.contact-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* İletişim Formu */
.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 208, 0, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

/* Form Mesajları */
.form-message {
    padding: 15px 20px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    display: none;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--error);
    color: var(--error);
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
    background: var(--secondary-color);
    color: var(--white);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-brand .logo-text {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-brand .logo-text span {
    color: var(--primary-color);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-widget h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact-item a {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ============================
   WHATSAPP BUTON
   ============================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
}

/* ============================
   SCROLL TO TOP
   ============================ */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

/* ============================
   SAYFA BANNER
   ============================ */
.page-banner {
    padding: calc(var(--header-height) + 100px) 0 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    text-align: center;
    position: relative;
    margin-top: 43px; /* Top bar */
}

body.header-scrolled .page-banner {
    margin-top: 0;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/pattern.png') repeat;
    opacity: 0.05;
}

.page-banner h1 {
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
}

.page-banner h1 span {
    color: var(--primary-color);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--primary-color);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================
   HİZMET DETAY SAYFASI
   ============================ */
.service-detail-section {
    padding: 80px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.service-detail-content img {
    border-radius: 12px;
    margin: 30px 0;
}

.service-detail-content h2 {
    margin-top: 30px;
}

.service-detail-content ul {
    margin: 20px 0;
}

.service-detail-content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
}

.service-detail-content ul li::before {
    content: '✓';
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Sidebar */
.service-sidebar .sidebar-widget {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.service-sidebar .sidebar-widget h4 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.service-list li {
    margin-bottom: 10px;
}

.service-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
}

.service-list a:hover,
.service-list a.active {
    background: var(--primary-color);
}

.quick-contact {
    background: var(--secondary-color) !important;
    color: var(--white);
    text-align: center;
}

.quick-contact h4 {
    color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.quick-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.quick-contact .phone-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* ============================
   LOADING ANIMATION
   ============================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    pointer-events: none;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 208, 0, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================
   RESPONSİVE TASARIM
   ============================ */
@media (max-width: 1024px) {
    .hero-image {
        width: 40%;
        opacity: 0.3;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    /* Top Bar Mobil */
    .top-bar {
        padding: 8px 0;
    }
    
    .top-bar-marquee {
        font-size: 0.75rem;
    }
    
    .marquee-icon {
        display: none;
    }
    
    /* Header Mobil */
    .site-header {
        top: 35px;
    }
    
    .site-header.scrolled {
        top: 0;
    }
    
    .main-nav,
    .header-phone {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobil Menü */
    .main-nav.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary-color);
        padding: 80px 20px 20px;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
        z-index: 1001;
    }
    
    .main-nav.active ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav.active > ul > li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active > ul > li > a {
        display: flex;
        justify-content: space-between;
        padding: 15px 10px;
        color: var(--secondary-color);
        background: transparent;
        border-radius: 0;
    }
    
    .main-nav.active > ul > li > a:hover {
        background: rgba(0,0,0,0.05);
    }
    
    /* Mobil Dropdown */
    .main-nav.active .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        background: rgba(0,0,0,0.05);
        border-radius: 0;
        padding: 0;
    }
    
    .main-nav.active .dropdown-open .dropdown-menu {
        display: block;
    }
    
    .main-nav.active .dropdown-menu a {
        padding: 12px 20px 12px 30px;
        border-left: none;
        font-size: 0.85rem;
    }
    
    /* Hero Slider Mobil */
    .hero-slider-section {
        margin-top: calc(var(--header-height) + 35px);
    }
    
    body.header-scrolled .hero-slider-section {
        margin-top: var(--header-height);
    }
    
    .hero-slider {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-slide-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-slide-content p {
        font-size: 0.95rem;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    /* CTA Bar Mobil */
    .cta-bar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-section {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 30px;
    }
    
    .cta-phone {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .scroll-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Page Banner Mobil */
    .page-banner {
        padding: calc(var(--header-height) + 55px) 0 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .services-section,
    .about-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .why-us-number {
        font-size: 3rem;
    }
    
    .about-experience {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
    }
}

/* ============================
   WORDPRESS UYUMLULUĞU
   ============================ */
.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.aligncenter {
    display: block;
    margin: 20px auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.9rem;
    color: var(--dark-gray);
    text-align: center;
    padding: 10px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.gallery-item {
    margin: 0;
}

.gallery-item img {
    border-radius: var(--border-radius);
}

/* Screen Reader Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:focus {
    clip: auto !important;
    display: block;
    height: auto;
    left: 5px;
    top: 5px;
    width: auto;
    z-index: 100000;
    background: var(--white);
    padding: 15px;
}

