/* =====================================================
   Eliano Umzug - Main Stylesheet
   Mavi tonlarda, degrade kullanilmaz
   ===================================================== */

:root {
    --blue-primary: #0B4A8F;
    --blue-secondary: #1565C0;
    --blue-light: #4A90D9;
    --blue-pale: #E3F2FD;
    --blue-dark: #073366;
    --blue-deep: #0a3a73;
    --text-dark: #1a2837;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #F5F8FC;
    --bg-white: #ffffff;
    --border-light: #d8e3f0;
    --border-medium: #b8cce0;
    --success: #2E7D32;
    --warning: #ED6C02;
    --danger: #C62828;
    --shadow-sm: 0 2px 8px rgba(11, 74, 143, 0.08);
    --shadow-md: 0 4px 16px rgba(11, 74, 143, 0.12);
    --shadow-lg: 0 8px 24px rgba(11, 74, 143, 0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --font-main: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; color: var(--text-medium); }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

/* ===== TOP BAR ===== */
.topbar {
    background: var(--blue-dark);
    color: #fff;
    font-size: 0.875rem;
    padding: 8px 0;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--blue-pale); }
.topbar-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    min-width: 0;
}
.topbar-item { min-width: 0; }
.topbar-item i { margin-right: 6px; color: var(--blue-light); }
.topbar-phone a,
.topbar-mail a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    min-width: 0;
}
.topbar-phone-text,
.topbar-mail-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.topbar-lang { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.topbar-lang a {
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid transparent;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
}
.topbar-lang a.active { background: #fff; color: var(--blue-dark); }

/* ===== HEADER / NAVBAR ===== */
.site-header {
    background: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 12px;
    min-width: 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--blue-primary);
    text-decoration: none;
    flex: 1 1 auto;
    min-width: 0;
}
.navbar-brand-text { display: flex; flex-direction: column; line-height: 1; }
.navbar-brand-text small {
    font-size: 0.7rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Logo + Tagline unter dem Logo */
.navbar-brand-lockup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
}
.navbar-brand--with-logo .navbar-brand-img {
    display: block;
    max-height: 80px;
    width: auto;
    max-width: 360px;
    height: auto;
    object-fit: contain;
    object-position: left top;
    flex-shrink: 1;
    min-width: 0;
}
.navbar-brand-tagline {
    margin: 0;
    padding: 0;
    font-size: clamp(0.52rem, 0.62rem + 0.25vw, 0.75rem);
    line-height: 1.1;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    max-width: 100%;
}
.site-header > .container { min-width: 0; }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-menu a {
    color: var(--text-dark);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
}
.nav-menu a:hover, .nav-menu a.active { background: var(--blue-pale); color: var(--blue-primary); }

.nav-cta { background: var(--blue-primary); color: #fff !important; padding: 10px 20px !important; border-radius: var(--radius-sm); }
.nav-cta:hover { background: var(--blue-dark) !important; color: #fff !important; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.6rem;
    color: var(--blue-primary);
    padding: 5px 10px;
    flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    font-family: inherit;
    text-decoration: none;
}
.btn-primary { background: var(--blue-primary); color: #fff; border-color: var(--blue-primary); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--blue-primary); border-color: var(--blue-primary); }
.btn-outline:hover { background: var(--blue-primary); color: #fff; }
.btn-white { background: #fff; color: var(--blue-primary); border-color: #fff; }
.btn-white:hover { background: var(--blue-pale); color: var(--blue-dark); }
.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #1ea353; color: #fff; }
.btn-lg { padding: 15px 32px; font-size: 1.08rem; }
.btn-block { display: flex; width: 100%; }

/* ===== HERO ===== */
.hero {
    position: relative;
    background: var(--blue-dark);
    color: #fff;
    padding: 80px 0;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--blue-dark);
    opacity: 0.7;
    z-index: 1;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 780px; }
.hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero p {
    color: rgba(255,255,255,0.95);
    font-size: 1.18rem;
    margin-bottom: 1.8rem;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
    display: flex;
    gap: 30px;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.hero-badge { display: flex; align-items: center; gap: 10px; color: #fff; }
.hero-badge i { font-size: 1.5rem; color: var(--blue-light); }

/* Ana sayfa banner: overlay yok; tam görsel taşmadan sığdır */
.hero.hero--banner-only {
    padding: 0;
    min-height: 0;
    display: block;
    overflow: visible;
    background: var(--bg-white);
}
.hero.hero--banner-only::before { display: none; }
.hero.hero--banner-only .hero-banner-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center top;
}

/* ===== SECTIONS ===== */
.section { padding: 70px 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--blue-dark); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark p { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.85); }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-header span.eyebrow {
    display: inline-block;
    color: var(--blue-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.section-header h2 { font-size: 2.4rem; margin-bottom: 12px; }
.section-header p { font-size: 1.1rem; color: var(--text-medium); }

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.feature-card {
    background: #fff;
    padding: 32px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all 0.25s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--blue-light);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--blue-pale);
    color: var(--blue-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1.6rem;
    margin-bottom: 18px;
}
.features-grid .feature-card {
    text-align: center;
}
.features-grid .feature-icon {
    margin-left: auto;
    margin-right: auto;
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.95rem; margin: 0; }

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.service-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.service-card-image {
    aspect-ratio: 16 / 10;
    background: var(--blue-pale);
    position: relative;
    overflow: hidden;
}
.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s;
}
.service-card:hover .service-card-image img { transform: scale(1.05); }
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card p { font-size: 0.95rem; margin-bottom: 16px; flex: 1; }
.service-card-link {
    color: var(--blue-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
}
.service-card-link i { transition: transform 0.2s; }
.service-card-link:hover i { transform: translateX(4px); }

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.about-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-stats {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
}
.about-stats strong { display: block; font-size: 2rem; color: var(--blue-primary); }
.about-stats span { font-size: 0.85rem; color: var(--text-light); }

.about-list { margin-top: 24px; }
.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-medium);
}
.about-list i { color: var(--blue-primary); font-size: 1.1rem; margin-top: 4px; }

/* ===== PROCESS STEPS ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    position: relative;
}
.process-step {
    text-align: center;
    padding: 22px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    position: relative;
}
.process-step-num {
    width: 40px;
    height: 40px;
    background: var(--blue-primary);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 12px;
}
.process-step-icon { font-size: 2rem; color: var(--blue-primary); margin-bottom: 10px; }
.process-step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; margin: 0; }

/* ===== STATS ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}
.stat-item strong {
    display: block;
    font-size: 3rem;
    color: var(--blue-light);
    font-weight: 800;
    line-height: 1;
}
.stat-item span { color: rgba(255,255,255,0.85); font-size: 1rem; }

/* ===== SLOGAN BANNER ===== */
.slogan-banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(150deg, var(--blue-dark) 0%, #053251 50%, var(--blue-dark) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.slogan-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 55%;
    max-width: 420px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.07) 0%, transparent 70%);
    pointer-events: none;
}
.slogan-banner .container { position: relative; z-index: 1; }
.slogan-banner-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}
.slogan-banner-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin: 0 0 14px;
}
.slogan-banner-title {
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 16px;
}
.slogan-banner-text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 auto 26px;
    max-width: 560px;
}
.slogan-banner .btn { margin-top: 4px; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.testimonial-card {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    position: relative;
}
.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2rem;
    color: var(--blue-pale);
}
.testimonial-stars { color: #f5a623; margin-bottom: 12px; font-size: 1rem; }
.testimonial-text { font-style: italic; color: var(--text-medium); margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue-pale);
    color: var(--blue-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}
.testimonial-author strong { display: block; }
.testimonial-author small { color: var(--text-light); font-size: 0.85rem; }

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: var(--blue-pale);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 74, 143, 0.6);
    color: #fff;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.25s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { font-size: 2rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: background 0.2s;
}
.faq-question:hover { background: var(--bg-light); }
.faq-question i { transition: transform 0.2s; color: var(--blue-primary); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    color: var(--text-medium);
    padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 18px; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); font-size: 0.92rem; }
