/* ============================================
   Onur Vidanjör - Professional CSS
   Modern, Enhanced with Advanced Animations
   Mobile-first, responsive design
   ============================================ */

/* === Reset & Base === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Header / mobil menü — JS main.js ile aynı değer */
    --nav-mobile-max: 991px;
    --primary: #0066cc;
    --primary-dark: #004d99;
    --primary-light: #3385d6;
    --secondary: #ff6b35;
    --secondary-dark: #e85a2a;
    --accent: #ffd23f;
    --success: #28a745;
    --success-dark: #218838;
    --whatsapp: #25d366;
    --whatsapp-dark: #1ebe5d;
    --white: #ffffff;
    --gray-50: #fafbfc;
    --gray-100: #f5f7fa;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-400: #cbd5e0;
    --gray-500: #a0aec0;
    --gray-600: #718096;
    --gray-700: #4a5568;
    --gray-800: #2d3748;
    --gray-900: #1a202c;
    --text: #2d3748;
    --text-light: #4a5568;
    --text-muted: #718096;
    --border: #e2e8f0;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(0, 102, 204, 0.3);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font);
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    padding-bottom: 0;
}

/* === Custom Scrollbar === */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* === Selection === */
::selection {
    background: var(--primary);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary);
    color: var(--white);
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--gray-900);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* === Container === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Utility === */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hide-mobile {
    display: inline;
}

/* === Animations === */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(0, 102, 204, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(0, 102, 204, 0.8), 0 0 30px rgba(0, 102, 204, 0.6);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes waterWave {
    0% {
        transform: translateX(0) translateY(0);
    }

    25% {
        transform: translateX(-5px) translateY(5px);
    }

    50% {
        transform: translateX(0) translateY(10px);
    }

    75% {
        transform: translateX(5px) translateY(5px);
    }

    100% {
        transform: translateX(0) translateY(0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* === Header === */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 10050;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 0;
    gap: 12px;
    min-height: 72px;
}

@media (min-width: 992px) {
    .header-inner {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        column-gap: clamp(12px, 2vw, 28px);
        row-gap: 0;
        flex-wrap: nowrap;
        min-height: 76px;
    }

    .logo {
        justify-self: start;
        max-width: min(300px, 32vw);
        min-width: 0;
        flex-shrink: 0;
    }

    .logo-link {
        max-width: 100%;
    }

    .main-nav {
        justify-self: stretch;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .main-nav>ul {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 2px;
        row-gap: 0;
        width: 100%;
        min-width: 0;
    }

    /* Tek satır: menü ikonlarını yalnızca geniş ekranda göster */
    .main-nav ul li a>i.fas:not(.nav-chevron) {
        display: none;
    }

    .main-nav ul li a {
        gap: 4px;
        padding: 8px 10px;
        font-size: 0.82rem;
        white-space: nowrap;
        letter-spacing: -0.01em;
    }

    .header-phone-label {
        display: none;
    }

    .header-phone-number {
        font-size: 0.95rem;
    }

    .header-actions {
        justify-self: end;
        flex-shrink: 0;
        min-width: fit-content;
        gap: 8px;
    }
}

/* Çok geniş ekranda bağlantı ikonları geri */
@media (min-width: 1680px) {
    .main-nav ul li a>i.fas:not(.nav-chevron) {
        display: inline-block;
    }

    .main-nav ul li a {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .header-phone-label {
        display: block;
    }
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 0;
    max-width: min(62vw, 300px);
}

@media (min-width: 992px) {
    .logo {
        max-width: min(300px, 32vw);
    }
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    line-height: 0;
}

.logo img {
    display: block;
    height: auto;
    width: 100%;
    max-height: 62px;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
    vertical-align: middle;
    transition: var(--transition);
}

@media (min-width: 992px) {
    .logo img {
        max-height: 72px;
    }
}

.logo:hover img {
    transform: scale(1.02);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 6px;
}

.main-nav ul li a {
    padding: 11px 16px;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 0.94rem;
    border-radius: var(--radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.main-nav ul li a:hover::after,
.main-nav ul li.active a::after {
    width: 80%;
}

.nav-chevron {
    font-size: 0.65rem;
    transition: var(--transition);
}

@media (min-width: 992px) {

    .has-dropdown:hover > a .nav-chevron,
    .has-dropdown:focus-within > a .nav-chevron {
        transform: rotate(180deg);
    }
}

.main-nav ul li a:hover,
.main-nav ul li.active a {
    color: var(--primary);
    background: rgba(30, 58, 95, 0.06);
}

/* Dropdown — hizmetler (sütun) ve bölgeler (ızgara) ayrı */
.has-dropdown {
    position: relative;
}

.has-dropdown .dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    padding: 10px;
    z-index: 1200;
    border: 1px solid var(--gray-200);
    animation: fadeInDown 0.22s ease;
    list-style: none;
    margin: 0;
}

.has-dropdown:hover .dropdown-services,
.has-dropdown:focus-within .dropdown-services {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 280px;
    max-width: min(92vw, 340px);
    max-height: min(72vh, 440px);
    overflow-y: auto;
    overflow-x: hidden;
}

.has-dropdown:hover .dropdown-locations,
.has-dropdown:focus-within .dropdown-locations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 10px;
    min-width: min(92vw, 420px);
    max-width: min(94vw, 680px);
    max-height: min(75vh, 460px);
    overflow-y: auto;
    overflow-x: hidden;
    align-content: start;
}

@media (min-width: 1200px) {
    .has-dropdown:hover .dropdown-locations,
    .has-dropdown:focus-within .dropdown-locations {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-width: 560px;
    }
}

.dropdown-locations .dropdown-locations-footer {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-200);
}

.dropdown-locations .dl-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    font-size: 0.86rem;
    font-weight: 600;
    border-radius: var(--radius);
    background: var(--gray-50);
    color: var(--primary);
    flex: 1 1 auto;
    min-width: 140px;
    justify-content: center;
}

.dropdown-locations .dl-all-link:hover {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-dark);
    transform: none;
}

.has-dropdown .dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    font-size: 0.86rem;
    border-radius: var(--radius);
    color: var(--gray-700);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.has-dropdown .dropdown-locations>li:not(.dropdown-locations-footer) a {
    white-space: nowrap;
}

.has-dropdown .dropdown li a i {
    color: var(--primary);
    font-size: 0.82rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
}

.has-dropdown .dropdown li a:hover {
    background: var(--gray-50);
    color: var(--primary);
    transform: translateX(3px);
}

/* Mobilde üst bardaki kompakt arama (WhatsApp solunda) */
.header-icon-call {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.35);
    transition: var(--transition);
}

.header-icon-call:hover {
    background: var(--secondary-dark);
    color: var(--white);
    transform: scale(1.06);
}

@media (max-width: 991px) {
    .header-icon-call {
        display: flex;
    }
}

@media (min-width: 992px) {
    .header-icon-call {
        display: none !important;
    }
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-phone a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-900);
    transition: var(--transition);
}

