/* 
 * Oray Oto Çekici - Global CSS Tasarım Sistemi (Luxury Minimalist & Tech Dark)
 * Tamamen Yenilenmiş, Tacky Gradyanlardan Arındırılmış, Premium ve Ultra-Modern Apple/Linear Tarzı Dil
 */

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

/* --- TASARIM TOKENLERİ --- */
:root {
    /* Renk Paleti (Açık Tema - Premium ve Minimalist) */
    --color-primary: #FF5E14;                     /* Birincil Renk: Canlı Turuncu-Kırmızı */
    --color-primary-hover: #e04b00;
    --color-primary-glow: rgba(255, 94, 20, 0.07);
    
    --color-secondary: #2371FF;                   /* İkincil Renk: Premium Güven Mavisi */
    --color-secondary-hover: #0051e0;
    --color-secondary-glow: rgba(35, 113, 255, 0.07);
    
    --color-bg-deep: hsl(210, 20%, 99%);          /* Saf/Parlak Krem-Beyaz Zemin */
    --color-bg-main: hsl(210, 20%, 96%);          /* Yumuşak Açık Gri Bölümler */
    --color-bg-card: hsl(0, 0%, 100%);            /* Saf Beyaz Mat Kart Rengi */
    --color-bg-glass: rgba(255, 255, 255, 0.82);  /* Transparan Açık Cam */
    
    --color-text-white: hsl(224, 25%, 12%);       /* Derin Kömür Başlık Rengi (HTML uyumluluğu için değişken ismi korundu) */
    --color-text-body: hsl(224, 12%, 28%);        /* Yüksek Okunabilirlikte Gövde Metni */
    --color-text-muted: hsl(224, 8%, 46%);        /* Pasif / Yardımcı Metin */
    
    --color-success: hsl(142, 72%, 29%);          /* Güvenli Yeşil (WhatsApp) */
    --color-danger: hsl(350, 89%, 43%);           /* Acil Durum Kırmızısı */
    
    /* İnce Sofistike Gölgeler ve Glow Efektleri (Açık Mod için Optimize Edildi) */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 10px 30px -10px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 25px 50px -12px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 0 50px -10px rgba(255, 94, 20, 0.04); /* Yumuşak birincil renk oda ışığı */
    
    /* Hairline Sınırlar & Yarıçaplar (Apple Stili) */
    --border-hairline: 1px solid rgba(15, 23, 42, 0.065);
    --border-hairline-light: 1px solid rgba(15, 23, 42, 0.1);
    --border-radius-sm: 10px;
    --border-radius-md: 18px;
    --border-radius-lg: 32px;
    
    /* Tipografi */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Sora', sans-serif;
    
    /* Mikro Animasyonlar */
    --transition-fast: 0.15s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- TEMEL RESET VE DÜZEN --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-body);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-white);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.03em;
}

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

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

/* Scrollbar Tasarımı */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--color-bg-card);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* --- KÜRESEL STİLLER --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.text-primary { color: var(--color-primary) !important; }
.text-white { color: var(--color-text-white) !important; }

/* Buton Tasarımları (Tamamen Mat ve Keskin) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    outline: none;
    letter-spacing: -0.02em;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-deep);
    box-shadow: 0 10px 25px -10px rgba(255, 94, 20, 0.35);
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2.5px);
    box-shadow: 0 15px 30px -8px rgba(255, 94, 20, 0.45);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--color-text-white);
    border: var(--border-hairline);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2.5px);
}

/* Lüks Cam Efekti Kartı (Hairline Border & Derin Blur) */
.glass-card {
    background: var(--color-bg-card);
    border: var(--border-hairline);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    transform: translateY(-4px);
}

/* --- MENÜ VE NAVİGASYON --- */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar-wrapper.scrolled {
    background-color: var(--color-bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: var(--border-hairline);
    box-shadow: var(--shadow-sm);
}

/* Üst Küçük Bar (Minimalist) */
.topbar {
    background-color: var(--color-bg-deep);
    border-bottom: var(--border-hairline);
    padding: 10px 0;
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-info {
    display: flex;
    gap: 24px;
}

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

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--color-text-white);
}

