/* ==========================================================================
   RECEP HALDIZ - PROFESYONEL DİJİTAL AJANS
   Tema: Minimal, Premium, Kurumsal
   Font: Inter (Modern, Okunaklı)
   (GEMINI TARAFINDAN GÜNCELLENDİ - V.2026 PROFESYONEL)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap');

:root {
    /* --- Renk Paleti (Premium, Minimal) --- */
    --c-bg: #F7F7F5;              /* Ana zemin (açık, premium) */
    --c-surface: #FFFFFF;         /* Kartlar, içerik alanları */
    --c-dark: #0F1F1A;            /* Koyu yeşil (premium, teknoloji) */
    --c-dark-alt: #141A1F;        /* Alternatif koyu alan */
    --c-brand: #12372A;           /* Koyu yeşil (güven, kurumsal) */
    --c-accent: #D4A84F;          /* Soft amber / altın (CTA) */
    --c-text: #1F1F1F;            /* Ana metin */
    --c-text-secondary: #6B6B6B;  /* İkincil metin */
    --c-text-light: #FFFFFF;       /* Koyu zemin üzeri metin */
    --c-border: #E5E5E5;           /* Çizgiler / Ayraçlar */
    
    /* --- Gölgeler (Minimal) --- */
    --shadow-sm: 0 2px 8px rgba(15, 31, 26, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 31, 26, 0.06);
    --shadow-lg: 0 8px 24px rgba(15, 31, 26, 0.08);

    /* --- Yapı --- */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --nav-height: 80px;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --max-width: 1320px;
}

/* ==========================================================================
   RESET & TEMEL
   ========================================================================== */
*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html { 
    scroll-behavior: smooth; 
    font-size: 16px; 
}

body {
    font-family: var(--font-main);
    background-color: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--c-text);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem); 
    font-weight: 700;
}

h2 { 
    font-size: clamp(2rem, 4vw, 3rem); 
    margin-bottom: 20px; 
    font-weight: 700;
}

h3 { 
    font-size: clamp(1.5rem, 3vw, 2rem); 
    margin-bottom: 15px; 
    font-weight: 600;
}

a { 
    text-decoration: none; 
    color: var(--c-text); 
    transition: all 0.3s ease; 
}

ul { 
    list-style: none; 
}

img { 
    max-width: 100%; 
    height: auto; 
    display: block; 
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding: 0 15px;
    box-sizing: border-box;
}

/* ==========================================================================
   ANİMASYONLAR (Minimal)
   ========================================================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: var(--delay, 0s);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   BUTON SİSTEMİ
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
    border: none;
    white-space: nowrap;
    font-family: var(--font-main);
}

/* Ana Buton (Altın) */
.btn-primary {
    background: var(--c-accent);
    color: var(--c-dark);
    font-weight: 600;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* İkincil Buton */
.btn-secondary {
    background: transparent;
    border: 1px solid var(--c-brand);
    color: var(--c-brand);
}

.btn-secondary:hover {
    background: var(--c-brand);
    color: var(--c-text-light);
}

.tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--c-surface);
    color: var(--c-text-secondary);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    border: 1px solid var(--c-border);
}

.section-padding { 
    padding: 100px 0; 
}

.section-header { 
    text-align: center; 
    max-width: 700px; 
    margin: 0 auto 60px; 
}

.section-header p { 
    font-size: 1.125rem; 
    color: var(--c-text-secondary); 
    margin-top: 20px; 
    line-height: 1.7;
}

/* ==========================================================================
   NAVİGASYON (Sticky, Minimal)
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(247, 247, 245, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--c-border);
    transition: all 0.3s ease;
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 100%; 
}

.logo { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: var(--c-text); 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    font-family: var(--font-heading);
}

.logo-icon { 
    color: var(--c-brand); 
    font-size: 1.5rem;
}

.nav-links { 
    display: flex; 
    gap: 40px; 
    align-items: center;
}

.nav-links a { 
    font-weight: 500; 
    color: var(--c-text); 
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:hover { 
    color: var(--c-brand); 
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-brand);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.header-cta { 
    display: flex; 
    gap: 15px; 
    align-items: center; 
}

.mobile-toggle { 
    display: none; 
    background: none; 
    border: none; 
    font-size: 1.5rem; 
    cursor: pointer; 
    color: var(--c-text);
    padding: 10px;
    z-index: 101;
}

/* ==========================================================================
   HERO SECTION (Açık Zemin, Minimal)
   ========================================================================== */