.header-phone a:hover {
    color: var(--primary);
}

.header-phone-icon {
    width: 42px;
    height: 42px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    animation: phone-ring 2s ease-in-out infinite;
}

.header-phone-text {
    display: flex;
    flex-direction: column;
}

.header-phone-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.header-phone-number {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.header-whatsapp {
    width: 42px;
    height: 42px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.header-whatsapp:hover {
    background: var(--whatsapp-dark);
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
}

@keyframes phone-ring {

    0%,
    100% {
        transform: rotate(0);
    }

    10%,
    30% {
        transform: rotate(15deg);
    }

    20%,
    40% {
        transform: rotate(-15deg);
    }

    50% {
        transform: rotate(0);
    }
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: relative;
    z-index: 5;
}

.mobile-toggle span {
    width: 26px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 3px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobil menü karartması — header içinde düşük z-index; .container üstte (menü tıklanır) */
.header .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgba(15, 23, 42, 0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.header .nav-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile CTA (inside nav) */
.mobile-cta {
    display: none;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
    display: none;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
    justify-content: center;
    line-height: 1.4;
    font-family: var(--font);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.btn-success {
    background: var(--success);
    color: var(--white);
    border-color: var(--success);
}

.btn-success:hover {
    background: var(--success-dark);
    color: var(--white);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

.pulse-btn {
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(30, 58, 95, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(30, 58, 95, 0);
    }
}

/* === Hero Slider === */
.hero-slider {
    position: relative;
    overflow-x: hidden;
    background: var(--primary-dark);
}

/* Slayt + oklar + noktalar — özellik çubuğu bundan sonra, çakışma olmaz */
.hero-slider-main {
    position: relative;
    overflow: hidden;
    background: var(--primary-dark);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 520px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    position: relative;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(21, 44, 74, 0.92) 0%, rgba(30, 58, 95, 0.85) 100%);
    z-index: 1;
}

.slide-bg-1 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.slide-bg-2 {
    background: linear-gradient(135deg, #1a3352 0%, #0d1f33 100%);
}

.slide-bg-3 {
    background: linear-gradient(135deg, #1e4d6f 0%, #0f2841 100%);
}

/* Fotoğraflı slider: arka plan görseli + okunabilir overlay */
.slide.slide-has-bgimg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide.slide-has-bgimg .slide-overlay {
    background: linear-gradient(120deg, rgba(8, 22, 42, 0.92) 0%, rgba(13, 40, 70, 0.78) 45%, rgba(10, 28, 48, 0.65) 100%);
}

.slide.slide-has-bgimg::before,
.slide.slide-has-bgimg::after {
    opacity: 0.25;
}

/* Animated background elements */
.slide::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.slide::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    z-index: 1;
    animation: float 8s ease-in-out infinite reverse;
}

/* Dalga efekti yalnızca slayt alanının altında */
.hero-slider-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    pointer-events: none;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    z-index: 3;
    animation: waterWave 3s ease-in-out infinite;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 72px 52px 96px 52px;
    color: var(--white);
}

.slide-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.slide-content h1 span {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.slide-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    animation: shimmer 2s infinite;
}

.slide-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 28px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    z-index: 12;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.28);
    border-color: var(--white);
    transform: translateY(-50%) scale(1.06);
}

.slider-prev {
    left: 12px;
}

.slider-next {
    right: 12px;
}

.slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 12;
    padding: 0 12px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
    animation: pulse 1s infinite;
}

/* Hero Features Bar — slaytın altında ayrı blok (başlıkla çakışmaz) */
.hero-features-bar {
    position: relative;
    width: 100%;
    background: rgba(10, 22, 38, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 18px 0 24px;
    z-index: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 0;
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px 20px;
    flex-wrap: wrap;
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--white);
    font-size: 0.88rem;
    transition: var(--transition);
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-feature:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.hero-feature i {
    color: var(--accent);
    font-size: 1rem;
    animation: pulse 2s infinite;
}

/* === Quick Contact Bar === */
.quick-contact-bar {
    background: var(--gray-50);
    padding: 32px 0 40px;
    margin-top: 0;
    position: relative;
    z-index: auto;
    clear: both;
}

@media (min-width: 992px) {
    .hero-features-bar {
        margin-bottom: 28px;
    }

    .quick-contact-bar {
        padding-top: 8px;
        padding-bottom: 48px;
    }
}

.quick-contact-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    position: relative;
    margin-top: 0;
    isolation: isolate;
}

.quick-contact-item a {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 32px 35px;
    color: var(--gray-800);
    transition: var(--transition-smooth);
    border-right: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.quick-contact-item a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.08), transparent);
    transition: var(--transition);
}

.quick-contact-item a:hover::before {
    left: 100%;
}

.quick-contact-item:last-child a {
    border-right: none;
}

.quick-contact-item a:hover {
    background: var(--gray-50);
    color: var(--primary);
    transform: none;
    box-shadow: inset 0 0 0 1px rgba(0, 102, 204, 0.12);
}

.qc-whatsapp a:hover {
    background: rgba(37, 211, 102, 0.08);
}

.qc-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

.quick-contact-item a:hover .qc-icon {
    transform: rotateY(360deg) scale(1.1);
}

.qc-whatsapp .qc-icon {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.qc-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 3px;
}

.qc-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gray-900);
}

/* === Sections === */
.section {
    padding: 70px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    padding: 5px 15px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--primary);
    position: relative;
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    opacity: 0.3;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* === Services Grid === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 0 0 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition-smooth);
    text-align: center;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: visible;
}

.service-card-thumb {
    position: relative;
    width: 100%;
    margin: 0 0 20px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--gray-100);
    isolation: isolate;
}