.logo-text span {
    color: var(--color-primary);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    color: var(--color-text-body);
    letter-spacing: -0.01em;
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-normal);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text-white);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-text-white);
    margin: 5px 0;
    transition: var(--transition-fast);
}

/* --- HERO BÖLÜMÜ (Maksimum Whitespace & Sofistike Görünüm) --- */
.hero {
    position: relative;
    min-height: 100vh;
    padding-top: 180px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 80% 20%, rgba(35, 113, 255, 0.04) 0%, rgba(255, 94, 20, 0.04) 50%, rgba(255, 255, 255, 0) 100%), 
                linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, var(--color-bg-deep) 100%), 
                url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    z-index: 10;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    border: var(--border-hairline);
    color: var(--color-text-white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 28px;
    letter-spacing: -0.04em;
}

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

.hero-desc {
    font-size: 16px;
    color: var(--color-text-body);
    margin-bottom: 40px;
    max-width: 580px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    border-top: var(--border-hairline);
    padding-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 36px;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--color-text-white);
    letter-spacing: -0.03em;
}

.stat-lbl {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Lüks WhatsApp Teklif Sihirbazı Kartı */
.hero-wizard-card {
    padding: 40px 35px;
    background-color: var(--color-bg-card);
    border: var(--border-hairline);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.wizard-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.wizard-subtitle {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 30px;
}

.wizard-step {
    margin-bottom: 24px;
}

.wizard-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

/* Mat Seçim Kartları */
.vehicle-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.vehicle-btn {
    background-color: rgba(255, 255, 255, 0.015);
    border: var(--border-hairline);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-body);
    padding: 16px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
}

.vehicle-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    opacity: 0.6;
}

.vehicle-btn:hover {
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--color-text-white);
}