.form-label .required { color: var(--danger); }
.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border-medium);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.98rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #fff;
}
.form-control:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(11, 74, 143, 0.12);
}
textarea.form-control { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input { margin-top: 4px; }
.form-check label { font-size: 0.9rem; color: var(--text-medium); cursor: pointer; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(22px, 4vw, 40px);
    align-items: start;
}
.contact-layout > .contact-col {
    min-width: 0;
}
.contact-info-cards {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-info-cards .feature-card {
    margin: 0;
}
.contact-info-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.contact-info-row .feature-icon {
    flex-shrink: 0;
    margin: 0;
    align-self: flex-start;
}
.contact-info-text {
    flex: 1;
    min-width: 0;
}
.contact-info-text h3 {
    margin: 0 0 4px;
    font-size: 1.08rem;
}
.contact-info-text p {
    margin: 0;
    word-break: break-word;
}
.contact-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}
.quote-card-title { margin-bottom: 6px; }
.quote-card-lead {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}
.quote-card .form-message { margin-bottom: 14px; }
.contact-map-section {
    padding-block: 0 !important;
    padding-inline: 0 !important;
}
.contact-map-responsive {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.contact-map-responsive iframe {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    border: 0 !important;
    height: clamp(260px, 56vw, 520px);
    min-height: 260px;
}

.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
    font-size: 0.95rem;
}
.alert-success { background: #E8F5E9; color: var(--success); border: 1px solid #A5D6A7; }
.alert-error { background: #FFEBEE; color: var(--danger); border: 1px solid #FFCDD2; }
.alert-info { background: var(--blue-pale); color: var(--blue-dark); border: 1px solid var(--border-medium); }

/* ===== CTA BOX ===== */
.cta-box {
    background: var(--blue-primary);
    color: #fff;
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 50px 0;
}
.cta-box h3 { color: #fff; font-size: 1.8rem; margin-bottom: 10px; }
.cta-box p { color: rgba(255,255,255,0.9); margin-bottom: 22px; font-size: 1.05rem; }
.cta-box .btn { margin: 5px; }

/* ===== CITIES ===== */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 12px;
}
.city-tag {
    background: #fff;
    border: 1px solid var(--border-light);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    text-align: center;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.city-tag i { color: var(--blue-primary); }
.city-tag:hover { background: var(--blue-pale); border-color: var(--blue-primary); color: var(--blue-primary); }

/* ===== PAGE BANNER ===== */
.page-banner {
    background: var(--blue-dark);
    color: #fff;
    padding: 70px 0 50px;
    position: relative;
}
.page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/pattern.svg');
    opacity: 0.05;
    pointer-events: none;
}
.page-banner h1 { color: #fff; font-size: 2.5rem; margin-bottom: 8px; }
.page-banner .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    row-gap: 6px;
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}
.page-banner .breadcrumb a { color: #fff; }
.page-banner .breadcrumb a:hover { color: var(--blue-light); }
.page-banner .breadcrumb i { font-size: 0.7rem; opacity: 0.6; }

/* ===== SERVICE DETAIL ===== */
.service-detail {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}
.service-detail-content {
    background: #fff;
    padding: 36px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}
.service-detail-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 28px;
    aspect-ratio: 16/9;
}
.service-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-content h2 { font-size: 2rem; }
.service-detail-content h3 { font-size: 1.35rem; margin-top: 1.8rem; color: var(--blue-primary); }
.service-detail-content ul { list-style: none; margin: 1rem 0; }
.service-detail-content ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-medium);
}
.service-detail-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--blue-primary);
}
.sidebar-widget {
    background: #fff;
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    margin-bottom: 24px;
}
.sidebar-widget h4 { font-size: 1.15rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--blue-primary); }
.sidebar-services { list-style: none; }
.sidebar-services li { margin-bottom: 6px; }
.sidebar-services a {
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}
.sidebar-services a:hover, .sidebar-services a.active {
    background: var(--blue-pale);
    color: var(--blue-primary);
}
.sidebar-services i { font-size: 0.8rem; }

