/* === Google Font Import === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* === CSS Değişkenleri (Renk Teması) === */
:root {
    --primary-blue: #007bff;      /* Ana Mavi */
    --dark-blue: #0056b3;         /* Koyu Mavi (Hover) */
    --light-blue-bg: #f0f7ff;     /* Çok Açık Mavi (Arka plan) */
    --text-color: #333;
    --heading-color: #222;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --container-width: 1140px;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* === Temel Ayarlar === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--white);
}

/* === PAGE LOADER === */
/* Minimal, non-spaghetti placement — near the base styles so it's globally available */
/* === PROFESYONEL LOGOLU LOADER === */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
}

/* Ortadaki Logo */
.loader-logo {
    width: 150px; /* Logo boyutu */
    height: auto;
    position: absolute;
    z-index: 2;
    animation: pulse 2s infinite ease-in-out;
}

/* Eğer logo yoksa çıkacak yazı */
.loader-text {
    font-size: 1.2rem;
    color: var(--dark-blue);
    font-weight: 700;
    animation: pulse 2s infinite ease-in-out;
}

/* Etrafta dönen ince halka */
.loader-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: var(--primary-blue); /* Mavi renk */
    border-bottom-color: var(--primary-blue); /* Mavi renk */
    opacity: 0.3; /* Silik görünüm */
    position: absolute;
    z-index: 1;
    animation: spin 1.5s linear infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* === AOS / Global Tweak === */
/* Prevent animation overflow on mobile devices */
html, body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-blue);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-blue);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

/* === Ana Konteyner === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* === Buton Stilleri === */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3);
}

/* === HEADER / NAVBAR === */
header {
    background: var(--primary-blue);
    border-bottom: 1px solid var(--dark-blue);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
}

.nav-logo:hover {
    color: var(--light-blue-bg);
}

#main-nav {
    display: flex;
    align-items: center;
}

#main-nav ul {
    display: flex;
    margin-right: 25px;
}

#main-nav ul li {
    margin-left: 30px;
}

#main-nav ul li a {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding-bottom: 5px;
    position: relative;
}

#main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

#main-nav ul li a:hover::after,
#main-nav ul li a.active::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.9rem;
    padding: 10px 20px;
    background-color: var(--white);
    color: var(--primary-blue);
}

.nav-cta:hover {
    background-color: var(--light-blue-bg);
    color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.2);
}

/* === ÇİFT TELEFON BUTONU STİLİ === */
.nav-cta-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 20px;
}

.nav-cta-small {
    display: block;
    background-color: var(--white);
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 6px;
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-cta-small:hover {
    background-color: var(--light-blue-bg);
    color: var(--dark-blue);
    transform: translateY(-2px);
}

#mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
}

/* === HERO BÖLÜMÜ (GÜNCELLENMİŞ VİDEO VE ZOOM AYARLARI) === */
.hero {
    position: relative;
    /* Video yüklenene kadar veya boşluklarda görünecek arka plan */
    background: radial-gradient(circle, #2b8bf2 0%, #0056b3 100%); 
    text-align: center;
    padding: 120px 0;
    overflow: hidden;
    color: var(--white);
    z-index: 1;
}

/* Videoları tutan ana kapsayıcı (MASAÜSTÜ AYARLARI) */
.hero-bg-video-container {
    position: absolute;
    top: 0; 
    bottom: 0;
    left: 50%; 
    transform: translateX(-50%); /* Tam ortala */
    
    width: 100%;
    max-width: 1400px; /* MASAÜSTÜNDE GENİŞLİK (İsteğe göre artırılabilir) */
    height: 100%;
    
    display: flex;
    z-index: 0; /* En arkada */
    
    /* MASAÜSTÜNDE KENAR YUMUŞATMA (MASKING) */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.video-split {
    flex: 1; 
    height: 100%;
    position: relative;
    overflow: hidden;
}

.video-split video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    opacity: 0.35; 
    
    /* === MASAÜSTÜ ZOOM AYARI === */
    transform: scale(1.25); /* %25 Yakınlaştırma */
    transition: transform 0.3s ease;
    
    filter: grayscale(10%) contrast(1.1);
}

/* Videoların üzerindeki mavi filtre (Vignette efekti) */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.2) 0%, rgba(0, 86, 179, 0.6) 100%);
    z-index: 1;
}