.service-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-thumb img {
    transform: scale(1.06);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

/* İkon yalnızca kapak görseli varken görsele bindirilir; aksi halde yarım daire kesilme hatası oluşur */
.service-card .service-icon {
    margin-top: 12px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.service-card--with-thumb .service-icon {
    margin-top: -44px;
    box-shadow: 0 12px 32px rgba(13, 40, 70, 0.28);
    border: 3px solid var(--white);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
    position: relative;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: ripple 1.5s infinite;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.service-icon i {
    font-size: 1.6rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    padding: 0 22px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.93rem;
    margin-bottom: 15px;
    padding: 0 22px;
}

.service-card .service-link {
    margin: 0 22px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
    color: var(--secondary);
}

.service-link--block {
    display: inline-flex;
    justify-content: center;
    margin-top: 6px;
    padding: 10px 8px 0;
    min-height: 44px;
    align-items: center;
}

/* Hizmet detay — ilişkili hizmetler */
.related-services-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 55%, var(--gray-50) 100%);
    position: relative;
}

.related-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    opacity: 0.85;
}

.related-services-section__head .section-tag {
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary);
    border: 1px solid rgba(0, 102, 204, 0.2);
}

.related-services-grid {
    gap: 28px;
}

.service-card--related {
    box-shadow: 0 12px 40px rgba(15, 40, 70, 0.08);
    border-color: rgba(0, 102, 204, 0.12);
}

.service-card--related:hover {
    box-shadow: 0 20px 50px rgba(15, 40, 70, 0.14);
}

/* === Services Detailed (Services Page) === */
.services-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.service-detailed-card {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 0;
    transition: var(--transition-smooth);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.sdc-thumb {
    flex: 1 1 260px;
    min-height: 200px;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    background: var(--gray-100);
}

.sdc-thumb img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.service-detailed-card:hover .sdc-thumb img {
    transform: scale(1.04);
}

.service-detailed-card .sdc-icon,
.service-detailed-card .sdc-content {
    padding: 28px 0;
}

.service-detailed-card .sdc-icon {
    align-self: flex-start;
    margin-left: 28px;
}

.service-detailed-card .sdc-content {
    flex: 1 1 280px;
    min-width: 0;
    padding-right: 32px;
    padding-bottom: 32px;
}

@media (min-width: 769px) {
    .service-detailed-card {
        flex-wrap: nowrap;
    }

    .sdc-thumb {
        flex: 0 0 280px;
        max-width: 280px;
        min-height: 100%;
    }
}

.service-detailed-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    transform: scaleY(0);
    transition: var(--transition);
}

.service-detailed-card:hover::before {
    transform: scaleY(1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-detailed-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
    transform: translateX(5px);
}

.sdc-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.service-detailed-card:hover .sdc-icon {
    transform: scale(1.1);
}

.sdc-content h2 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.sdc-content p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.sdc-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.sdc-features li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    color: var(--text);
    background: var(--gray-50);
    padding: 5px 12px;
    border-radius: 50px;
    transition: var(--transition);
}

.sdc-features li:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.sdc-features li i {
    color: var(--success);
    font-size: 0.8rem;
}

.sdc-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* === Service Single Page === */
.service-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    animation: waterWave 4s ease-in-out infinite;
}

.service-hero-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.2rem;
    color: var(--accent);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.service-hero h1 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 12px;
    animation: fadeInUp 0.8s ease;
}

.service-hero-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 25px;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.service-hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.service-hero--visual {
    background-image: linear-gradient(125deg, rgba(6, 28, 52, 0.94) 0%, rgba(13, 52, 88, 0.82) 42%, rgba(8, 24, 44, 0.75) 100%),
        var(--service-hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-hero--visual::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 45%);
    opacity: 1;
}

.service-hero--visual .service-hero-content {
    position: relative;
    z-index: 2;
}

.service-gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 0 0 28px;
}

.service-gallery-mosaic__item {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4 / 3;
    background: var(--gray-100);
}

.service-gallery-mosaic__item:first-child {
    grid-column: span 2;
    aspect-ratio: 21 / 9;
}

.service-gallery-mosaic__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.service-gallery-mosaic__item:hover img {
    transform: scale(1.03);
}

@media (max-width: 576px) {
    .service-gallery-mosaic {
        grid-template-columns: 1fr;
    }

    .service-gallery-mosaic__item:first-child {
        grid-column: span 1;
        aspect-ratio: 16 / 9;
    }
}

.service-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.service-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.service-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-description {
    line-height: 1.9;
    font-size: 1.02rem;
    margin-bottom: 30px;
}

.service-description p {
    margin-bottom: 15px;
}

.service-features-section {
    margin-bottom: 35px;
}

.service-features-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--success);
    font-size: 1rem;
}

.service-why-section {
    margin-bottom: 30px;
}

.service-why-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.service-why-item {
    text-align: center;
    padding: 25px 18px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.service-why-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.service-why-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-why-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.service-why-item p {
    color: var(--text-light);
    font-size: 0.88rem;
    margin: 0;
}

.service-cta-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 35px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.service-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.scb-content {
    position: relative;
    z-index: 1;
}

.scb-content h3 {
    color: var(--white);
    margin-bottom: 5px;
}

.scb-content p {
    opacity: 0.9;
    margin: 0;
}

.scb-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

/* Service Sidebar */
.sidebar-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 25px;
    transition: var(--transition);
}

.sidebar-box:hover {
    box-shadow: var(--shadow);
}

.sidebar-box h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

.sidebar-contact {
    background: var(--gray-50);
    border-color: var(--primary-light);
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition);
}

.sidebar-contact-item:hover {
    padding-left: 5px;
}

.sidebar-contact-item:last-child {
    border-bottom: none;
}

.sidebar-contact-item i {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.sidebar-whatsapp i {
    background: var(--whatsapp);
}

.sc-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sc-value {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.93rem;
}

a.sc-value:hover {
    color: var(--secondary);
}

.sidebar-services {
    list-style: none;
}

.sidebar-services li {
    border-bottom: 1px solid var(--gray-100);
}

.sidebar-services li:last-child {
    border-bottom: none;
}

.sidebar-services li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text);
    font-size: 0.9rem;
    transition: var(--transition);
}

.sidebar-services li a i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    font-size: 0.85rem;
}

.sidebar-services li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.sidebar-text {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* CTA Info Section (Services page) */
.cta-info-section {
    background: var(--gray-50);
}

.cta-info-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-info-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cta-info-content p {
    color: var(--text-light);
    margin: 0;
}

.cta-info-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* === Why Us === */
.why-us-section {
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 102, 204, 0.03));
    pointer-events: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-us-content h2 {
    margin-bottom: 30px;
}

.why-us-content h2 span {
    color: var(--primary);
}

