:root {
    --orange: #e8521a;
    --orange-dark: #c94512;
    --orange-light: #f15a24;
    --navy: #232931;
    --navy-dark: #1a2028;
    --navy-light: #2d3540;
    --text: #555;
    --text-dark: #232931;
    --text-light: #888;
    --bg: #f4f5f7;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 4px 24px rgba(35, 41, 49, 0.08);
    --radius: 6px;
    --container: 1170px;
    --font: 'Montserrat', 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 15px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s, background 0.2s, border-color 0.2s; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn-randevu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    padding: 12px 26px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    white-space: nowrap;
}
.btn-randevu:hover { background: var(--orange-dark); color: var(--white); }
.btn-randevu.btn-sm { padding: 10px 18px; font-size: 11px; }
.btn-randevu.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.6);
    color: var(--white);
    padding: 12px 26px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}
.btn-outline-light:hover { background: var(--white); color: var(--navy); }

/* Top Bar */
.top-bar {
    background: #f0f1f3;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    color: var(--text);
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar-left { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.top-item { display: inline-flex; align-items: center; gap: 6px; }
.top-item i { color: var(--orange); font-size: 11px; }
.top-item a:hover { color: var(--orange); }
.top-lang { color: var(--text-light); font-size: 12px; }
.top-lang i { color: var(--orange); margin-right: 4px; }

/* Header */
.main-header {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92px;
    gap: 16px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-img {
    display: block;
    height: 76px;
    width: auto;
    max-width: 76px;
    object-fit: contain;
}
.footer-logo-img {
    height: 120px;
    max-width: 120px;
}
.logo-text {
    font-weight: 800;
    font-size: 20px;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}
.logo-text span { color: var(--orange); }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > a,
.nav-dropdown > button {
    padding: 10px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    display: flex;
    align-items: center;
    gap: 4px;
}
.main-nav > a:hover,
.nav-dropdown:hover > button { color: var(--orange); }
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    min-width: 220px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu.wide { width: 680px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.nav-dropdown-menu a {
    display: block;
    padding: 10px 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
    border-radius: 4px;
    text-transform: uppercase;
}
.nav-dropdown-menu a:hover { background: var(--bg); color: var(--orange); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.mobile-toggle {
    display: none;
    width: 44px; height: 44px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: var(--radius);
    font-size: 20px;
    color: var(--navy);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* Hero Home */
.hero-home {
    background: var(--navy);
    background-image: linear-gradient(135deg, rgba(35,41,49,0.92) 0%, rgba(35,41,49,0.78) 100%), var(--hero-bg);
    background-size: cover;
    background-position: center;
    padding: 70px 0 80px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.hero-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-home-content {
    background: rgba(26, 32, 40, 0.75);
    padding: 40px;
    border-radius: var(--radius);
    border-left: 4px solid var(--orange);
}
.hero-home-content h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.hero-lead { font-size: 15px; color: rgba(255,255,255,0.85); margin-bottom: 28px; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-home-visual { position: relative; min-height: 280px; }
.hero-float-img {
    position: absolute;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    max-width: 55%;
    object-fit: cover;
}
.hero-float-img.img-1 { top: 0; right: 10%; z-index: 2; }
.hero-float-img.img-2 { bottom: 0; left: 5%; z-index: 1; max-width: 50%; }

/* Hero Inner */
.hero-inner {
    background: var(--navy);
    padding: 36px 0 44px;
    color: var(--white);
}
.hero-inner h1 {
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 8px;
}
.hero-inner-sub { color: rgba(255,255,255,0.7); margin-top: 8px; font-size: 14px; }
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { opacity: 0.5; }

/* Sections */
.section { padding: 64px 0; }
.section-white { background: var(--white); }
.section-gray { background: var(--bg); }
.section-label {
    display: inline-block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.section-title {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-sub {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 36px;
    font-size: 14px;
}
.text-center-btn { text-align: center; margin-top: 32px; }

/* About Split */
.about-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.about-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
    margin-bottom: 20px;
}
.about-content h2 strong { color: var(--orange); }
.about-content p { margin-bottom: 16px; color: var(--text); line-height: 1.8; }

/* Brands */
.brands-split {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}
.brands-intro h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
    text-transform: uppercase;
}
.brands-intro p { margin-bottom: 20px; color: var(--text); }
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.brand-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.brand-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.brand-card img { max-height: 48px; width: auto; object-fit: contain; }
.brand-card-name { font-size: 11px; font-weight: 700; text-align: center; color: var(--text-dark); text-transform: uppercase; }

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.feature-item { text-align: center; }
.feature-icon {
    width: 84px; height: 84px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 26px;
    color: var(--orange);
    background: var(--white);
}
.feature-item h3 { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.feature-item p { font-size: 12px; color: var(--text-light); }

/* Auto-fill grids (kombi, sertifika, kart) */
.kombi-grid,
.cert-grid,
.cards-grid {
    --grid-count: 4;
}
.kombi-grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-count), minmax(0, 1fr));
    gap: 16px;
}
.cert-grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-count), minmax(0, 1fr));
    gap: 20px;
}
.cert-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
}
.cert-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 200px;
    padding: 12px;
    background: #f8f9fb;
}
.cert-link img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    transition: transform 0.3s;
}
.cert-link:hover img { transform: scale(1.02); }
.cert-item figcaption {
    padding: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Kombi gallery */
.kombi-gallery-section { padding-top: 28px; padding-bottom: 28px; }
.kombi-gallery-inline { padding-top: 16px; padding-bottom: 16px; }
.kombi-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-width: 0;
}
.kombi-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    padding: 12px;
    background: #f8f9fb;
}
.kombi-link img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    transition: transform 0.3s;
}
.kombi-link:hover img { transform: scale(1.03); }

