/* --- 1. Temel Sıfırlama ve Değişkenler (Reset & Variables) --- */
:root {
    --primary-color: #800020;    /* Kurumsal Bordo */
    --secondary-color: #1a1a1a;  /* Premium Siyah/Koyu Gri */
    --light-grey: #f5f5f5;       /* Açık Gri Arka Plan */
    --text-grey: #666666;        /* Okunabilir Gri Yazı */
    --white: #ffffff;
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. Header & Navbar Yapısı --- */
.main-header {
    background-color: var(--secondary-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid var(--primary-color);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo Stilleri */
.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: var(--transition);
}

.logo-text .accent-text {
    color: var(--primary-color);
}

.logo-link:hover .logo-text {
    opacity: 0.9;
}

/* Masaüstü Menü Stilleri */
.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.desktop-nav .nav-link {
    color: var(--light-grey);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px; /* İkon ve yazı arası boşluk */
}

.desktop-nav .nav-link i {
    font-size: 14px;
    color: var(--text-grey);
    transition: var(--transition);
}

/* Hover ve Aktif Durum Link Efektleri */
.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
    color: var(--white);
}

.desktop-nav .nav-link:hover i,
.desktop-nav .nav-link.active i {
    color: var(--primary-color);
}

.desktop-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.desktop-nav .nav-link:hover::after,
.desktop-nav .nav-link.active::after {
    width: 100%;
}

/* --- 3. Mobil Menü Tasarımı --- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-nav {
    position: fixed;
    top: 83px; /* Header yüksekliği + border */
    left: -100%;
    width: 100%;
    height: calc(100vh - 83px);
    background-color: rgba(26, 26, 26, 0.98); /* Hafif şeffaf siyah */
    transition: var(--transition);
    padding: 40px 20px;
}

.mobile-nav.open {
    left: 0;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 5px;
    transition: var(--transition);
}

.mobile-nav-link i {
    color: var(--primary-color);
    width: 25px;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background-color: var(--primary-color);
    padding-left: 20px;
}

.mobile-nav-link:hover i,
.mobile-nav-link.active i {
    color: var(--white);
}

/* Hamburger Animasyonu (Açıldığında X olması için) */
.mobile-menu-toggle.open .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.mobile-menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- HERO SECTION STYLES --- */
.hero-section {
    position: relative;
    background-color: var(--white);
    padding-top: 140px; /* Sabit header (navbar) payı */
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Ajans Kalitesi İçin İnce Noktalı Arka Plan Dokusu */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#e5e5e5 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    opacity: 0.6;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

/* Sol Taraf: İçerik Alanı */
.hero-content {
    flex: 1;
    max-width: 550px;
}

.hero-sub-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--light-grey);
    color: var(--secondary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid #e0e0e0;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-sub-tag i {
    color: var(--primary-color);
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-title .text-accent {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-grey);
    margin-bottom: 35px;
}

/* Buton Dünyası */
.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.2);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Sağ Taraf: Görsel ve Mock-up Alanı */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 380px;
}

/* Soyut Kurumsal Şekiller */
.decorative-shape {
    position: absolute;
    border-radius: 8px;
    transition: var(--transition);
}

.shape-1 {
    width: 100%;
    height: 100%;
    background-color: var(--light-grey);
    top: 20px;
    left: 20px;
    border: 1px solid #e0e0e0;
    z-index: 1;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    bottom: -20px;
    left: -20px;
    z-index: 3;
    opacity: 0.15;
}

/* Kod Editörü Görünümlü Modern Mock-up */
.mockup-display {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--secondary-color);
    border-radius: 8px;
    top: 0;
    left: 0;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 1px solid #2a2a2a;
}

.mockup-header {
    background-color: #111;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #222;
}