.sidebar-contact { background: var(--blue-primary); color: #fff; text-align: center; }
.sidebar-contact h4 { color: #fff; border-color: rgba(255,255,255,0.3); }
.sidebar-contact p { color: rgba(255,255,255,0.9); }
.sidebar-contact .btn { width: 100%; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--blue-dark);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--blue-light);
}
.footer-col p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer-col a:not(.footer-brand-logo) { color: rgba(255,255,255,0.8); display: block; padding: 4px 0; font-size: 0.92rem; }
.footer-col a:not(.footer-brand-logo):hover { color: #fff; padding-left: 6px; }
.footer-brand-logo {
    display: inline-block;
    margin-bottom: 14px;
    line-height: 0;
}
.footer-brand-logo:hover { opacity: 0.92; }
.footer-brand-img {
    display: block;
    max-height: 72px;
    width: auto;
    max-width: 240px;
    height: auto;
    object-fit: contain;
    object-position: left center;
}
.footer-info-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 0.92rem; }
.footer-info-item i { color: var(--blue-light); margin-top: 4px; }

.footer-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.footer-col .footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0;
    flex-shrink: 0;
    text-decoration: none;
}
.footer-col .footer-social a i {
    font-size: 1rem;
    line-height: 1;
}
.footer-col .footer-social a i.fa-brands.fa-instagram {
    font-size: 1.5rem;
}
.footer-col .footer-social a i.fa-brands.fa-whatsapp {
    font-size: 1.56rem;
    width: auto;
    height: auto;
    min-width: 1em;
    min-height: 1em;
    transform: translateY(1.5px);
}
.footer-col .footer-social a:hover { background: var(--blue-light); padding-left: 0; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom-legal {
    display: flex;
    align-items: center;
    gap: 18px;
}
.footer-bottom-legal a {
    color: #fff;
    display: inline;
    padding: 0;
    text-decoration: none;
    font-size: 0.88rem;
}
.footer-bottom-legal a:hover {
    color: #fff;
    text-decoration: underline;
    padding: 0;
}

/* ===== FLOATING BUTTONS ===== */
.floating-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}
.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s;
}
.floating-btn i {
    display: grid;
    place-items: center;
    line-height: 1;
}
.floating-btn .fa-brands.fa-whatsapp {
    font-size: 1.58rem;
    transform: translateY(-2px);
}
.floating-btn:hover { transform: scale(1.1); }
.floating-whatsapp { background: #25D366; }
.floating-phone { background: var(--blue-primary); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index: 9999;
    display: none;
    border: 1px solid var(--border-light);
}
.cookie-banner.show { display: block; }
.cookie-banner h4 { font-size: 1.05rem; margin-bottom: 6px; color: var(--blue-primary); }
.cookie-banner p { font-size: 0.85rem; margin-bottom: 14px; color: var(--text-medium); }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 8px 18px; font-size: 0.88rem; }