/* Regions */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px 16px;
}
.region-link {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text);
    padding: 6px 0;
}
.region-link i { color: var(--orange); font-size: 11px; margin-top: 4px; flex-shrink: 0; }
.region-link:hover { color: var(--orange); }

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(var(--grid-count, 3), minmax(0, 1fr));
    gap: 24px;
}
.card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s;
}
.card:hover { transform: translateY(-3px); }
.card-img { height: 180px; overflow: hidden; background: var(--bg); }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.card-body p { font-size: 13px; color: var(--text-light); flex: 1; margin-bottom: 16px; }

/* Services Home */
.services-home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-home-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.service-home-card .card-img { height: 160px; }
.service-home-card .card-body { padding: 20px; }

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}
.process-step .step-icon {
    width: 90px; height: 90px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    font-size: 30px;
    color: var(--orange);
    background: var(--white);
}
.process-step h3 { font-size: 14px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--text-light); }

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 16px;
    height: 100%;
}
.testimonial-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: var(--orange);
    flex-shrink: 0;
}
.testimonial-stars { color: #f6ad55; font-size: 11px; margin-bottom: 8px; }
.testimonial-card p { font-size: 13px; font-style: italic; margin-bottom: 10px; }
.testimonial-author { font-weight: 700; font-size: 12px; color: var(--text-dark); }
.testimonial-role { font-size: 11px; color: var(--text-light); }
.review-pagination { margin-top: 24px; position: relative; }

/* CTA */
.cta-banner {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    color: var(--white);
}
.cta-banner h2 { font-size: 26px; font-weight: 800; margin-bottom: 8px; text-transform: uppercase; }
.cta-banner p { margin-bottom: 24px; opacity: 0.85; }

/* Page Layout */
.page-wrap { padding: 36px 0 60px; }
.page-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start;
}
.page-main { min-width: 0; display: flex; flex-direction: column; gap: 20px; }
.content-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}
.content-prose h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 24px 0 12px;
    text-transform: uppercase;
}
.content-prose p { margin-bottom: 14px; line-height: 1.8; color: var(--text); }
.support-line-top h2 { font-size: 20px; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.support-line-bottom h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.support-line-bottom a { color: var(--orange); font-weight: 700; font-size: 18px; }

/* Sidebar */
.page-sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar-search form { display: flex; }
.sidebar-search input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-family: var(--font);
    font-size: 13px;
}
.sidebar-search button {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 0 18px;
    font-weight: 700;
    font-size: 12px;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    font-family: var(--font);
}
.sidebar-search button:hover { background: var(--orange); }
.sidebar-menu {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.sidebar-menu-head {
    background: var(--navy);
    color: var(--white);
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.sidebar-menu-links a {
    display: block;
    padding: 12px 18px;
    font-size: 13px;
    color: var(--text);
    border-bottom: 1px dotted var(--border);
}
.sidebar-menu-links a:last-child { border-bottom: none; }
.sidebar-menu-links a:hover { color: var(--orange); background: var(--bg); }

.sidebar-call {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    border-radius: var(--radius);
    padding: 24px 18px;
}
.sidebar-call i { font-size: 28px; color: var(--orange); margin-bottom: 10px; }
.sidebar-call h3 { font-size: 14px; font-weight: 800; text-transform: uppercase; margin-bottom: 4px; }
.sidebar-call p { font-size: 12px; opacity: 0.75; margin-bottom: 8px; }
.sidebar-call .phone {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin-top: 6px;
}
.sidebar-call .phone:hover { color: var(--orange); }
.sidebar-call .phone-alt { font-size: 15px; opacity: 0.9; }

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow);
}
.sidebar-widget h3 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
}
.sidebar-links { max-height: 320px; overflow-y: auto; }
.sidebar-links a {
    display: block;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text);
    border-left: 3px solid var(--border);
    margin-bottom: 2px;
    text-transform: uppercase;
}
.sidebar-links a:hover,
.sidebar-links a.active { border-color: var(--orange); color: var(--orange); background: var(--bg); }
.sidebar-brands { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.sidebar-brands a {
    font-size: 10px;
    font-weight: 600;
    padding: 8px;
    background: var(--bg);
    border-radius: 4px;
    text-align: center;
    text-transform: uppercase;
}
.sidebar-brands a:hover { background: var(--orange); color: var(--white); }

/* Sub-services, FAQ */
.sub-services h3 { font-size: 16px; font-weight: 800; margin-bottom: 16px; text-transform: uppercase; color: var(--text-dark); }
.sub-services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.sub-services-grid a {
    padding: 11px 14px;
    background: var(--bg);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    display: flex; align-items: center; gap: 8px;
}
.sub-services-grid a i { color: var(--orange); font-size: 10px; }
.sub-services-grid a:hover { background: var(--orange); color: var(--white); }
.sub-services-grid a:hover i { color: var(--white); }
.sub-services-grid a.active { background: var(--navy); color: var(--white); }
.brand-services-grid { grid-template-columns: repeat(3, 1fr); }
.seo-hub-grid { grid-template-columns: repeat(3, 1fr); }

.faq-section h3 { font-size: 17px; font-weight: 800; margin-bottom: 16px; text-transform: uppercase; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; }
.faq-question {
    width: 100%;
    padding: 14px 18px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.faq-question:hover { background: var(--bg); }
.faq-question i { color: var(--orange); }
.faq-answer { display: none; padding: 0 18px 14px; font-size: 14px; color: var(--text); line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* Contact */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.contact-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}
.contact-card i { font-size: 28px; color: var(--orange); margin-bottom: 12px; }
.contact-card h3 { font-size: 14px; font-weight: 800; margin-bottom: 10px; text-transform: uppercase; }
.contact-card a { display: block; color: var(--orange); font-weight: 600; margin-bottom: 4px; }
.contact-card a:hover { color: var(--orange-dark); }

.empty-notice {
    text-align: center;
    padding: 48px 24px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 2px dashed var(--border);
}
.empty-notice i { font-size: 40px; color: var(--orange); margin-bottom: 16px; }
.empty-notice p { color: var(--text-light); max-width: 480px; margin: 0 auto; }

.error-box { text-align: center; padding: 20px; }
.error-box i { font-size: 40px; color: #e53e3e; margin-bottom: 12px; }
.error-box h2 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }

/* Footer */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    padding: 56px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 140px 1.4fr 1fr 1.2fr;
    gap: 36px;
    margin-bottom: 36px;
}
.footer-logo .logo-text { color: var(--white); }
.footer-about h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.footer-about p { font-size: 13px; line-height: 1.75; }
.footer-col h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.footer-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 5px 0;
    color: rgba(255,255,255,0.7);
}
.footer-col a i { color: var(--orange); font-size: 10px; }
.footer-col a:hover { color: var(--orange); }
.footer-contact-box {
    background: var(--navy-light);
    border-radius: var(--radius);
    padding: 24px;
}
.footer-contact-box h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.footer-contact-box li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    align-items: flex-start;
}
.footer-contact-box i { color: var(--orange); margin-top: 3px; width: 16px; }
.footer-contact-box a:hover { color: var(--orange); }
.footer-legal {
    background: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: var(--radius);
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.footer-legal strong { color: var(--white); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 95%; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 44px; height: 44px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
}

/* Mobile */
.back-to-top {
    position: fixed;
    bottom: 80px; right: 20px;
    width: 44px; height: 44px;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 90;
    box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--navy);
    z-index: 95;
    border-top: 2px solid var(--orange);
}
.mobile-sticky-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    gap: 4px;
}
.mobile-sticky-bar a i { font-size: 18px; color: var(--orange); }
.mobile-sticky-bar a + a { border-left: 1px solid rgba(255,255,255,0.1); }

.mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 150;
    opacity: 0; visibility: hidden;
    transition: all 0.3s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-panel {
    position: fixed;
    top: 0; right: 0;
    width: 300px; max-width: 85vw;
    height: 100%;
    background: var(--white);
    z-index: 160;
    transform: translateX(100%);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-panel.open { transform: translateX(0); }
.mobile-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-weight: 800;
    text-transform: uppercase;
}
.mobile-panel-close {
    width: 36px; height: 36px;
    border: 1px solid var(--border);
    background: none;
    border-radius: 4px;
    cursor: pointer;
}
.mobile-panel a, .mobile-panel button.mob-acc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-bottom: 1px solid var(--border);
    background: none;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
}
.mobile-panel a:hover { background: var(--bg); color: var(--orange); }
.mobile-acc-body { display: none; background: var(--bg); padding: 8px; }
.mobile-acc-body.open { display: block; }
.mobile-acc-body a { padding: 10px 16px; font-size: 12px; border: none; }
.mobile-panel-cta { padding: 20px; }

.custom-scrollbar::-webkit-scrollbar { width: 5px; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
.custom-scrollbar::-webkit-scrollbar-track { background: var(--bg); }

.tw-scope { font-size: 15px; }
.swiper-pagination-bullet { background: var(--orange); opacity: 0.4; }
.swiper-pagination-bullet-active { opacity: 1; }

/* Responsive */
@media (max-width: 1024px) {
    .top-bar { display: none; }
    .hero-home-grid { grid-template-columns: 1fr; }
    .hero-home-visual { min-height: 200px; margin-top: 20px; }
    .about-split-grid, .brands-split { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .kombi-grid, .cert-grid { grid-template-columns: repeat(min(var(--grid-count, 4), 3), minmax(0, 1fr)); }
    .regions-grid { grid-template-columns: repeat(3, 1fr); }
    .cards-grid { grid-template-columns: repeat(min(var(--grid-count, 3), 2), minmax(0, 1fr)); }
    .services-home-grid { grid-template-columns: repeat(2, 1fr); }
    .page-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .main-nav { display: none; }
    .header-actions .btn-randevu { display: none; }
    .mobile-toggle { display: flex; }
}

@media (max-width: 768px) {
    .about-image {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    .about-image img {
        border-radius: 0;
        box-shadow: none;
    }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .kombi-grid, .cert-grid { grid-template-columns: repeat(min(var(--grid-count, 4), 2), minmax(0, 1fr)); }
    .regions-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-grid { grid-template-columns: repeat(min(var(--grid-count, 3), 2), minmax(0, 1fr)); }
    .services-home-grid, .process-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .sub-services-grid, .brand-services-grid, .seo-hub-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { display: flex; justify-content: center; margin-bottom: 4px; }
    .footer-logo-img { height: 140px; max-width: 140px; }
    .mobile-sticky-bar { display: flex; }
    body { padding-bottom: 60px; }
    .content-card { padding: 22px; }
}

@media (max-width: 480px) {
    .cert-grid, .kombi-grid, .cards-grid { grid-template-columns: 1fr; }
    .hero-home-content { padding: 24px; }
}