.vehicle-btn.selected {
    background-color: var(--color-primary-glow);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.vehicle-btn.selected svg {
    fill: var(--color-primary);
    opacity: 1;
}

/* Ultra Sleek Giriş Alanları */
.wizard-select, .wizard-input, .form-control {
    width: 100%;
    background-color: hsl(210, 20%, 97%);
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: var(--border-radius-sm);
    color: var(--color-text-white);
    padding: 14px 18px;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    transition: var(--transition-fast);
}

.wizard-select:focus, .wizard-input:focus, .form-control:focus {
    border-color: var(--color-primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 94, 20, 0.08);
}

.wizard-submit {
    width: 100%;
    margin-top: 12px;
    padding: 16px;
}

/* --- BILGI VE OZELLIK KARTLARI --- */
.section-header {
    max-width: 650px;
    margin: 0 auto 70px auto;
}

.section-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 14px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 15px;
    color: var(--color-text-body);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.feature-card {
    padding: 40px 32px;
    border-radius: var(--border-radius-md);
    background-color: var(--color-bg-card);
    border: var(--border-hairline);
    transition: var(--transition-normal);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.feature-icon-box {
    width: 56px;
    height: 56px;
    background-color: var(--color-secondary-glow);
    color: var(--color-secondary);
    border-radius: 16px;
    border: 1px solid rgba(35, 113, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-normal);
}

.feature-icon-box svg {
    width: 24px;
    height: 24px;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(35, 113, 255, 0.2);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.feature-card:hover .feature-icon-box {
    background-color: var(--color-secondary);
    color: #ffffff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(35, 113, 255, 0.25);
}

/* Çift Renk Tema Desteği */
.feature-card.primary-theme .feature-icon-box {
    background-color: var(--color-primary-glow);
    color: var(--color-primary);
    border-color: rgba(255, 94, 20, 0.15);
}

.feature-card.primary-theme:hover {
    border-color: rgba(255, 94, 20, 0.25);
}

.feature-card.primary-theme:hover .feature-icon-box {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(255, 94, 20, 0.25);
}

/* --- HİZMETLERİMİZ KART GRUBU (Mat & Temiz Kesim) --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-img-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--border-radius-md);
    border: var(--border-hairline);
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--color-bg-deep);
    border: var(--border-hairline);
    color: var(--color-text-white);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 30px;
    z-index: 10;
}

.service-card-body {
    padding: 32px 28px 32px 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.service-card p {
    font-size: 13px;
    color: var(--color-text-body);
    margin-bottom: 24px;
    line-height: 1.7;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 13px;
    color: var(--color-primary);
    width: fit-content;
}

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

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

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

/* --- HAKKIMIZDA BÖLÜMÜ --- */
.about-section {
    position: relative;
    background-color: var(--color-bg-main);
    border-top: var(--border-hairline);
    border-bottom: var(--border-hairline);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.about-main-img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: var(--border-hairline-light);
}

.about-badge-card {
    position: absolute;
    bottom: -24px;
    right: -24px;
    padding: 20px 24px;
    background-color: var(--color-bg-card);
    border: var(--border-hairline-light);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-badge-icon {
    width: 44px;
    height: 44px;
    background-color: var(--color-secondary);
    color: var(--color-bg-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 15px;
}

.about-badge-txt h4 {
    font-size: 16px;
    font-weight: 700;
}

.about-badge-txt p {
    font-size: 11px;
    color: var(--color-text-muted);
}

.about-list {
    margin: 36px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-list-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.about-list-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.about-list-item p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
}

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

.testimonial-card {
    padding: 40px;
    position: relative;
    background-color: var(--color-bg-card);
    border: var(--border-hairline);
    border-radius: var(--border-radius-md);
}

.quote-icon {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 50px;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.02);
    line-height: 1;
    pointer-events: none;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.stars svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.testimonial-text {
    font-size: 13px;
    color: var(--color-text-body);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 28px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: var(--border-hairline);
    padding-top: 20px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.03);
    border: var(--border-hairline);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-text-white);
    font-size: 12px;
    font-family: var(--font-heading);
}

.user-info h4 {
    font-size: 14px;
    font-weight: 600;
}

.user-info p {
    font-size: 11px;
    color: var(--color-text-muted);
}

/* --- YOL YARDIM ACİL DURUM CTA BÖLÜMÜ --- */
.cta-section {
    background: radial-gradient(circle at center, rgba(255, 94, 20, 0.06) 0%, rgba(255, 255, 255, 0) 70%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, var(--color-bg-main) 100%), 
                url('../assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-top: var(--border-hairline);
    border-bottom: var(--border-hairline);
    text-align: center;
}

.cta-box {
    max-width: 750px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.cta-box p {
    font-size: 16px;
    color: var(--color-text-body);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- AKORDEON SSS (Clean Dashboard Stili) --- */
.faq-section {
    background-color: var(--color-bg-main);
    border-bottom: var(--border-hairline);
}

.faq-container {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: var(--border-hairline);
    border-radius: var(--border-radius-sm);
    background-color: var(--color-bg-card);
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-header {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header h3 {
    font-size: 15px;
    font-weight: 600;
}

.faq-icon {
    width: 14px;
    height: 14px;
    position: relative;
    transition: var(--transition-normal);
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-text-white);
    transition: var(--transition-normal);
}

.faq-icon::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
}

.faq-icon::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 14px;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content p {
    padding: 0 28px 22px 28px;
    font-size: 13px;
    color: var(--color-text-body);
    line-height: 1.7;
    border-top: 1px solid rgba(255, 255, 255, 0.015);
}

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

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* --- İLETİŞİM GRİDLERİ --- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
}

.contact-info-card {
    padding: 40px;
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 28px;
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-channel {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.channel-icon-box {
    width: 44px;
    height: 44px;
    background-color: var(--color-secondary-glow);
    color: var(--color-secondary);
    border: 1px solid rgba(35, 113, 255, 0.15);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.channel-icon-box svg {
    width: 18px;
    height: 18px;
}

.channel-details h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.channel-details p, .channel-details a {
    font-size: 13px;
    color: var(--color-text-body);
}

.channel-details a:hover {
    color: var(--color-text-white);
}

.contact-form-card {
    padding: 48px;
}

.contact-form-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-card p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 36px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group-full {
    grid-column: span 2;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* Google Maps Iframe Frame */
.map-container {
    height: 450px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: var(--border-hairline-light);
    margin-top: 60px;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(40%) contrast(1.05); /* Premium açık gri harita */
}

/* --- KURUMSAL FOOTER --- */
.footer {
    background-color: var(--color-bg-deep);
    border-top: var(--border-hairline);
    padding-top: 100px;
    padding-bottom: 40px;
}

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

.footer-logo-desc {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo-desc img {
    align-self: flex-start;
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-logo-desc p {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.footer-col h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
    color: var(--color-text-white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-size: 13px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--color-text-white);
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-secondary);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item div p {
    font-size: 12px;
    color: var(--color-text-muted);
}

.footer-contact-item div a {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-body);
}

.footer-contact-item div a:hover {
    color: var(--color-text-white);
}

.footer-bottom {
    border-top: var(--border-hairline);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--color-text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    font-size: 12px;
    color: var(--color-text-muted);
}

.footer-bottom-links a:hover {
    color: var(--color-text-white);
}

/* --- MOBİL SABİT BAR (Tasarım Revizyonu) --- */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 16px 20px;
    background-color: rgba(11, 13, 17, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: var(--border-hairline-light);
    box-shadow: 0 -15px 30px rgba(0, 0, 0, 0.8);
}

.sticky-bar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.sticky-call {
    background-color: var(--color-primary);
    color: var(--color-bg-deep);
    box-shadow: 0 8px 20px rgba(255, 94, 20, 0.3);
}

.sticky-whatsapp {
    background-color: var(--color-success);
    color: var(--color-text-white);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.2);
}

/* --- ANIMASYON DEFINITIONS --- */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 94, 20, 0.6);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(255, 94, 20, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 94, 20, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- RESPONSIVE OPTIMIZASYONLARI --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-content {
        text-align: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-img-box {
        max-width: 480px;
        margin: 0 auto;
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 80px;
    }
    .container {
        padding: 0 24px;
    }
    .section-title {
        font-size: 32px;
    }
    .hero-title {
        font-size: 42px;
    }
    .topbar {
        display: none;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: var(--color-bg-main);
        border-left: var(--border-hairline-light);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        transition: var(--transition-normal);
        z-index: 999;
        box-shadow: -15px 0 40px rgba(0, 0, 0, 0.8);
    }
    .nav-menu.active {
        right: 0;
    }
    .hamburger {
        display: block;
        z-index: 1000;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group-full {
        grid-column: span 1;
    }
    .mobile-sticky-bar {
        display: none !important;
    }
    
    .footer-logo-desc {
        align-items: flex-start !important;
        text-align: left !important;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px);
    }
}

/* ==========================================================================
   YÜZER İLETİŞİM WIDGET'I (Premium Apple/Stripe-Style Floating FABs)
   ========================================================================== */
.floating-contact-widget {
    position: fixed;
    right: 28px;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
    transition: var(--transition-normal);
}

.floating-btn {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: none;
    outline: none;
}

.floating-btn svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
    transition: var(--transition-fast);
}

/* WhatsApp FAB */
.floating-whatsapp {
    background-color: #25D366;
}

.floating-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
}

/* Arama FAB */
.floating-call {
    background-color: var(--color-primary);
}

.floating-call:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 30px rgba(255, 94, 20, 0.35);
}

/* Arama Butonu Pulse Animasyonu */
.floating-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--color-primary);
    opacity: 0.4;
    z-index: -1;
    animation: pulseCall 2s infinite;
}

@keyframes pulseCall {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Tooltip Tasarımları */
.floating-btn .btn-tooltip {
    position: absolute;
    right: 76px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background-color: var(--color-bg-card);
    color: var(--color-text-white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow-md);
    border: var(--border-hairline);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.floating-btn:hover .btn-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Mobilde Uyumlandırma */
@media (max-width: 768px) {
    .floating-contact-widget {
        right: 20px;
        bottom: 20px;
        gap: 12px;
    }
    .floating-btn {
        width: 52px;
        height: 52px;
    }
    .floating-btn svg {
        width: 22px;
        height: 22px;
    }
    .floating-btn .btn-tooltip {
        display: none !important; /* Mobilde tooltip gösterme */
    }
}
}