/* İçerik Katmanları */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-cta {
    font-size: 1.1rem;
    padding: 15px 35px;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.hero-cta:hover {
    transform: scale(1.05) translateY(-2px);
}

/* === BÖLÜM BAŞLIKLARI === */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--dark-blue);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-blue);
    border-radius: 2px;
    margin: 15px auto 0;
}

/* === HİZMETLER BÖLÜMÜ === */
.services-section {
    padding: 80px 0;
    background: var(--light-blue-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 20px;
    display: inline-block; /* İkonun düzgün ortalanması için */
}

/* Hem SVG hem de FontAwesome (i) ikonları için ortak ayar */
.service-icon svg, 
.service-icon i {
    width: 60px;        /* SVG için genişlik */
    height: 60px;       /* SVG için yükseklik */
    font-size: 50px;    /* FontAwesome ikon boyutu */
    color: var(--primary-blue);
    line-height: 1;
}

/* Zig-Zag detay sayfasındaki ikonlar için */
.service-row-icon svg,
.service-row-icon i {
    width: 50px;
    height: 50px;
    font-size: 45px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}
.service-title {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.service-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-link {
    font-weight: 600;
    font-size: 0.9rem;
}

/* === HAKKIMIZDA SNIPPET === */
.about-snippet {
    padding: 80px 0;
}

.about-snippet-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-text .section-title::after {
    margin: 15px 0 0;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* === DİĞER SAYFALAR (About, Services, Contact) === */
.page-header {
    background-color: var(--light-blue-bg);
    padding: 50px 0;
    border-bottom: 2px solid var(--primary-blue);
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    color: var(--dark-blue);
    font-size: 2.8rem;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-color);
    max-width: 700px;
    margin: -30px auto 50px auto;
}

.services-list-section {
    padding-bottom: 80px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.service-list-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    scroll-margin-top: 100px;
}

.service-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.service-item-icon {
    flex-shrink: 0;
    margin-top: 5px;
}

.service-item-icon svg {
    width: 50px;
    height: 50px;
    color: var(--primary-blue);
}

.service-item-content h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.service-item-content p {
    font-size: 1rem;
    line-height: 1.7;
}

.about-content-section {
    padding: 80px 0;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content-text h2 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-section {
    background-color: var(--dark-blue);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.cta-container h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-container p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.cta-btn {
    background-color: var(--white);
    color: var(--dark-blue);
    font-size: 1.1rem;
    padding: 15px 35px;
}

.cta-btn:hover {
    background-color: var(--light-blue-bg);
    color: var(--dark-blue);
    transform: scale(1.05);
}

.contact-section {
    padding: 20px 0 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form-wrapper h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--heading-color);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
}

.contact-info-wrapper {
    background: var(--light-blue-bg);
    padding: 30px;
    border-radius: 10px;
}

.contact-info-wrapper h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info-wrapper p {
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-blue);
}

.contact-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 2px;
}

.contact-text a,
.contact-text span {
    font-size: 1rem;
    color: var(--text-color);
    word-break: break-all;
}

.map-section {
    width: 100%;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.7;
}

/* === MÜŞTERİ YORUMLARI (YANA KAYDIRILABİLİR SLIDER) === */
.reviews-section {
    padding: 80px 0;
    background-color: var(--white);
    border-top: 1px solid #eee;
    overflow: hidden; /* Taşmaları gizle */
}

.reviews-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 40px;
}

/* Kaydırılabilir Alan */
.reviews-grid {
    display: flex;             /* Yan yana diz */
    gap: 20px;                 /* Kartlar arası boşluk */
    overflow-x: auto;          /* Yatay kaydırmaya izin ver */
    scroll-behavior: smooth;   /* Yumuşak kaydırma */
    padding: 10px 5px 20px 5px; /* Gölge kesilmesin diye alt boşluk */
    
    /* Scrollbar'ı gizlemek için (Opsiyonel) */
    scrollbar-width: none;     /* Firefox */
    -ms-overflow-style: none;  /* IE/Edge */
}