.hero {
    min-height: 90vh;
    padding-top: 120px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--c-bg);
}

.hero-content { 
    position: relative; 
    z-index: 2; 
    max-width: 900px; 
}

.hero-content h1 { 
    margin-bottom: 30px; 
    color: var(--c-text);
}

.hero-text-rotator { 
    color: var(--c-brand); 
    display: inline-block; 
    position: relative; 
    height: 1.2em; 
}

.rotate-item { 
    display: inline-block; 
    opacity: 0; 
    transform: translateY(20px); 
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%) translateY(20px); 
    transition: 0.5s; 
    white-space: nowrap;
}

.rotate-item.active { 
    opacity: 1; 
    transform: translateX(-50%) translateY(0); 
    position: relative; 
}

.hero-content p { 
    font-size: 1.25rem; 
    color: var(--c-text-secondary); 
    margin-bottom: 40px; 
    max-width: 700px; 
    margin-left: auto; 
    margin-right: auto; 
    line-height: 1.7;
}

/* İstatistikler */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding: 40px;
    background: var(--c-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
}

.stat-item strong { 
    display: block; 
    font-size: 2.5rem; 
    font-weight: 700; 
    color: var(--c-brand); 
    line-height: 1; 
    margin-bottom: 8px; 
}

.stat-item span { 
    font-size: 0.95rem; 
    font-weight: 500; 
    color: var(--c-text-secondary); 
}

/* ==========================================================================
   REFERANSLAR / GALERİ (Marquee)
   ========================================================================== */
.marquee-section {
    padding: 60px 0;
    background: var(--c-surface);
    border-top: 1px solid var(--c-border);
    border-bottom: 1px solid var(--c-border);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
}

.brand-item {
    font-size: 1.5rem; 
    font-weight: 700; 
    color: var(--c-border);
    display: flex; 
    align-items: center; 
    gap: 10px;
    transition: 0.3s;
}

.brand-item:hover {
    color: var(--c-text-secondary);
}

.brand-item i { 
    font-size: 1.5rem; 
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   HİZMETLER (Beyaz Kartlar, Minimal)
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--c-surface);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    transition: all 0.3s ease;
    border: 1px solid var(--c-border);
    position: relative;
    display: flex; 
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--c-brand);
}

.s-icon {
    width: 60px; 
    height: 60px;
    border-radius: var(--radius-md);
    background: transparent;
    color: var(--c-brand);
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.5rem;
    transition: 0.3s;
    border: 1px solid var(--c-border);
}

.service-card:hover .s-icon {
    background: var(--c-brand);
    color: var(--c-text-light);
    border-color: var(--c-brand);
}

.service-card h3 { 
    font-size: 1.75rem; 
    margin-bottom: 15px; 
    color: var(--c-text);
}

.service-card p { 
    color: var(--c-text-secondary); 
    margin-bottom: 30px; 
    line-height: 1.7; 
    flex-grow: 1; 
}

.s-link {
    font-weight: 600; 
    color: var(--c-brand); 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    margin-top: auto;
    font-size: 0.95rem;
}

.s-link:hover { 
    color: var(--c-accent); 
    gap: 12px; 
}

.s-link i { 
    transition: 0.3s; 
}

.s-link:hover i { 
    transform: translateX(5px); 
}

/* ==========================================================================
   İLLER BÖLÜMÜ
   ========================================================================== */
.city-grid-section {
    background: var(--c-bg);
}

.location-link-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.location-link-item {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
}

.article-body .location-link-grid .location-link-item {
    width: auto;
}