.why-us-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-us-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.why-us-item:hover {
    transform: translateX(10px);
}

.why-us-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.why-us-item:hover .why-us-icon {
    background: var(--secondary);
    transform: rotate(5deg);
}

.why-us-icon i {
    color: var(--white);
    font-size: 1.3rem;
}

.why-us-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.why-us-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.why-us-cta {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.stats-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.stats-box::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
    animation: rotate 20s linear infinite;
}

.stats-box .stat {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stats-box .stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stats-box .stat-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

.stats-box .stat-text {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* Ana sayfa istatistik bandı (koyu zemin — sarı metin beyaz üzerinde kalmaz) */
.stats-section {
    padding: 56px 0;
    background: linear-gradient(145deg, #0c2138 0%, var(--primary-dark) 45%, #0a1628 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 102, 204, 0.18), transparent 55%);
    pointer-events: none;
}

.stats-section .container {
    position: relative;
    z-index: 1;
}

.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 20px;
    text-align: center;
    align-items: start;
}

.stats-section .stat-item {
    padding: 20px 12px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stats-section .stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.stats-section .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.stats-section .stat-number::after {
    content: none;
}

.stats-section .stat-label {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.35;
    text-transform: none;
    letter-spacing: 0.02em;
}

.stats-section--visual[style*='--stats-bg']::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--stats-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.16;
    mix-blend-mode: luminosity;
    pointer-events: none;
}

.stats-section--visual .container {
    z-index: 2;
}

/* Neden biz — görsel + rozet (eksik stiller düzeltilir) */
.why-us-image {
    position: relative;
}

.why-us-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--gray-200);
    aspect-ratio: 4 / 3;
    max-height: 420px;
}

.why-us-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 16px 22px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.experience-badge .exp-years {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .exp-text {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.95;
    margin-top: 4px;
    letter-spacing: 0.03em;
}

/* === Location Grid === */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.location-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 20px 15px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.location-card:hover::before {
    transform: scaleX(1);
}

.location-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    color: var(--primary);
}

.location-card i {
    color: var(--secondary);
    font-size: 1.3rem;
    transition: var(--transition);
}

.location-card:hover i {
    transform: scale(1.2);
    color: var(--primary);
}

.location-card span {
    font-weight: 600;
    font-size: 0.95rem;
}

.location-card small {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Districts Grid */
.districts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.district-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.district-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.district-card-header {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--gray-50);
    transition: var(--transition);
}

.district-card:hover .district-card-header {
    background: var(--primary);
}

.district-card:hover .district-card-header i,
.district-card:hover .district-card-header h3 {
    color: var(--white);
}

.district-card-header i {
    color: var(--secondary);
    font-size: 1.3rem;
    transition: var(--transition);
}

.district-card-header h3 {
    font-size: 1.1rem;
    margin: 0;
    transition: var(--transition);
}

.district-card-body {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.district-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.district-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* === Blog === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-grid-large {
    grid-template-columns: repeat(2, 1fr);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-smooth);
    border: 1px solid var(--gray-200);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-card-image {
    overflow: hidden;
    height: 220px;
    position: relative;
}

.blog-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5));
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
}

.blog-card:hover .blog-card-image::before {
    opacity: 1;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 25px;
}

.blog-card-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.blog-card-content h2,
.blog-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-content h2 a,
.blog-card-content h3 a {
    color: var(--gray-900);
}

.blog-card-content h2 a:hover,
.blog-card-content h3 a:hover {
    color: var(--primary);
}

.blog-card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 10px;
    color: var(--secondary);
}

/* Blog Single */
.blog-single {
    max-width: 800px;
    margin: 0 auto;
}

.blog-single-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 25px;
}

.blog-single-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-single-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.blog-single h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.blog-excerpt {
    font-size: 1.1rem;
    color: var(--text-light);
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 30px;
}

.blog-single-content {
    line-height: 1.9;
    font-size: 1.05rem;
}

.blog-single-content h2,
.blog-single-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-single-content p {
    margin-bottom: 18px;
}

.blog-single-content img {
    border-radius: var(--radius);
    margin: 20px 0;
}

.blog-single-footer {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--gray-200);
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-buttons span {
    font-weight: 600;
}

.share-btn {
    padding: 8px 18px;
    border-radius: 50px;
    color: var(--white);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.share-facebook {
    background: #3b5998;
}

.share-twitter {
    background: #1da1f2;
}

.share-whatsapp {
    background: #25d366;
}

.share-btn:hover {
    opacity: 0.85;
    color: var(--white);
}

.related-posts {
    margin-top: 60px;
}

.related-posts h2 {
    margin-bottom: 30px;
}

/* === Content Grid (Sidebar) === */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.content-box {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.content-box:hover {
    box-shadow: var(--shadow);
}

.content-box h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gray-200);
}

.content-box p {
    line-height: 1.8;
}

/* Mini Services Grid */
.mini-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mini-service {
    text-align: center;
    padding: 25px 15px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
}

.mini-service:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.mini-service i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
    transition: var(--transition);
}

.mini-service:hover i {
    transform: scale(1.2);
    color: var(--secondary);
}

.mini-service h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.mini-service p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* Neighborhoods Grid */
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.neighborhood-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text);
    transition: var(--transition);
}

.neighborhood-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--gray-50);
    transform: translateX(5px);
}

.neighborhood-link i {
    color: var(--secondary);
    font-size: 0.8rem;
}

/* CTA Sidebar */
.cta-sidebar {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-sidebar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    animation: rotate 15s linear infinite;
}

.cta-sidebar h3 {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.sidebar-phone {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
    margin: 15px 0;
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
}

.sidebar-phone:hover {
    color: var(--white);
    transform: scale(1.05);
}

.cta-sidebar p {
    opacity: 0.9;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    border-bottom: 1px solid var(--gray-100);
}

.sidebar-links li:last-child {
    border: none;
}

.sidebar-links li a {
    display: block;
    padding: 8px 0;
    color: var(--text);
    font-size: 0.9rem;
    transition: var(--transition);
}

.sidebar-links li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

/* === Contact === */
.contact-methods-section {
    padding: 70px 0 30px;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contact-method-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 35px 25px;
    border-radius: var(--radius-xl);
    transition: var(--transition-smooth);
    border: 2px solid var(--gray-200);
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(0, 102, 204, 0.03));
    opacity: 0;
    transition: var(--transition);
}