/* Chrome/Safari için scrollbar gizleme */
.reviews-grid::-webkit-scrollbar {
    display: none;
}

/* Kart Stilleri */
.review-card {
    min-width: 320px;         /* Kartların genişliği sabit olsun, küçülmesin */
    max-width: 320px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    /* Flex içinde büzüşmeyi engelle */
    flex: 0 0 auto; 
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* Diğer iç element stilleri (Değişmedi) */
.review-header { display: flex; align-items: center; margin-bottom: 15px; }
.review-avatar {
    width: 45px; height: 45px; background-color: var(--primary-blue);
    color: var(--white); border-radius: 50%; display: flex;
    align-items: center; justify-content: center; font-weight: 700;
    font-size: 1.2rem; margin-right: 15px; flex-shrink: 0;
}
.review-info h4 { font-size: 1rem; margin-bottom: 0; color: var(--heading-color); }
.review-date { font-size: 0.8rem; color: #777; }
.review-icon { margin-left: auto; }
.review-icon i { color: #4285F4; font-size: 1.5rem; }
.review-stars { color: #FFD700; margin-bottom: 15px; font-size: 0.9rem; }
.review-text { font-size: 0.95rem; color: #555; font-style: italic; line-height: 1.6; }

/* Ok Butonları */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    border: 1px solid #ddd;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.3);
}

.prev-btn { left: -20px; }
.next-btn { right: -20px; }

/* Mobilde butonları gizle (parmakla kaydırmak daha kolay) */
@media (max-width: 768px) {
    .slider-btn { display: none; }
    .reviews-slider-wrapper { margin: 20px -20px; padding: 0 20px; } /* Kenarlara yapışsın */
}

.review-cta { text-align: center; margin-top: 40px; }

/* === FOOTER === */
footer {
    background: #2a2a2a;
    color: #ccc;
    padding: 60px 0 20px 0;
    margin-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ccc;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
}

.alert-box {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.logo-img {
    height: 50px; /* Menü yüksekliğine göre ayarla */
    width: auto;
    display: block;
}

/* Mobilde biraz daha küçültmek istersen */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
}

/* === Bizi Farklı Kılan Nedir? Bölümü (Hakkımızda Sayfası) === */
.features-section {
    padding: 80px 0;
    background-color: var(--light-blue-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-title {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* === RESPONSIVE AYARLAR (Mobil Cihazlar İçin) === */
@media (max-width: 768px) {
    
    /* --- HERO VİDEO MOBİL SIFIRLAMA --- */
    /* Mobilde zoom yok, maske yok, ekranı tam kaplar */
    .hero-bg-video-container {
        max-width: 100%; 
        border: none;
        -webkit-mask-image: none;
        mask-image: none;
        flex-direction: row; /* Mobilde de yan yana şerit olarak kalsın */
    }

    .video-split video {
        transform: scale(1); /* Zoom iptal */
        opacity: 0.4; /* Biraz daha net olsun */
    }

    /* --- MENÜ RESPONSIVE --- */
    .nav-container {
        position: relative;
    }

    #main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        padding: 20px;
    }

    #main-nav.show {
        display: flex;
    }

    #main-nav ul {
        flex-direction: column;
        margin-right: 0;
        width: 100%;
    }

    #main-nav ul li {
        margin: 10px 0;
        text-align: center;
    }
    
    #main-nav ul li a {
        color: var(--text-color);
    }

    #main-nav ul li a:hover {
        color: var(--primary-blue);
    }

    #main-nav ul li a::after {
        background: var(--primary-blue);
    }

    /* Menü Butonları */
    .nav-cta {
        margin-top: 15px;
        width: 100%;
        background-color: var(--primary-blue);
        color: var(--white);
    }

    .nav-cta-group {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .nav-cta-small {
        width: 100%;
        padding: 10px;
        font-size: 1rem;
    }

    #mobile-menu-toggle {
        display: block;
    }

    /* --- TİPOGRAFİ RESPONSIVE --- */
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    /* --- DÜZEN RESPONSIVE --- */
    .about-snippet-container,
    .about-content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        margin-bottom: 30px;
    }

    .about-text .section-title {
        text-align: center;
    }
    .about-text .section-title::after {
        margin: 15px auto 0;
    }

    .service-list-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 20px;
    }

    .service-item-icon {
        margin-top: 0;
    }

    .service-item-content h3 {
        font-size: 1.3rem;
    }

    .about-content-text h2 {
        font-size: 1.8rem;
    }

    .cta-container h2 {
        font-size: 2rem;
    }

    .contact-info-wrapper {
        margin-top: 30px;
    }
}