@media (max-width: 640px) {
    .cookie-banner {
        left: max(10px, env(safe-area-inset-left));
        right: max(10px, env(safe-area-inset-right));
        bottom: max(12px, env(safe-area-inset-bottom));
        padding: 12px 14px;
        max-width: none;
        margin: 0;
        border-radius: var(--radius-sm);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.14);
        max-height: min(260px, calc(100vh - 120px));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .cookie-banner h4 {
        font-size: 0.88rem;
        margin-bottom: 4px;
        line-height: 1.25;
    }
    .cookie-banner p {
        font-size: 0.72rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    .cookie-banner-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 6px 8px;
    }
    .cookie-banner-actions .btn,
    .cookie-banner-actions > a.btn {
        padding: 7px 10px;
        font-size: 0.76rem;
        width: auto;
        min-height: 0;
    }
    .cookie-banner-actions > *:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: stretch;
        text-align: center;
    }
}

/* ===== CALCULATOR ===== */
.calculator-box {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-md);
    border: 2px solid var(--blue-primary);
    max-width: 720px;
    margin: 30px auto;
}
.calculator-result {
    margin-top: 20px;
    padding: 22px;
    background: var(--blue-pale);
    border-radius: var(--radius-sm);
    text-align: center;
    display: none;
}
.calculator-result.show { display: block; }
.calculator-result strong {
    display: block;
    color: var(--blue-primary);
    font-size: 2.2rem;
    margin: 8px 0;
}
.calculator-note { font-size: 0.85rem; color: var(--text-light); margin-top: 10px; }