.contact-method-card:hover::before {
    opacity: 1;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.cm-phone {
    border-color: var(--primary);
}

.cm-phone:hover {
    background: rgba(30, 58, 95, 0.03);
}

.cm-whatsapp {
    border-color: var(--whatsapp);
}

.cm-whatsapp:hover {
    background: rgba(37, 211, 102, 0.03);
    color: var(--gray-900);
}

.cm-email {
    border-color: var(--accent);
}

.cm-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.contact-method-card:hover .cm-icon {
    transform: scale(1.1) rotate(10deg);
}

.cm-phone .cm-icon {
    background: var(--primary);
    color: var(--white);
}

.cm-whatsapp .cm-icon {
    background: var(--whatsapp);
    color: var(--white);
}

.cm-email .cm-icon {
    background: var(--accent);
    color: var(--white);
}

.contact-method-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.cm-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    display: block;
    margin-bottom: 4px;
}

.cm-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 15px;
}

.cm-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.cm-whatsapp .cm-btn {
    color: var(--whatsapp-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-section h2,
.contact-form-section h2 {
    margin-bottom: 25px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-info-card-lg {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-info-card-lg:hover {
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.ci-whatsapp {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.contact-info-card-lg i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    transition: var(--transition);
}

.contact-info-card-lg:hover i {
    background: var(--primary);
    color: var(--white);
}

.ci-whatsapp i {
    color: var(--whatsapp);
}

.ci-whatsapp:hover i {
    background: var(--whatsapp);
    color: var(--white);
}

.contact-info-card-lg h3 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.contact-info-card-lg a,
.contact-info-card-lg p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

.contact-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-home-info h2 {
    margin-bottom: 15px;
}

.contact-home-info h2 span {
    color: var(--primary);
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow);
    transform: translateX(5px);
}

.contact-info-whatsapp {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.15);
}

.contact-info-card i {
    font-size: 1.3rem;
    color: var(--primary);
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    transition: var(--transition);
}

.contact-info-card:hover i {
    background: var(--primary);
    color: var(--white);
}

.contact-info-whatsapp i {
    color: var(--whatsapp);
}

.contact-info-whatsapp:hover i {
    background: var(--whatsapp);
}

.contact-info-card h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.contact-info-card a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-home-form {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-home-form:hover {
    box-shadow: var(--shadow-lg);
}

.contact-home-form h3 {
    margin-bottom: 20px;
}

.contact-form-alt {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.contact-form-alt p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.cfa-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* === Forms === */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--gray-800);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* === Breadcrumb === */
.breadcrumb-wrapper {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 0;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    gap: 5px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb li::after {
    content: '/';
    margin: 0 8px;
    color: var(--gray-400);
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb li a {
    color: var(--text-light);
    transition: var(--transition);
}

.breadcrumb li a:hover {
    color: var(--primary);
}

.breadcrumb li.active {
    color: var(--primary);
    font-weight: 500;
}

/* === Page Header === */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,218.7C672,235,768,245,864,234.7C960,224,1056,192,1152,181.3C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.page-header h1 span {
    color: var(--accent);
}

.page-header p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.page-header-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.page-header--vidanjor {
    background-image: linear-gradient(118deg, rgba(7, 32, 58, 0.94) 0%, rgba(13, 52, 88, 0.88) 50%, rgba(8, 26, 48, 0.82) 100%),
        var(--page-header-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header--vidanjor::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25) 0%, transparent 55%);
    opacity: 1;
}

/* Location Hero */
.location-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.location-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.08)" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    animation: waterWave 4s ease-in-out infinite;
}

.location-hero-sm {
    padding: 50px 0;
}

.location-hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
}

.location-hero h1 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.location-hero h1 span {
    color: var(--accent);
}

.location-hero p {
    opacity: 0.9;
    margin-bottom: 25px;
}

/* === Page Content === */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

.page-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-content h3 {
    margin-top: 25px;
    margin-bottom: 12px;
}

/* === Pagination === */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a {
    padding: 10px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

.pagination a:hover,
.pagination a.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* === Pre-Footer CTA === */
.pre-footer-cta {
    background: var(--secondary);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.pre-footer-cta::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

.pre-footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.pre-footer-cta-content h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 8px;
}

.pre-footer-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.05rem;
}

.pre-footer-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* === Footer === */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.footer-top {
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo a {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.12);
}

.footer-logo img {
    height: auto;
    max-height: 58px;
    width: 100%;
    max-width: 300px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 15px;
    opacity: 1;
    transition: var(--transition);
}

.footer-logo:hover img {
    transform: scale(1.02);
    opacity: 1;
}

.footer-badges {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
}

.footer-badge i.fa-shield-alt {
    color: var(--accent);
}

.footer-badge i.fa-certificate {
    color: var(--success);
}

.footer-hours-highlight {
    color: var(--success);
    font-weight: 700;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-700);
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: var(--gray-400);
    font-size: 0.88rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-col ul li a i {
    font-size: 0.7rem;
    color: var(--gray-600);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-all-link {
    color: var(--accent) !important;
    margin-top: 5px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px) rotate(10deg);
}

/* Footer Contact */
.footer-contact {
    list-style: none !important;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px !important;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-contact-item:hover .footer-contact-icon {
    background: var(--primary);
    color: var(--white);
}

.footer-whatsapp-item .footer-contact-icon,
.whatsapp-icon {
    color: var(--whatsapp);
}

.footer-whatsapp-item:hover .footer-contact-icon {
    background: var(--whatsapp);
}

.footer-contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-contact-value {
    font-size: 0.9rem;
    color: var(--gray-300);
}

a.footer-contact-value:hover {
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: var(--gray-500);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* === Fixed CTA (Desktop) === */
.fixed-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.fixed-cta.visible {
    opacity: 1;
    visibility: visible;
}

.cta-phone,
.cta-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    font-size: 0.93rem;
    position: relative;
    overflow: hidden;
}

.cta-phone::before,
.cta-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.cta-phone:hover::before,
.cta-whatsapp:hover::before {
    width: 200px;
    height: 200px;
}

.cta-phone {
    background: var(--secondary);
    animation: pulse 2s infinite;
}

.cta-whatsapp {
    background: var(--whatsapp);
}

.cta-phone:hover,
.cta-whatsapp:hover {
    transform: scale(1.05) translateY(-2px);
    color: var(--white);
    box-shadow: var(--shadow-xl);
}

.cta-phone i,
.cta-whatsapp i {
    font-size: 1.15rem;
    position: relative;
    z-index: 1;
}

.cta-phone span,
.cta-whatsapp span {
    position: relative;
    z-index: 1;
}

/* === Back to Top === */
.back-to-top {
    position: fixed;
    bottom: 160px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px) scale(1.1);
}

/* === Alerts === */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.95rem;
    animation: fadeIn 0.5s ease;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* === 404 === */
.error-404 {
    text-align: center;
    padding: 80px 0;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-icon i {
    font-size: 4rem;
    color: var(--accent);
    animation: bounce 2s infinite;
}

.error-404 h1 {
    font-size: 6rem;
    color: var(--primary);
    line-height: 1;
}

.error-404 h2 {
    margin-bottom: 15px;
}

.error-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 25px 0 40px;
}

.error-search {
    margin-top: 30px;
}

.search-box {
    display: flex;
    max-width: 400px;
    margin: 15px auto;
}

.search-box input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 0.95rem;
    font-family: var(--font);
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.search-box button {
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--primary-dark);
}

.popular-links {
    margin-top: 30px;
}

.links-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 15px;
}