.service-features-list {
    text-align: left;
    margin: 15px 0 20px 0;
    padding-left: 10px;
}

.service-features-list li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features-list li i {
    color: #25D366; /* Yeşil Tik */
    font-size: 1rem;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.whatsapp-card {
    background-color: #f0fdf4; /* Açık yeşil arka plan */
    border: 2px solid #25D366;
}
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    width: 100%;
    margin-top: 20px;
}
.btn-whatsapp:hover {
    background-color: #1ebc53;
    color: white;
}

/* === SERVICES PAGE (ZIG-ZAG LAYOUT) === */
.services-detail-section {
    padding: 60px 0;
    background-color: #fff;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px; /* Hizmetler arası boşluk */
    scroll-margin-top: 120px; /* Linkle gelince header altında kalmasın */
}

/* Çift sıradakileri (2, 4...) ters çevir */
.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-row-img {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-row:hover .service-row-img img {
    transform: scale(1.05); /* Üzerine gelince resim hafif büyüsün */
}

.service-row-content {
    flex: 1;
}

.service-row-icon svg {
    width: 50px;
    height: 50px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.service-row-content h2 {
    font-size: 2.2rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-long-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Çift sütun liste */
    gap: 15px;
    margin-bottom: 30px;
}

.service-detail-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--dark-blue);
}

.service-detail-features li i {
    color: var(--primary-blue);
    background: var(--light-blue-bg);
    padding: 8px;
    border-radius: 50%;
    font-size: 0.8rem;
}

.service-actions {
    display: flex;
    gap: 15px;
}

/* RESPONSIVE (MOBİL) AYARLAR */
@media (max-width: 992px) {
    .service-row {
        flex-direction: column; /* Mobilde alt alta olsun */
        gap: 30px;
        margin-bottom: 60px;
        text-align: center;
    }

    .service-row:nth-child(even) {
        flex-direction: column; /* Mobilde ters çevirmeyi iptal et */
    }

    .service-detail-features {
        grid-template-columns: 1fr; /* Mobilde tek sütun liste */
        text-align: left; /* Listeler sola yaslı daha iyi okunur */
        display: inline-grid; /* Ortalamak için */
    }

    .service-actions {
        justify-content: center;
    }
    
    .service-row-icon {
        display: flex;
        justify-content: center;
    }
}

/* === Hakk�m�zda Sayfas� ��in Ek Stiller === */
.about-tech-text {
    margin-top: 20px;
    font-weight: 600;
    border-left: 4px solid var(--primary-blue);
    padding-left: 15px;
}


.about-content-image-style {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


/* === WhatsApp Kart� Stilleri (index.html) === */
.service-card.whatsapp-card {
    border: 2px solid #25D366;
    background-color: #f0fdf4;
}

.service-card.whatsapp-card .service-icon i {
    font-size: 60px;
    color: #25D366;
}

.service-card.whatsapp-card .service-title {
    color: #25D366;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    width: 100%;
    margin-top: 20px;
    text-decoration: none; /* �zerine gelince alt �izgi olmas�n */
    font-weight: bold;
}

.btn-whatsapp:hover {
    background-color: #1ebc53; /* Biraz daha koyu ye�il */
    color: white;
}