/* ===== 404 ===== */
.error-page { padding: 100px 0; text-align: center; }
.error-page h1 { font-size: 6rem; color: var(--blue-primary); margin: 0; }
.error-page h2 { font-size: 1.8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid, .service-detail { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero h1 { font-size: 2.3rem; }
    .section-header h2 { font-size: 1.9rem; }

    /* Tablet/küçük ekranda yatay link sığmadığı için hamburger kullan */
    .menu-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(280px, 92vw);
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 80px 20px 20px;
        gap: 4px;
        box-shadow: -4px 0 12px rgba(0,0,0,0.1);
        transition: right 0.3s;
        z-index: 1001;
        overflow-y: auto;
    }
    .nav-menu.open { right: 0; }
    .nav-menu a { padding: 14px 16px; font-size: 1rem; }
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    .nav-overlay.show { display: block; }

    .navbar-brand-lockup { gap: 1px; max-width: 100%; }
    .navbar-brand--with-logo .navbar-brand-img {
        max-height: 64px;
        max-width: min(280px, 100%);
    }
    .navbar-brand-tagline {
        letter-spacing: 0.06em;
        white-space: normal;
        overflow-wrap: break-word;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .contact-layout .checkbox-grid {
        grid-template-columns: 1fr;
    }
    .contact-actions .btn {
        flex: 1 1 160px;
        justify-content: center;
        min-height: 46px;
    }
    .quote-card.feature-card {
        padding: 24px 20px;
    }
}

@media (max-width: 768px) {
    .topbar {
        padding: 5px 0;
        font-size: 0.78rem;
    }
    .topbar .container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        column-gap: 8px;
        row-gap: 0;
    }
    .topbar-info {
        gap: 8px;
        flex-wrap: nowrap;
        font-size: 0.74rem;
        line-height: 1.25;
    }
    .topbar-phone a {
        max-width: min(220px, 42vw);
    }
    .topbar-lang .fa-globe {
        display: none;
    }
    .topbar-lang {
        gap: 4px;
    }
    .topbar-lang a {
        padding: 2px 6px;
        font-size: 0.7rem;
    }

    .hero { padding: 50px 0; min-height: auto; }
    .hero h1 { font-size: 1.9rem; }
    .hero p { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }

    .section { padding: 50px 0; }
    .section-header { margin-bottom: 30px; }
    .section-header h2 { font-size: 1.7rem; }

    .form-row, .form-row-3 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .cta-box { padding: 36px 24px; }
    .cta-box h3 { font-size: 1.4rem; }

    .stat-item strong { font-size: 2.2rem; }

    .slogan-banner-title { font-size: 1.45rem; }
    .slogan-banner-text { font-size: 0.98rem; }
    .slogan-banner .btn-lg {
        width: 100%;
        max-width: 320px;
    }
    .checkbox-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    h1 { font-size: 1.7rem; }
    .hero h1 { font-size: 1.6rem; }
    .floating-btn { width: 50px; height: 50px; font-size: 1.3rem; }

    .topbar {
        padding: 4px 0;
        font-size: 0.72rem;
    }
    .topbar-info {
        gap: 6px;
        font-size: 0.7rem;
    }
    .topbar-item i {
        margin-right: 4px;
    }
    .topbar-phone a {
        max-width: min(158px, 46vw);
    }
    .topbar-phone-text {
        display: none;
    }
    .topbar-phone a {
        gap: 0;
        justify-content: center;
    }
    .topbar-mail-text {
        display: none;
    }
    .topbar-mail a {
        gap: 0;
        justify-content: center;
    }
    .topbar-lang {
        gap: 3px;
    }
    .topbar-lang a {
        padding: 2px 5px;
        font-size: 0.66rem;
    }

    .page-banner { padding: 48px 0 36px; }
    .page-banner h1 { font-size: 1.85rem; }

    .contact-actions {
        flex-direction: column;
    }
    .contact-actions .btn {
        width: 100%;
        flex: none;
    }
    .calculator-box {
        padding: 22px 16px;
        margin-left: 0;
        margin-right: 0;
    }
    .contact-map-responsive iframe {
        min-height: 240px;
        height: 42vh;
        max-height: 360px;
    }
}

/* Print */
@media print {
    .site-header, .site-footer, .floating-actions, .cookie-banner, .topbar { display: none; }
    body { font-size: 11pt; color: #000; }
}