.links-grid a {
    padding: 8px 18px;
    border: 1px solid var(--gray-300);
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.links-grid a:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

/* === Search === */
.search-form-lg {
    display: flex;
    max-width: 600px;
    margin: 20px auto 0;
}

.search-form-lg input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 1rem;
    font-family: var(--font);
    backdrop-filter: blur(5px);
}

.search-form-lg input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-form-lg input:focus {
    outline: none;
    border-color: var(--white);
}

.search-form-lg button {
    padding: 14px 25px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 0 var(--radius) var(--radius) 0;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.search-form-lg button:hover {
    background: var(--secondary-dark);
}

.search-info {
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.search-alt-links {
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.search-alt-links a {
    color: var(--primary);
    font-weight: 500;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.search-result-item {
    padding: 20px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: var(--transition);
}

.search-result-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.search-result-item h3 {
    margin-bottom: 8px;
}

.search-result-item h3 a {
    color: var(--gray-900);
}

.search-result-item p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.search-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* === No Content === */
.no-content {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-content i {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Related Services Section */
.related-services-section {
    background: var(--gray-50);
}

/* === Loading Spinner === */
.loading-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: rotate 1s ease-in-out infinite;
}

/* === Skeleton Loading === */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius);
}

.skeleton-text {
    height: 1em;
    margin-bottom: 0.5em;
}

.skeleton-text:last-child {
    width: 80%;
}

.skeleton-image {
    height: 200px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .content-grid,
    .service-content-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .quick-contact-inner {
        grid-template-columns: 1fr;
        border-radius: var(--radius-lg);
    }

    .quick-contact-item a {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .quick-contact-item:last-child a {
        border-bottom: none;
    }
}

@media (max-width: 991px) {

    /*
     * backdrop-filter, position:fixed çocukların containing block'unu header yapar;
     * çekmece menü viewport dışına sıkışır / görünmez. Mobilde kapat.
     */
    .header,
    .header.scrolled {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background: var(--white);
    }

    .header.scrolled {
        background: rgba(255, 255, 255, 0.99);
    }

    .header {
        overflow: visible;
    }

    html {
        overflow-x: hidden;
    }

    body {
        padding-bottom: 65px;
        overflow-x: hidden;
    }

    .hide-mobile {
        display: none !important;
    }

    .header-inner {
        flex-wrap: nowrap;
        align-items: center;
        padding: 8px 0;
        gap: 8px;
    }

    .logo {
        max-width: min(82vw, 340px);
    }

    .logo img {
        max-height: 80px;
    }

    .header-phone {
        display: none;
    }

    .header-whatsapp {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }

    /* Çekmece + üst aksiyonlar karartmanın üstünde; backdrop header’da z-index:0 */
    .header > .container {
        position: relative;
        z-index: 2;
        isolation: isolate;
    }

    .header-actions {
        position: relative;
        z-index: 4;
    }

    .main-nav {
        display: block;
        visibility: hidden;
        pointer-events: none;
        position: fixed;
        top: 0;
        right: 0;
        width: min(420px, 94vw);
        height: 100vh;
        height: 100dvh;
        max-height: 100dvh;
        margin: 0;
        padding: calc(72px + env(safe-area-inset-top, 0px)) 22px calc(24px + env(safe-area-inset-bottom, 0px));
        background: #ffffff;
        border-left: 1px solid var(--gray-200);
        box-shadow: -16px 0 48px rgba(15, 23, 42, 0.22);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        z-index: 3;
        transform: translateX(104%);
        transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.35s;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
    }

    .main-nav.active {
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
        transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav ul li a {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid var(--gray-100);
        font-size: 1rem;
    }

    .main-nav ul li a::after {
        display: none;
    }

    .has-dropdown .dropdown {
        display: none !important;
        position: static;
        box-shadow: none;
        border: none;
        max-height: min(55vh, 360px);
        padding: 8px 0 8px 12px;
        margin: 0;
        animation: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .has-dropdown.open .dropdown-services {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        animation: fadeIn 0.3s ease;
    }

    .has-dropdown.open .dropdown-locations {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 2px;
        animation: fadeIn 0.3s ease;
    }

    .has-dropdown.open .dropdown-locations .dropdown-locations-footer {
        flex-direction: column;
        padding-left: 0;
    }

    .has-dropdown.open .nav-chevron {
        transform: rotate(180deg);
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-cta {
        display: flex;
        gap: 10px;
        padding: 15px 0;
        border-top: 1px solid var(--gray-200);
        margin-top: 10px;
    }

    .mobile-cta-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px;
        border-radius: var(--radius);
        color: var(--white);
        font-weight: 600;
        font-size: 0.93rem;
    }

    .mobile-cta-phone {
        background: var(--secondary);
    }

    .mobile-cta-whatsapp {
        background: var(--whatsapp);
    }

    .mobile-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-top: 1px solid var(--gray-200);
    }

    .mobile-bar-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        padding: 10px 5px;
        color: var(--gray-600);
        font-size: 0.7rem;
        font-weight: 500;
        transition: var(--transition);
        position: relative;
    }

    .mobile-bar-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: var(--transition);
        transform: translateX(-50%);
    }

    .mobile-bar-item:hover::before,
    .mobile-bar-item:active::before {
        width: 50%;
    }

    .mobile-bar-item i {
        font-size: 1.15rem;
    }

    .mobile-bar-item:hover,
    .mobile-bar-item:active {
        color: var(--primary);
    }

    .mobile-bar-whatsapp {
        color: var(--whatsapp);
    }

    .mobile-bar-whatsapp:hover {
        color: var(--whatsapp-dark);
    }

    .fixed-cta {
        display: none;
    }

    .back-to-top {
        bottom: 80px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    /* Slider: tek blok — taşma / kayma azaltılır, oklar için yan boşluk */
    .slider-wrapper {
        min-height: 430px;
    }

    .slide-content {
        padding: 36px 44px 88px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .slide-content h1 {
        font-size: 1.72rem;
    }

    .slide-content p {
        font-size: 0.95rem;
    }

    .slide::before,
    .slide::after {
        max-width: 65vw;
        max-height: 65vw;
        opacity: 0.35;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
        top: 42%;
    }

    .slider-prev {
        left: 6px;
    }

    .slider-next {
        right: 6px;
    }

    .slider-dots {
        bottom: 18px;
    }

    .hero-features-bar {
        padding: 12px 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero-features {
        gap: 8px;
        font-size: 0.8rem;
        justify-content: center;
        padding: 0 12px;
    }

    .hero-feature {
        font-size: 0.78rem;
        padding: 5px 10px;
    }

    /* Quick contact mobile */
    .quick-contact-bar {
        margin-top: 0;
        padding: 16px 0 8px;
        overflow-x: hidden;
    }

    .quick-contact-inner {
        border-radius: var(--radius);
        margin: 0 2px;
        max-width: 100%;
        box-sizing: border-box;
    }

    .quick-contact-item a {
        padding: 18px 20px;
    }

    .qc-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .qc-value {
        font-size: 0.9rem;
    }

    /* Sections */
    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-detailed-card {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0;
    }

    .sdc-thumb {
        flex: 1 1 100%;
        min-height: 200px;
    }

    .service-detailed-card .sdc-icon {
        margin-left: 18px;
        align-self: flex-start;
        padding-top: 20px;
    }

    .service-detailed-card .sdc-content {
        flex: 1 1 calc(100% - 100px);
        padding: 20px 18px 24px 12px;
    }

    .sdc-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.5rem;
    }

    /* Service content */
    .service-features-list {
        grid-template-columns: 1fr;
    }

    .service-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .service-cta-box {
        flex-direction: column;
        text-align: center;
    }

    .scb-actions {
        justify-content: center;
    }

    /* Blog */
    .blog-grid,
    .blog-grid-large {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid,
    .contact-home-grid {
        grid-template-columns: 1fr;
    }

    .page-header-cta {
        flex-direction: column;
        align-items: center;
    }

    /* Locations */
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .location-card {
        padding: 15px 10px;
    }

    .mini-services-grid {
        grid-template-columns: 1fr;
    }

    .neighborhoods-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pre-footer-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .pre-footer-cta-buttons {
        justify-content: center;
    }

    /* Stats */
    .stats-box {
        padding: 30px 20px;
        gap: 25px;
    }

    .stats-box .stat-number {
        font-size: 2rem;
    }

    .stats-section {
        padding: 40px 0;
    }

    .stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .stats-section .stat-item {
        padding: 16px 10px;
    }

    .stats-section .stat-number {
        font-size: 1.85rem;
    }

    .stats-section .stat-label {
        font-size: 0.82rem;
    }

    .experience-badge {
        bottom: 12px;
        right: 12px;
        padding: 12px 16px;
    }

    .experience-badge .exp-years {
        font-size: 1.6rem;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    /* Error */
    .error-buttons {
        flex-direction: column;
        align-items: center;
    }

    .error-404 h1 {
        font-size: 4rem;
    }

    /* CTA Info */
    .cta-info-grid {
        flex-direction: column;
        text-align: center;
    }

    .cta-info-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .slide-content {
        padding: 28px 40px 96px 40px;
    }

    .slide-content h1 {
        font-size: 1.5rem;
    }

    .slider-wrapper {
        min-height: 440px;
    }

    .stats-section .stats-grid {
        grid-template-columns: 1fr;
    }

    .stats-section .stat-number {
        font-size: 1.75rem;
    }

    .service-why-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

/* === Ana sayfa: güven şeridi, süreç, bölgeler === */
.home-trust-strip {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0f2841 100%);
    color: var(--white);
    padding: 28px 0 32px;
    margin-top: 24px;
    position: relative;
    z-index: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 992px) {
    .home-trust-strip {
        margin-top: 36px;
    }
}

.home-trust-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.home-trust-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.home-trust-item i {
    font-size: 1.35rem;
    color: var(--accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.home-trust-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.home-trust-item span {
    font-size: 0.82rem;
    opacity: 0.88;
    line-height: 1.45;
}

@media (max-width: 991px) {
    .home-trust-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 520px) {
    .home-trust-inner {
        grid-template-columns: 1fr;
    }
}

.home-process-section {
    background: var(--white);
}

.home-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.home-process-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 24px 20px;
    position: relative;
    transition: var(--transition);
}

.home-process-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.hpc-num {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 12px;
}

.home-process-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.home-process-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .home-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .home-process-grid {
        grid-template-columns: 1fr;
    }
}

.home-areas-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.home-areas-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.home-areas-head h2 {
    margin-top: 10px;
}

.home-areas-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home-areas-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.area-chip {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 50px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: var(--transition);
}

.area-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 102, 204, 0.06);
}

.area-chip--more {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.area-chip--more:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* Ana sayfa — tam genişlik görsel şerit */
.home-visual-strip {
    width: 100%;
    overflow: hidden;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.home-visual-strip-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 120px;
}

.home-visual-cell {
    min-height: 120px;
    background-image: var(--hvc);
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: saturate(1.05);
}

.home-visual-cell:hover {
    transform: scale(1.03);
    z-index: 1;
    filter: saturate(1.15);
}

@media (max-width: 768px) {
    .home-visual-strip-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-visual-cell:nth-child(5) {
        grid-column: span 2;
    }
}

/* === Hakkımızda sayfası === */
.about-page-hero {
    text-align: center;
}

.about-page-hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.6rem);
}

.about-hero-lead {
    max-width: 720px;
    margin: 16px auto 24px;
    font-size: 1.08rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.92);
}

.about-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.about-grid-pro {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-prose p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text);
}

.about-pillars {
    list-style: none;
    margin: 24px 0 0;
    padding: 0;
}

.about-pillars li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.about-pillars i {
    color: var(--success);
    margin-top: 3px;
}

.about-img-frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--gray-200);
}