.mockup-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.mockup-header .dot.red { background-color: #ff5f56; }
.mockup-header .dot.yellow { background-color: #ffbd2e; }
.mockup-header .dot.green { background-color: #27c93f; }

.mockup-title {
    color: #666;
    font-size: 12px;
    margin-left: 10px;
    font-family: monospace;
}

.mockup-body {
    padding: 25px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.8;
    color: #a9b7c6;
}

.code-keyword { color: #cc7832; font-weight: bold; }
.code-var { color: #9876aa; }
.code-class { color: #ffc66d; }
.code-func { color: #ffc66d; }
.code-val { color: #6a8759; }

/* --- ABOUT SECTION STYLES --- */
.about-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--light-grey); /* Hero'dan sonra gri zemin ile kontrast sağlıyoruz */
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

/* Sol Taraf: Görsel Alanı */
.about-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 400px;
}

/* Ajans Kalitesinde Soyut Kutulu Görsel Alanı */
.main-image-block {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2c2c2c 100%);
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 5px solid var(--primary-color);
}

.main-image-block .large-icon {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.05); /* Arka planda şık loş ikon */
    transform: rotate(-15deg);
}

/* Asimetrik Deneyim Rozeti */
.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
}

.experience-badge .exp-number {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    padding-right: 15px;
}

.experience-badge .exp-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sağ Taraf: Metin Alanı */
.about-content {
    flex: 1;
    max-width: 580px;
}

/* Kurumsal Başlık Yapısı (Genel sitelerde de kullanılabilir) */
.section-title-area {
    margin-bottom: 25px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 30px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-main-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.about-lead-text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-paragraph {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 35px;
}

/* Özellik Listesi Stilleri */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    background-color: var(--white);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.feature-item:hover .feature-icon {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.feature-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-grey);
}

/* --- SERVICES & PRICING SECTION STYLES --- */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

/* Çözüm Odaklı Giriş Metni Stilleri */
.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.services-main-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 10px 0 20px 0;
    letter-spacing: -0.5px;
}

.services-lead-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-grey);
}

/* Kategori Bölücü Çizgiler */
.category-divider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--light-grey);
    padding-bottom: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.category-divider h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-divider h3 i {
    color: var(--primary-color);
}

/* Hediye Kampanya Rozeti */
.bonus-badge {
    background-color: rgba(128, 0, 32, 0.1);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px dashed var(--primary-color);
}

/* Fiyatlandırma Izgarası (Grid) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    align-items: stretch;
}

/* Kart Temel Yapısı */
.pricing-card {
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

/* Popüler / En Çok Tercih Edilen Kart Stili */
.pricing-card.popular {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(128, 0, 32, 0.05);
}

.popular-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 50px;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Kart İçeriği */
.card-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--light-grey);
    padding-bottom: 25px;
}

.card-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.card-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
}

.card-price .currency {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-grey);
}

.card-intro {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-grey);
    text-align: center;
    margin-bottom: 25px;
    min-height: 45px;
}