/* ==========================================================================
   GALERİ (Grid, Hover Overlay)
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: 0.3s ease;
    position: relative;
    border: 1px solid var(--c-border);
}

.gallery-item::after {
    content: 'Projeyi İncele';
    position: absolute;
    bottom: 0; 
    left: 0; 
    right: 0;
    padding: 30px 20px 20px;
    background: linear-gradient(0deg, rgba(18, 55, 42, 0.9) 0%, transparent 100%);
    color: var(--c-text-light);
    font-weight: 600;
    font-size: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   İÇ SAYFA & CONTENT
   ========================================================================== */
.dynamic-header {
    padding: 80px 0 60px;
    background: var(--c-bg);
    text-align: center;
    border-bottom: 1px solid var(--c-border);
}

.dynamic-header h1 { 
    color: var(--c-text); 
    margin-bottom: 20px; 
    font-size: clamp(2rem, 5vw, 3.5rem); 
}

.breadcrumb { 
    justify-content: center; 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
    font-weight: 500; 
    font-size: 0.95rem;
}

.breadcrumb a { 
    color: var(--c-text-secondary); 
}

.breadcrumb a:hover { 
    color: var(--c-brand); 
}

.breadcrumb span { 
    color: var(--c-text-secondary); 
    opacity: 0.7; 
}

.content-wrapper { 
    display: grid; 
    grid-template-columns: 2.5fr 1fr; 
    gap: 60px; 
    padding: 60px 0; 
    align-items: flex-start; 
}

.article-body {
    background: var(--c-surface);
    padding: clamp(30px, 5vw, 60px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--c-border);
}

.article-body h2 { 
    color: var(--c-text); 
    border-left: 4px solid var(--c-brand); 
    padding-left: 20px; 
    margin-top: 40px; 
    margin-bottom: 25px;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.article-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.75rem;
    color: var(--c-text);
}

.article-body p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.05rem;
    color: var(--c-text);
}

.article-body ul, 
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 25px;
}

.article-body ul li,
.article-body ol li {
    margin-bottom: 0.75rem;
    padding-left: 10px;
    line-height: 1.7;
}

.article-body ul li {
    list-style-type: none;
    position: relative;
}

.article-body ul li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: var(--c-brand);
    font-weight: 700;
    font-size: 1rem;
}

.article-body ol li {
    list-style-type: decimal;
}

.article-body strong {
    color: var(--c-text);
    font-weight: 600;
}

.article-body hr {
    border: 0;
    border-top: 1px solid var(--c-border);
    margin: 40px 0;
}

/* Özel Süreç Listesi */
.article-body .step-list-article {
    list-style: none;
    padding-left: 0;
    counter-reset: step-counter;
}

.article-body .step-list-article li {
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.article-body .step-list-article li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background: var(--c-brand);
    color: var(--c-text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Özel SSS Akordiyon */
.article-body .accordion-article {
    border-top: 1px solid var(--c-border);
}

.article-body .faq-item-article {
    border-bottom: 1px solid var(--c-border);
}

.article-body .faq-q {
    padding: 20px 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--c-text);
    cursor: pointer;
    position: relative;
}

.article-body .faq-q::after {
    content: '+';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c-brand);
    font-size: 1.5rem;
    font-weight: 300;
    transition: 0.3s;
}

.article-body .faq-item-article.active .faq-q::after {
    content: '−';
    transform: translateY(-50%) rotate(0deg);
}

.article-body .faq-a {
    padding-bottom: 20px;
    line-height: 1.7;
    display: none;
    color: var(--c-text-secondary);
}

.article-body .faq-item-article.active .faq-a {
    display: block;
}

/* Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--c-surface);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.sidebar-card h3 {
    color: var(--c-text);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.sidebar-card p {
    color: var(--c-text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sidebar-card .f-links a {
    color: var(--c-text-secondary);
    font-weight: 500;
}

.sidebar-card .f-links a:hover {
    color: var(--c-brand);
    padding-left: 10px;
}

.sidebar-card .f-links li {
    margin-bottom: 15px;
}

.form-input {
    width: 100%; 
    padding: 14px 18px;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    font-family: inherit; 
    font-size: 1rem; 
    font-weight: 400;
    transition: 0.3s;
    color: var(--c-text);
    margin-bottom: 15px;
}

.form-input:focus { 
    background: var(--c-surface); 
    border-color: var(--c-brand); 
    outline: none; 
    box-shadow: 0 0 0 3px rgba(18, 55, 42, 0.1);
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* ==========================================================================
   FOOTER (Minimal)
   ========================================================================== */
.footer {
    background: var(--c-surface);
    padding: 80px 0 40px;
    border-top: 1px solid var(--c-border);
    margin-top: 100px;
}

.page-inner .footer {
    margin-top: 60px;
}

.footer-grid { 
    display: grid; 
    grid-template-columns: 2fr 1fr 1fr 1.5fr; 
    gap: 60px; 
}

.f-title { 
    color: var(--c-text); 
    font-size: 1.25rem; 
    margin-bottom: 25px; 
    font-weight: 700; 
    font-family: var(--font-heading);
}

.f-links li { 
    margin-bottom: 12px; 
}

.f-links a { 
    color: var(--c-text-secondary); 
    font-weight: 400; 
    font-size: 0.95rem;
}

.f-links a:hover { 
    color: var(--c-brand); 
    padding-left: 5px; 
}