.about-img-frame img {
    width: 100%;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-exp-badge {
    bottom: 20px;
    right: 20px;
}

.about-timeline-section {
    background: var(--gray-50);
}

.about-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border-left: 3px solid var(--primary);
    padding-left: 28px;
}

.about-timeline li {
    position: relative;
    padding-bottom: 28px;
}

.about-timeline li::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--primary-light);
}

.at-year {
    display: inline-block;
    font-weight: 800;
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.about-timeline p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

.mv-section-bg {
    background: var(--gray-50);
}

.mv-grid-pro {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mv-card-pro {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}

.mv-card-pro:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.mv-icon-pro {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.mv-card-pro h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.mv-card-pro p {
    margin: 0;
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.65;
}

.about-features-pro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-fp-card {
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.about-fp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-fp-card>i {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.about-fp-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.about-fp-card p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

.stats-grid-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stats-grid-simple .stat-item {
    padding: 28px 16px;
    background: linear-gradient(145deg, var(--primary-dark) 0%, #0c2138 100%);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid-simple .stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
}

.stats-grid-simple .stat-label {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.about-cta-box {
    text-align: center;
    padding: 48px 32px;
    border-radius: var(--radius-2xl);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.about-cta-box h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.about-cta-box h2 span {
    color: var(--accent);
}

.about-cta-box p {
    margin: 0 0 24px;
    opacity: 0.92;
    font-size: 1.05rem;
}

.about-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

@media (max-width: 991px) {
    .about-grid-pro {
        grid-template-columns: 1fr;
    }

    .mv-grid-pro {
        grid-template-columns: 1fr;
    }

    .about-features-pro-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid-simple {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .about-features-pro-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid-simple {
        grid-template-columns: 1fr;
    }
}

/* === Visually hidden (erişilebilirlik) === */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* === FAQ Accordion (ana sayfa) === */
.faq-section {
    background: var(--gray-50);
}

.faq-accordion {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-acc-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.faq-acc-item:hover {
    border-color: var(--gray-300);
}

.faq-acc-item[open] {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.faq-acc-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    user-select: none;
}

.faq-acc-item summary::-webkit-details-marker {
    display: none;
}

.faq-acc-item summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--primary);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-acc-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-acc-body {
    padding: 0 22px 20px;
    border-top: 1px solid var(--gray-100);
}

.faq-acc-body p {
    margin: 14px 0 0;
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.97rem;
}

.faq-acc-body a {
    font-weight: 600;
}

/* === Konum arama sayfası === */
.page-header--search .location-search-form {
    max-width: 720px;
    margin: 24px auto 0;
    position: relative;
    z-index: 2;
}

.page-header--search h1,
.page-header--search > .container > p {
    position: relative;
    z-index: 2;
}

.location-search-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.location-search-row input[type="search"],
.location-search-row input[type="text"] {
    flex: 1;
    min-width: 200px;
    padding: 16px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: var(--transition);
}

.location-search-row input[type="search"]:focus,
.location-search-row input[type="text"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.location-search-hint {
    margin-top: 12px;
    font-size: 0.88rem;
    color: var(--text-muted);
    text-align: center;
}

.location-search-results-section {
    padding-top: 20px;
}

.location-search-summary {
    margin-bottom: 24px;
    font-size: 1rem;
    color: var(--text);
}

.location-result-block {
    margin-bottom: 36px;
}

.location-result-block h2 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-900);
}

.location-result-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-result-list a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 16px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    color: var(--gray-800);
    transition: var(--transition);
}

.location-result-list a:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateX(4px);
}

.lr-title {
    font-weight: 700;
    font-size: 1.02rem;
}

.lr-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    flex: 1 1 auto;
}

.lr-arrow {
    color: var(--primary);
    opacity: 0.7;
}

.location-search-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.lsi-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 28px 22px;
    text-align: center;
    box-shadow: var(--shadow);
}

.lsi-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.lsi-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.lsi-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.65;
}

.location-search-empty {
    max-width: 560px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .location-search-intro-grid {
        grid-template-columns: 1fr;
    }
}

/* === Hizmet detay: içindekiler & bloklar === */
.service-block-title {
    font-size: 1.45rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gray-200);
    color: var(--gray-900);
}

.service-block,
.service-summary-card,
.service-process-section,
.service-mini-faq {
    scroll-margin-top: 100px;
    margin-bottom: 40px;
}

.service-summary-card {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 28px 26px;
}

.service-summary-lead {
    font-size: 1.08rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 18px;
}

.service-summary-points {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-summary-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.service-summary-points i {
    color: var(--success);
    margin-top: 3px;
}

.service-prose .service-description-inner {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text);
}

.service-prose .service-description-inner p {
    margin-bottom: 1rem;
}

.service-prose .service-description-inner h2,
.service-prose .service-description-inner h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-toc {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    margin-bottom: 28px;
}

.service-toc-title {
    font-size: 1rem;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-900);
}

.service-toc-list {
    margin: 0;
    padding-left: 1.25rem;
    font-size: 0.93rem;
    line-height: 1.7;
}

.service-toc-list a {
    color: var(--gray-700);
    font-weight: 500;
}

.service-toc-list a:hover {
    color: var(--primary);
}

.service-toc--desktop {
    display: none;
}

.service-toc--mobile {
    display: block;
}

@media (min-width: 992px) {
    .service-toc--desktop {
        display: block;
    }

    .service-toc--mobile {
        display: none;
    }

    .service-toc--desktop.service-toc {
        position: sticky;
        top: 100px;
    }
}

.service-process-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-process-steps > li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.sps-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.service-process-steps h3 {
    font-size: 1.05rem;
    margin: 0 0 6px;
}

.service-process-steps p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
}

.mini-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mini-faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
}

.mini-faq-item summary {
    padding: 14px 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    color: var(--gray-800);
}

.mini-faq-item summary::-webkit-details-marker {
    display: none;
}

.mini-faq-body {
    padding: 0 18px 16px;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    border-top: 1px solid var(--gray-100);
    padding-top: 12px;
}

.blog-single-content {
    font-size: 1.05rem;
    line-height: 1.85;
}

.blog-single-content h2,
.blog-single-content h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    scroll-margin-top: 90px;
}

/* === Print Styles === */
@media print {

    .header,
    .footer,
    .mobile-bottom-bar,
    .fixed-cta,
    .back-to-top,
    .pre-footer-cta {
        display: none !important;
    }

    body {
        padding: 0;
        color: #000;
        background: #fff;
    }

    .container {
        max-width: 100%;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .btn {
        border: 1px solid #000;
        background: none;
        color: #000;
    }
}