/* Özellik Listesi */
.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.card-features li {
    font-size: 14px;
    color: var(--secondary-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.card-features li i {
    color: #27c93f; /* Yeşil onay işareti */
    margin-top: 2px;
}

.card-features li i.fa-clock {
    color: var(--primary-color);
}

/* Kart Butonları */
.btn-card {
    display: block;
    text-align: center;
    background-color: var(--light-grey);
    color: var(--secondary-color);
    text-decoration: none;
    padding: 12px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.pricing-card:hover .btn-card {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pricing-card.popular .btn-card {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(128, 0, 32, 0.2);
}

.pricing-card.popular:hover .btn-card {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* --- DİNAMİK ÇÖZÜMLER ALANI --- */
.dynamic-solutions-box {
    background-color: var(--secondary-color);
    border-left: 5px solid var(--primary-color);
    border-radius: 4px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.dynamic-content {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    max-width: 75%;
}

.dynamic-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-top: 5px;
}

.dynamic-text h3 {
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.dynamic-text p {
    color: #b0b0b0;
    font-size: 15px;
    line-height: 1.7;
}

.dynamic-text strong {
    color: var(--white);
}

/* WhatsApp Buton Tasarımı */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #25d366; /* Orijinal WhatsApp Yeşili */
    color: var(--white);
    text-decoration: none;
    padding: 16px 28px;
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    white-space: nowrap;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background-color: #20ba59;
}

/* --- COUNTER SECTION STYLES --- */
.counter-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #111111 100%);
    padding: 60px 0;
    position: relative;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: inset 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
}

/* İnce ve asil bir doku katmak için */
.counter-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(128, 0, 32, 0.05), transparent);
    pointer-events: none;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Aralara ince kurumsal gri çizgiler (Sadece masaüstünde) */
.counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.counter-icon {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: var(--transition);
}

.counter-item:hover .counter-icon {
    transform: translateY(-5px) scale(1.1);
    color: var(--white);
}

.counter-number-wrapper {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-suffix {
    color: var(--primary-color);
    margin-left: 2px;
}

.counter-label {
    font-size: 14px;
    font-weight: 500;
    color: #a0a0a0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .counter-item:not(:last-child)::after {
        display: none; /* Mobilde dikey çizgileri kaldırıyoruz */
    }
    .counter-number-wrapper {
        font-size: 36px;
    }
/* --- CONTACT & FOOTER SECTION STYLES --- */
.contact-section {
    padding: 100px 0;
    background-color: var(--light-grey);
    position: relative;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
}

/* Sol Kolon Tasarımı */
.contact-info-area {
    flex: 1;
    max-width: 500px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    background-color: var(--secondary-color);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border-bottom: 2px solid var(--primary-color);
    transition: var(--transition);
}

.info-item:hover .info-icon {
    background-color: var(--primary-color);
    border-bottom-color: var(--secondary-color);
}

.info-text h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.info-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-grey);
}

.info-text p a {
    color: var(--text-grey);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.info-text p a:hover {
    color: var(--primary-color);
}

/* Yasal Bilgi Alanı İçin İnce Gri Tonlama */
.text-legal .info-icon {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid #e0e0e0;
}

/* Google Maps Çerçevesi */
.map-wrapper {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white);
    padding: 6px;
}

/* Sağ Kolon: Form Alanı */
.contact-form-area {
    flex: 1.2;
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 14px;
    color: var(--text-grey);
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Form Yapı Elemanları */
.custom-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 14px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    background-color: #fafafa;
    font-family: inherit;
    color: var(--secondary-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.05);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 16px;
    margin-top: 10px;
}

/* --- FOOTER TASARIMI --- */
.main-footer {
    background-color: var(--secondary-color);
    color: #a0a0a0;
    padding: 40px 0;
    border-top: 1px solid #2a2a2a;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand .logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

.footer-brand p {
    font-size: 13px;
    margin-top: 5px;
}

.footer-copy p {
    font-size: 13px;
    text-align: right;
}
/* --- RESPONSIVE TASARIM (MEDIA QUERIES) --- */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dynamic-solutions-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .dynamic-content {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }
}
/* --- RESPONSIVE TASARIM (MEDIA QUERIES) --- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 36px;
    }
    .visual-wrapper {
        max-width: 400px;
        height: 320px;
    }
    .about-container {
        gap: 40px;
    }
    .section-main-title {
        font-size: 30px;
    }
    .about-image-wrapper {
        max-width: 350px;
        height: 320px;
    }
    .experience-badge {
        padding: 15px 20px;
        bottom: -20px;
        right: -20px;
    }
    .experience-badge .exp-number {
        font-size: 30px;
    }
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .counter-item:not(:last-child)::after {
        display: none; /* Mobilde dikey çizgileri kaldırıyoruz */
    }
    .counter-number-wrapper {
        font-size: 36px;
    }
    .contact-container {
        flex-direction: column;
        gap: 50px;
    }
    .contact-info-area, 
    .contact-form-area {
        max-width: 100%;
        width: 100%;
    }
}

/* --- 4. Responsive Kırılma Noktası (Media Query) --- */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .hero-section {
        padding-top: 120px;
        padding-bottom: 60px;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-visual {
        width: 100%;
    }
    .visual-wrapper {
        max-width: 100%;
        height: 300px;
    }
    .shape-2 {
        display: none; /* Mobilde kalabalığı engellemek için */
    }
    .about-section {
        padding: 70px 0;
    }
    .about-container {
        flex-direction: column;
        gap: 60px;
    }
    .about-visual {
        width: 100%;
        order: 2; /* Mobilde görselin metnin altına düşmesi daha iyi bir UX sunar */
    }
    .about-content {
        width: 100%;
        order: 1;
    }
    .about-image-wrapper {
        max-width: 85%;
        height: 300px;
    }
    .services-section {
        padding: 70px 0;
    }
    .services-main-title {
        font-size: 28px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .category-divider {
        flex-direction: column;
        align-items: flex-start;
    }
    .dynamic-solutions-box {
        padding: 30px 20px;
    }
    .contact-section {
        padding: 70px 0;
    }
    .contact-form-area {
        padding: 40px 20px;
    }
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-copy p {
        text-align: center;
    }
}
@media (max-width: 480px) {
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .counter-section {
        padding: 50px 0;
    }
}