.contact-links li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--c-text-secondary);
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-links li i {
    color: var(--c-brand);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.contact-links a {
    color: var(--c-text-secondary);
}

.contact-links a:hover {
    color: var(--c-brand);
}

.social-icons a {
    width: 45px; 
    height: 45px; 
    background: var(--c-bg);
    display: inline-flex; 
    align-items: center; 
    justify-content: center;
    border-radius: var(--radius-md); 
    margin-right: 10px; 
    color: var(--c-text);
    border: 1px solid var(--c-border);
    transition: 0.3s;
    font-size: 1rem;
}

.social-icons a:hover { 
    background: var(--c-brand); 
    color: var(--c-text-light); 
    border-color: var(--c-brand);
    transform: translateY(-3px); 
}

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 31, 26, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-box {
    background: var(--c-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: clamp(30px, 5vw, 50px);
    max-width: 600px;
    width: 100%;
    position: relative;
    text-align: center;
    border: 1px solid var(--c-border);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--c-bg);
    border: 1px solid var(--c-border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.25rem;
    color: var(--c-text-secondary);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background: var(--c-brand);
    color: var(--c-text-light);
    border-color: var(--c-brand);
}

.modal-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(18, 55, 42, 0.1);
    color: var(--c-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.modal-box h2 {
    margin-bottom: 15px;
    color: var(--c-text);
}

.modal-box p {
    margin-bottom: 30px;
    font-size: 1.05rem;
    color: var(--c-text-secondary);
}

.modal-form {
    text-align: left;
}

/* ==========================================================================
   KOYU ALANLAR (Drone / Video / Hero Alt)
   ========================================================================== */
.dark-section {
    background: var(--c-dark);
    color: var(--c-text-light);
    padding: 100px 0;
}

.dark-section h2,
.dark-section h3 {
    color: var(--c-text-light);
}

.dark-section p {
    color: rgba(255, 255, 255, 0.8);
}

.dark-section .btn-primary {
    background: var(--c-accent);
    color: var(--c-dark);
}

.dark-section .btn-secondary {
    border-color: var(--c-accent);
    color: var(--c-accent);
}

.dark-section .btn-secondary:hover {
    background: var(--c-accent);
    color: var(--c-dark);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-links { 
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        right: 20px;
        width: 280px;
        max-width: calc(100% - 40px);
        background: var(--c-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        padding: 20px;
        gap: 10px;
        border: 1px solid var(--c-border);
        z-index: 100;
    }
    
    .nav-links.nav-links-active {
        display: flex;
    }
    
    .nav-links a {
        padding: 12px;
        border-radius: var(--radius-md);
        font-size: 0.9rem;
    }
    
    .nav-links a:hover {
        background: var(--c-bg);
    }
    
    .mobile-toggle { 
        display: block;
    }

    .hero-stats { 
        flex-wrap: wrap; 
        gap: 25px; 
        padding: 30px 20px; 
        margin-top: 50px; 
    }
    
    .content-wrapper { 
        grid-template-columns: 1fr; 
        gap: 40px;
        padding: 40px 20px;
    }
    
    .sticky-sidebar {
        position: relative;
        top: 0;
    }
    
    .footer-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 40px;
    }
    
    .services-grid {
        gap: 25px;
    }
    
    .service-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }
    
    .section-padding { 
        padding: 60px 0; 
    }
    
    .footer { 
        padding-top: 60px; 
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .main-header { 
        padding: 0; 
    }
    
    .nav-container {
        padding: 0 20px;
    }

    .hero { 
        min-height: auto; 
        padding-top: 100px; 
        padding-bottom: 60px; 
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
        line-height: 1.2;
    }
    
    .hero-content p { 
        font-size: 1rem; 
        padding: 0 10px;
    }
    
    .hero-stats { 
        gap: 15px; 
        padding: 20px 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .stat-item strong { 
        font-size: 1.75rem; 
    }
    
    .stat-item span {
        font-size: 0.875rem;
    }

    .btn { 
        padding: 12px 20px; 
        font-size: 0.9rem; 
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .hero-content .btn { 
        width: 100%; 
        margin-bottom: 10px;
        max-width: 100%;
    }
    
    .services-grid { 
        grid-template-columns: 1fr; 
        gap: 20px;
    }
    
    .service-card { 
        padding: 30px 20px; 
        margin: 0;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .marquee-section {
        padding: 40px 0;
    }
    
    .marquee-track { 
        gap: 40px; 
    }
    
    .brand-item { 
        font-size: 1rem; 
    }
    
    .brand-item i { 
        font-size: 1.1rem; 
    }
    
    .location-link-grid {
        gap: 10px;
        padding: 0 10px;
    }
    
    .location-link-item {
        padding: 8px 16px;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    
    .article-body { 
        padding: 25px 15px; 
        margin: 0 10px;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
        padding-left: 15px;
    }
    
    .article-body h3 {
        font-size: 1.25rem;
    }
    
    .article-body p {
        font-size: 1rem;
    }
    
    .article-body .step-list-article li {
        padding-left: 40px;
        font-size: 0.95rem;
    }
    
    .content-wrapper { 
        padding: 30px 0; 
        gap: 30px;
    }
    
    .sidebar-card {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .sidebar-card h3 {
        font-size: 1.25rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    
    .gallery-item {
        margin: 0;
    }
    
    .section-header {
        padding: 0 10px;
    }
    
    .section-header h2 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .dynamic-header {
        padding: 60px 20px 40px;
    }
    
    .dynamic-header h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        padding: 0 10px;
    }
    
    .breadcrumb {
        font-size: 0.875rem;
        padding: 0 10px;
    }
    
    .dark-section {
        padding: 60px 0;
    }
    
    .modal-box {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .form-input {
        font-size: 16px; /* iOS zoom önleme */
    }
    
    /* WhatsApp ve Call butonları mobilde daha küçük */
    .whatsapp-float-btn,
    .call-float-btn1 {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .call-float-btn1 {
        bottom: 80px;
    }
}

/* Çok küçük ekranlar için ek düzenlemeler */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        padding: 15px 10px;
        gap: 15px;
    }
    
    .stat-item strong {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
    }
    
    .article-body {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .article-body h2 {
        font-size: 1.25rem;
        padding-left: 10px;
    }
    
    .sidebar-card {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .section-header {
        padding: 0 5px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 0.875rem;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .nav-links {
        right: 15px;
        width: calc(100% - 30px);
        max-width: calc(100% - 30px);
    }
    
    .footer {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .dynamic-header {
        padding: 50px 15px 30px;
    }
    
    .modal-box {
        margin: 15px;
        padding: 25px 15px;
    }
}
