/* =============================================
   MTA Evde Sağlık - Ana Stil Dosyası
   ============================================= */

/* --- CSS Değişkenleri --- */
:root {
    /* Primary Colors */
    --primary: #1e4d5c;
    --primary-dark: #0f2e37;
    --primary-light: #2e6b7e;
    
    /* Secondary Colors */
    --secondary: #3b82c4;
    --secondary-light: #5a9ed4;
    --secondary-dark: #2a6aa8;
    
    /* Accent Colors */
    --accent: #e8826a;
    --accent-dark: #d66a52;
    --accent-soft: #fde7e0;
    
    /* Background Colors */
    --cream: #faf7f2;
    --white: #ffffff;
    --light-bg: #f5f1ea;
    --light-bg-2: #ede6d9;
    
    /* Text Colors */
    --text-dark: #1f2937;
    --text-body: #4a5568;
    --text-muted: #718096;
    
    /* Border */
    --border-color: #e7e2d6;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(30,77,92,0.06);
    --shadow-md: 0 4px 14px rgba(30,77,92,0.09);
    --shadow-lg: 0 12px 36px rgba(30,77,92,0.14);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Fonts */
    --font-heading: 'Fraunces', 'Plus Jakarta Sans', serif;
    --font-sans: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--white);
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

h1 { font-size: 2.4rem; font-weight: 600; letter-spacing: -0.02em; }
h2 { font-size: 1.9rem; font-weight: 600; letter-spacing: -0.015em; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; }
h5 { font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; }

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

a:hover {
    color: var(--primary);
}

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

/* --- Top Bar --- */
.top-bar {
    background-color: var(--primary-dark);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar a {
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}

.top-bar a:hover {
    color: var(--white);
}

.top-bar .top-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar .top-info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar .top-info-item i {
    color: var(--secondary-light);
    font-size: 14px;
}

.top-bar .top-right {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-end;
}

.top-bar .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    transition: var(--transition);
}

.top-bar .social-links a:hover {
    background: var(--secondary);
    color: var(--white);
}

/* --- Navbar --- */
.main-navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 5px 0;
}

.main-navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    max-height: 45px;
}

.navbar-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.navbar-brand .brand-text span {
    color: var(--secondary);
}

.main-navbar .nav-link {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
    padding: 20px 14px;
    position: relative;
    transition: var(--transition);
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--secondary);
}

.main-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-navbar .nav-link:hover::after,
.main-navbar .nav-link.active::after {
    transform: scaleX(1);
}

.main-navbar .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 10px 0;
    min-width: 240px;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    display: block;
    transform: translateY(10px);
    transition: all 0.25s ease;
    pointer-events: none;
}

/* --- Mega Menu v4 (Profesyonel - Viewport Aware) --- */
/* --- Mega Menu v4 (Simplified & Professional) --- */
.mega-menu-wrapper-v4 {
    position: static !important;
}

.mega-menu-v4 {
    position: absolute !important;
    width: 100vw;
    left: 0 !important;
    right: 0 !important;
    background: var(--white);
    padding: 40px 0 !important;
    margin-top: 0 !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.mega-menu-wrapper-v4:hover .mega-menu-v4,
.mega-menu-wrapper-v4.show .mega-menu-v4 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-v4-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1320px;
    margin: 0 auto 30px;
    padding: 0 15px;
}

.mega-v4-item {
    display: flex;
    flex-direction: column;
    padding: 10px;
    transition: background 0.2s ease;
}

.mega-v4-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    text-decoration: none !important;
}

.mega-v4-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    transition: all 0.2s ease;
}

.mega-v4-item:hover .mega-v4-icon {
    background: var(--secondary);
    color: var(--white);
}

.mega-v4-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    font-family: var(--font-sans);
}

.mega-v4-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-v4-links a {
    font-size: 13px;
    color: var(--text-body);
    transition: all 0.2s ease;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 0;
}

.mega-v4-links a::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.5;
    transition: all 0.2s ease;
}

.mega-v4-links a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.mega-v4-links a:hover::before {
    opacity: 1;
    transform: scale(1.5);
}

.mega-v4-footer {
    max-width: 1320px;
    margin: 0 auto;
    padding: 20px 15px 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-v4-cta-group {
    display: flex;
    gap: 12px;
}

.mega-v4-cta {
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
}

.mega-v4-cta-primary {
    background: var(--primary);
    color: var(--white) !important;
}

.mega-v4-cta-secondary {
    background: var(--light-bg);
    color: var(--primary) !important;
}

.mega-v4-cta:hover {
    opacity: 0.85;
}

.mega-v4-info {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 1400px) {
    .mega-v4-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .mega-v4-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .mega-menu-v4 {
        display: none !important;
    }
}



/* --- Mega Menu v4 (Profesyonel - Viewport Aware) --- */

.main-navbar .dropdown-item {
    font-size: 13.5px;
    padding: 8px 20px;
    color: var(--text-body);
    transition: var(--transition);
}

.main-navbar .dropdown-item:hover {
    background: var(--light-bg);
    color: var(--secondary);
    padding-left: 24px;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Hamburger Menu Button --- */
.mobile-toggle {
    border: none;
    background: transparent;
    padding: 8px;
    font-size: 28px;
    color: var(--primary);
    cursor: pointer;
    display: none; /* hidden on desktop, block on mobile */
    align-items: center;
    justify-content: center;
}

.mobile-toggle:focus {
    outline: none;
}

/* --- Off-Canvas Mobile Menu --- */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    overflow-y: auto;
    transition: right 0.35s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-header .brand-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--primary);
    letter-spacing: -0.01em;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-nav {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.mobile-menu-nav li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-menu-nav li a:hover {
    color: var(--text-dark);
    background: var(--light-bg);
    padding-left: 24px;
}

.mobile-menu-nav li a.active {
    color: var(--text-dark);
    font-weight: 700;
}

.mobile-menu-nav .submenu {
    list-style: none;
    padding: 0;
    background: var(--light-bg);
    display: none;
}

.mobile-menu-nav .submenu.open {
    display: block;
}

.mobile-menu-nav .submenu li a {
    padding-left: 36px;
    font-size: 13px;
    font-weight: 400;
}

.mobile-menu-contact {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.mobile-menu-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-body);
    font-size: 13px;
    margin-bottom: 10px;
}

.mobile-menu-contact a i {
    color: var(--secondary);
}

/* --- Hero Slider --- */
.hero-section {
    position: relative;
    min-height: 540px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 540px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,58,92,0.88) 0%, rgba(33,150,243,0.65) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.05rem;
    opacity: 0.92;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.hero-dot.active {
    background: var(--white);
    width: 28px;
    border-radius: 5px;
}

/* --- Buttons --- */
.btn-primary-custom {
    background: var(--accent);
    color: var(--white);
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--accent);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.01em;
}

.btn-primary-custom:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    border: 2px solid rgba(255,255,255,0.55);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-secondary-custom {
    background: var(--primary);
    color: var(--white);
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 13.5px;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-secondary-custom:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-ghost-custom {
    background: transparent;
    color: var(--primary);
    padding: 11px 22px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 13.5px;
    border: 1.5px solid var(--primary);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-ghost-custom:hover {
    background: var(--primary);
    color: var(--white);
}

/* --- Featured Cards (Hero altı) --- */
.featured-cards {
    margin-top: -60px;
    position: relative;
    z-index: 5;
}

.featured-card {
    background: var(--primary);
    color: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    height: 100%;
}

.featured-card:nth-child(2),
.featured-card.middle {
    background: var(--secondary);
}

.featured-card:nth-child(3),
.featured-card.last {
    background: var(--primary-light);
}

.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.featured-card h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.featured-card p {
    font-size: 13.5px;
    opacity: 0.9;
    margin-bottom: 14px;
}

.featured-card .card-link {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 7px 18px;
    border-radius: var(--radius-sm);
    display: inline-block;
    transition: var(--transition);
}

.featured-card .card-link:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* --- Section Styles --- */
.section {
    padding: 70px 0;
}

.section-light {
    background: var(--light-bg);
}

.section-title {
    margin-bottom: 40px;
}

.section-title .subtitle {
    color: var(--accent);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.section-title .subtitle::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--accent);
    display: inline-block;
}

.section-title h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.section-title p {
    color: var(--text-muted);
    font-size: 15px;
    max-width: 540px;
    margin-top: 10px;
}

/* --- About Section --- */
.about-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: visible;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}

.about-image .card-image--empty {
    border-radius: var(--radius-md);
}

.experience-badge {
    position: absolute;
    bottom: 18px;
    right: 18px;
    background: var(--accent);
    color: var(--white);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    text-align: center;
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(30, 77, 92, 0.15);
    z-index: 2;
}

.experience-badge .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}

.experience-badge .label {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.95;
    letter-spacing: 0.3px;
    margin-top: 4px;
    display: block;
}

.about-checkmarks {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.about-checkmarks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-body);
}

.about-checkmarks li i {
    color: var(--secondary);
    font-size: 16px;
}

/* --- Services Section --- */
.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card .card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.service-card .card-body {
    padding: 22px;
}

.service-card .card-body h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.service-card .card-body h4 a {
    color: var(--text-dark);
}

.service-card .card-body h4 a:hover {
    color: var(--secondary);
}

.service-card .card-body p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.service-card .card-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.service-card .card-link:hover {
    color: var(--primary);
    gap: 8px;
}

/* --- Blog Section --- */
.blog-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.blog-card .card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .card-image img {
    transform: scale(1.05);
}

.blog-card .card-body {
    padding: 22px;
}

.blog-card .card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-card .card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card .card-body h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card .card-body h4 a {
    color: var(--text-dark);
}

.blog-card .card-body h4 a:hover {
    color: var(--secondary);
}

.blog-card .card-body p {
    font-size: 13.5px;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Region Cards --- */
.region-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    text-align: left;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.region-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.25s ease;
}

.region-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.region-card:hover::before { transform: scaleY(1); }

.region-card h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--primary-dark);
    letter-spacing: -0.01em;
}

.region-card h5 a {
    color: var(--primary-dark);
    text-decoration: none;
}

.region-card h5 a:hover { color: var(--accent-dark); }

.region-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.region-card .region-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--accent-dark);
    margin-top: 10px;
    font-weight: 500;
}

.region-card .region-meta i { font-size: 13px; }

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 60px 0;
}

.cta-section h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 24px;
}

/* --- Contact Form Section --- */
.contact-form-section {
    background: var(--secondary);
    padding: 70px 0;
}

.contact-form-section h3 {
    color: var(--white);
    margin-bottom: 8px;
}

.contact-form-section p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}

.contact-form .form-control {
    border: none;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    background: var(--white);
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

/* --- Stats Section --- */
.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 6px;
}

/* --- Page Header (İç Sayfa Başlık) --- */
.page-header {
    background: var(--cream);
    padding: 42px 0 36px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 4px;
    background: var(--accent);
}

.page-header::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: var(--accent-soft);
    opacity: 0.5;
    z-index: 0;
}

.page-header .container { position: relative; z-index: 1; }

.page-header h1 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 0;
    font-weight: 600;
    letter-spacing: -0.015em;
}

.breadcrumb-nav {
    margin-top: 10px;
}

.breadcrumb-nav .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-nav .breadcrumb-item a {
    color: var(--text-muted);
    font-size: 13px;
    transition: var(--transition);
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--accent-dark);
}

.breadcrumb-nav .breadcrumb-item.active span {
    color: var(--text-body);
    font-size: 13px;
}

.breadcrumb-nav .breadcrumb-item,
.breadcrumb-nav .breadcrumb-item a {
    /* text-transform handled by PHP tr_ucwords */
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
    content: "›";
}

/* --- Detail Page --- */
.detail-content {
    padding: 40px 0 60px;
}

.detail-content .content-area {
    /* Detail page content styles */
}

.detail-content .content-area h2 {
    font-size: 1.25rem;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-dark);
}

.detail-content .content-area h3 {
    font-size: 1.15rem;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.detail-content .content-area p {
    margin-bottom: 14px;
    line-height: 1.8;
}

.detail-content .content-area ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.detail-content .content-area ul li {
    margin-bottom: 6px;
}

.detail-content .content-area img {
    border-radius: var(--radius-md);
    margin: 16px 0;
}

/* --- Sidebar --- */
.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-bottom: 24px;
}

.sidebar-widget h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    font-family: var(--font-sans);
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    color: var(--text-body);
    font-size: 13.5px;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.sidebar-widget ul li a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

.sidebar-widget ul li:last-child a {
    border-bottom: none;
}

.sidebar-cta {
    background: var(--primary-dark);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.sidebar-cta::before {
    content: '';
    position: absolute;
    top: -30px; right: -30px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(232,130,106,0.15);
}

.sidebar-cta .cta-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.sidebar-cta p {
    font-size: 13px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 16px;
    line-height: 1.5;
}

.sidebar-cta .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Eski phone-link — geriye dönük uyumluluk */
.sidebar-cta .phone-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-sans);
}

/* WhatsApp butonu */
.btn-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 13.5px;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

.btn-wa:hover { background: #1da851; color: var(--white); transform: translateY(-1px); }

/* --- FAQ Accordion --- */
.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 22px;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question .faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: var(--secondary);
}

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

.faq-answer {
    padding: 0 22px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 22px 18px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}

/* --- Contact Page --- */
.contact-info-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.contact-info-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: var(--secondary);
}

.contact-info-card h5 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- Footer --- */
.main-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.main-footer h5 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.main-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: var(--accent);
}

.main-footer p {
    font-size: 13.5px;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li a {
    color: rgba(255,255,255,0.7);
    font-size: 13.5px;
    padding: 4px 0;
    display: block;
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13.5px;
}

.footer-contact li i {
    color: var(--accent);
    margin-top: 3px;
    font-size: 15px;
}

.footer-contact li a {
    color: rgba(255,255,255,0.7);
}

.footer-contact li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    margin-top: 40px;
    font-size: 13px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
}

.footer-bottom a:hover {
    color: var(--accent);
}

.dipa-signature {
    display: inline-flex;
    align-items: center;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

.dipa-signature:hover {
    color: var(--white);
}

.dipa-signature .dipa-logo {
    height: 40px;
    margin-left: 0;
    margin-right: 0;
    transition: var(--transition);
}

.dipa-signature:hover .dipa-logo {
    transform: scale(1.02);
}

/* --- WhatsApp FAB --- */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-fab:hover {
    transform: scale(1.08);
    color: var(--white);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* --- Pagination --- */
.pagination-custom {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 30px;
}

.pagination-custom a,
.pagination-custom span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-body);
    transition: var(--transition);
}

.pagination-custom a:hover,
.pagination-custom span.current {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

/* --- Scroll-to-top --- */
.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    z-index: 998;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* --- Animations --- */

/* Base reveal classes */
.anim {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.anim.anim-up { transform: translateY(40px); }
.anim.anim-down { transform: translateY(-40px); }
.anim.anim-left { transform: translateX(-50px); }
.anim.anim-right { transform: translateX(50px); }
.anim.anim-scale { transform: scale(0.9); }
.anim.anim-fade { transform: none; }

.anim.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger children: add .anim-stagger to parent */
.anim-stagger > .anim { transition-delay: 0s; }
.anim-stagger > .anim:nth-child(1) { transition-delay: 0s; }
.anim-stagger > .anim:nth-child(2) { transition-delay: 0.1s; }
.anim-stagger > .anim:nth-child(3) { transition-delay: 0.15s; }
.anim-stagger > .anim:nth-child(4) { transition-delay: 0.2s; }
.anim-stagger > .anim:nth-child(5) { transition-delay: 0.25s; }
.anim-stagger > .anim:nth-child(6) { transition-delay: 0.3s; }

/* Stagger for deeper nesting (.row > .col > .card) */
.anim-stagger-deep > * > .anim:nth-child(1),
.anim-stagger-deep > *:nth-child(1) > .anim,
.anim-stagger-deep > *:nth-child(1) .anim { transition-delay: 0s; }
.anim-stagger-deep > *:nth-child(2) .anim { transition-delay: 0.1s; }
.anim-stagger-deep > *:nth-child(3) .anim { transition-delay: 0.15s; }
.anim-stagger-deep > *:nth-child(4) .anim { transition-delay: 0.2s; }
.anim-stagger-deep > *:nth-child(5) .anim { transition-delay: 0.25s; }
.anim-stagger-deep > *:nth-child(6) .anim { transition-delay: 0.3s; }

/* Slow/fast variants */
.anim.anim-slow { transition-duration: 1s; }
.anim.anim-fast { transition-duration: 0.4s; }

/* Card hover lift */
.hover-lift { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.hover-lift:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* Subtle card hover */
.hover-rise { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.hover-rise:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* Image zoom on hover */
.hover-zoom { overflow: hidden; }
.hover-zoom img { transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.hover-zoom:hover img { transform: scale(1.06); }

/* Floating / pulsing decorative elements */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-soft {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.85; }
}

@keyframes slide-in-right {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.float { animation: float 4s ease-in-out infinite; }
.pulse-soft { animation: pulse-soft 3s ease-in-out infinite; }

/* Hero entrance */
@keyframes hero-entrance {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-split .hero-content > * {
    animation: hero-entrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-split .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-split .hero-content > *:nth-child(2) { animation-delay: 0.25s; }
.hero-split .hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-split .hero-content > *:nth-child(4) { animation-delay: 0.55s; }
.hero-split .hero-content > *:nth-child(5) { animation-delay: 0.7s; }

/* Stat counters entrance */
@keyframes counter-pop {
    0% { opacity: 0; transform: scale(0.7) translateY(10px); }
    70% { transform: scale(1.05) translateY(-2px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-stats .stat-item {
    animation: counter-pop 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-stats .stat-item:nth-child(1) { animation-delay: 0.8s; }
.hero-stats .stat-item:nth-child(2) { animation-delay: 0.95s; }
.hero-stats .stat-item:nth-child(3) { animation-delay: 1.1s; }

/* Contact bar items entrance */
.contact-bar-item { transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease; }
.contact-bar-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* Region card hover accent bar */
.region-card { transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }

/* Page header subtle entrance */
@keyframes header-slide {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.page-header h1 {
    animation: header-slide 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.page-header .breadcrumb-nav {
    animation: header-slide 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

/* Page intro */
.page-intro {
    animation: hero-entrance 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

/* Legacy support */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .anim, .fade-in-up, .hover-lift, .hover-rise, .hover-zoom img,
    .hero-split .hero-content > *, .hero-stats .stat-item,
    .page-header h1, .page-header .breadcrumb-nav, .page-intro {
        animation: none;
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* --- Map embed --- */
.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* --- Share buttons --- */
.share-buttons {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.share-buttons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.share-buttons a:hover {
    transform: translateY(-3px);
    color: var(--white);
}

.share-buttons .share-fb { background: #1877f2; }
.share-buttons .share-tw { background: #1da1f2; }
.share-buttons .share-wa { background: #25d366; }
.share-buttons .share-li { background: #0a66c2; }

/* =============================================
   YENİ COMPONENTLER (2026 Redesign)
   ============================================= */

/* --- Page Intro --- */
.section-heading {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.hours-lead { font-size: 1.05rem; color: var(--text-body); line-height: 1.7; }
.hours-note { font-size: 13.5px; }
.about-empty { aspect-ratio: 4/3; border-radius: var(--radius-md); }
.sidebar-widget ul li a.active { color: var(--accent-dark); font-weight: 600; }

.page-intro {
    font-size: 1.05rem;
    color: var(--text-body);
    max-width: 620px;
    line-height: 1.7;
    margin: 0 0 40px;
}
.page-intro.centered { margin: 0 auto 40px; text-align: center; }

/* --- CTA Section Light Button --- */
.btn-cta-light {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--white);
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-decoration: none;
}
.btn-cta-light:hover { background: transparent; color: var(--white); }

/* --- Contact Bar (iletisim.php) --- */
.contact-bar {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 40px;
    background: var(--white);
}
.contact-bar-item {
    flex: 1;
    min-width: 190px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid var(--border-color);
    transition: var(--transition);
    text-decoration: none;
}
.contact-bar-item:last-child { border-right: none; }
.contact-bar-item:hover { background: var(--cream); }
.contact-bar-item .cb-icon {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--accent-soft); color: var(--accent-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}
.contact-bar-item .cb-title {
    font-size: 11px; text-transform: uppercase;
    letter-spacing: 1px; color: var(--text-muted);
    margin-bottom: 3px; display: block;
    font-family: var(--font-sans);
}
.contact-bar-item .cb-value {
    font-family: var(--font-sans); font-weight: 600;
    font-size: 14px; color: var(--primary); display: block;
}
.contact-bar-item:hover .cb-value { color: var(--accent-dark); }
@media (max-width: 767px) {
    .contact-bar { flex-direction: column; }
    .contact-bar-item { border-right: none; border-bottom: 1px solid var(--border-color); }
    .contact-bar-item:last-child { border-bottom: none; }
}

/* --- MVV Cards (Mission/Vision/Values) --- */
.mvv-card {
    padding: 28px 24px;
    border-radius: var(--radius-md);
    background: var(--white);
    border-top: 3px solid var(--accent);
    height: 100%;
    transition: var(--transition);
}
.mvv-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.mvv-card h4 {
    display: flex; align-items: center; gap: 10px;
    color: var(--primary); font-family: var(--font-heading);
    font-size: 1.1rem; margin-bottom: 12px; font-weight: 600;
}
.mvv-card h4 i { color: var(--accent); font-size: 1.2rem; }
.mvv-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; margin: 0; }

/* --- Region Tabs --- */
.region-tabs {
    display: flex; gap: 0; margin-bottom: 32px;
    border-bottom: 2px solid var(--border-color);
}
.region-tab-btn {
    padding: 12px 24px;
    font-family: var(--font-sans); font-weight: 600; font-size: 14px;
    color: var(--text-muted); border: none; background: none;
    cursor: pointer; border-bottom: 2px solid transparent;
    margin-bottom: -2px; transition: var(--transition);
}
.region-tab-btn.active { color: var(--primary); border-bottom-color: var(--accent); }
.region-tab-btn:hover:not(.active) { color: var(--text-body); }
.region-tab-content { display: none; }
.region-tab-content.active { display: block; }

/* --- Share Section (Blog detail) --- */
.share-section {
    margin-top: 32px; padding-top: 24px;
    border-top: 1px solid var(--border-color);
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.share-label {
    font-family: var(--font-sans); font-weight: 600;
    font-size: 13px; color: var(--text-muted);
}

/* --- Post Meta --- */
.post-meta {
    display: flex; align-items: center; gap: 18px;
    font-size: 13px; color: var(--text-muted);
    margin-bottom: 20px; flex-wrap: wrap;
    padding-bottom: 16px; border-bottom: 1px solid var(--border-color);
}
.post-meta span { display: flex; align-items: center; gap: 5px; }

/* --- Asimetrik Hero Split --- */
.hero-split {
    background: var(--cream);
    padding: 70px 0 90px;
    position: relative;
    overflow: hidden;
}

.hero-split::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: var(--accent-soft);
    z-index: 0;
}

.hero-split .container { position: relative; z-index: 1; }

.hero-split .hero-text { padding-right: 20px; }

.hero-split .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    background: var(--accent-soft);
    padding: 6px 14px;
    border-radius: 100px;
}

.hero-split .eyebrow i { font-size: 14px; }

.hero-split h1 {
    font-size: 3.2rem;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-split h1 em {
    color: var(--accent);
    font-style: italic;
    font-weight: 500;
}

.hero-split .hero-lead {
    font-size: 1.08rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-split .hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 28px;
}

.hero-split .hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-family: var(--font-sans);
    font-weight: 600;
}

.hero-split .hero-phone .phone-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 18px;
}

.hero-split .hero-phone .phone-text { line-height: 1.2; font-size: 13.5px; }
.hero-split .hero-phone .phone-text small { display: block; font-size: 11px; color: var(--text-muted); font-weight: 500; }
.hero-split .hero-phone .phone-text strong { font-size: 15px; color: var(--primary); }

.hero-split .hero-trust {
    display: flex;
    gap: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.hero-split .hero-trust-item { display: flex; align-items: center; gap: 10px; }
.hero-split .hero-trust-item .num {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}
.hero-split .hero-trust-item .lbl {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.3;
    max-width: 90px;
}

.hero-split .hero-visual {
    position: relative;
    padding: 20px 0 20px 30px;
}

.hero-split .hero-visual .main-img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 160px 20px 20px 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.hero-split .hero-visual.no-img .img-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4 / 5;
    background: linear-gradient(160deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 160px 20px 20px 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-split .hero-visual.no-img .img-placeholder i {
    font-size: 7rem;
    color: rgba(255,255,255,0.25);
}

.hero-split .hero-badge-float {
    position: absolute;
    bottom: 20px;
    left: -10px;
    background: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    max-width: 260px;
}

.hero-split .hero-badge-float .ico {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--accent-soft); color: var(--accent-dark);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0;
}

.hero-split .hero-badge-float .txt { font-size: 12px; color: var(--text-body); line-height: 1.4; }
.hero-split .hero-badge-float .txt strong { display: block; color: var(--primary); font-family: var(--font-sans); font-size: 13px; }

@media (max-width: 991px) {
    .hero-split { padding: 40px 0 60px; }
    .hero-split h1 { font-size: 2.2rem; }
    .hero-split .hero-text { padding-right: 0; margin-bottom: 40px; }
    .hero-split .hero-visual { padding: 0; }
    .hero-split .hero-visual .main-img,
    .hero-split .hero-visual.no-img .img-placeholder { border-radius: 80px 16px 16px 16px; max-width: 100%; }
    .hero-split .hero-badge-float { display: none; }
}

/* --- Nasıl Çalışıyor? Process Timeline --- */
.process-timeline {
    padding: 60px 0 70px;
    background: var(--white);
}

.process-timeline .steps-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
    margin-top: 40px;
}

.process-timeline .steps-wrap::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 1.5px;
    background: repeating-linear-gradient(to right, var(--border-color) 0 8px, transparent 8px 14px);
    z-index: 0;
}

.process-step { position: relative; z-index: 1; text-align: center; }

.process-step .step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--accent);
    color: var(--accent-dark);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    position: relative;
}

.process-step .step-num i { font-size: 22px; }

.process-step h4 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-family: var(--font-sans);
    font-weight: 600;
}

.process-step p { font-size: 14px; color: var(--text-body); max-width: 260px; margin: 0 auto; line-height: 1.6; }

@media (max-width: 767px) {
    .process-timeline .steps-wrap { grid-template-columns: 1fr; gap: 30px; }
    .process-timeline .steps-wrap::before { display: none; }
}

/* --- CTA Contact Card (index.php contact form sidebar) --- */
.cta-contact-card {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 36px;
    color: var(--white);
    backdrop-filter: blur(4px);
}

.cta-contact-title {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.cta-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
    text-decoration: none;
}

.cta-contact-item:hover { color: var(--white); opacity: 0.9; }
.cta-contact-item small { opacity: 0.7; font-size: 12px; display: block; }
.cta-contact-item strong { font-size: 1.1rem; }
.cta-contact-item .email-text { font-size: 0.95rem; }

.cta-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cta-contact-icon.accent { background: var(--accent); }
.cta-contact-icon.wa { background: #25d366; font-size: 20px; }
.cta-contact-icon.subtle { background: rgba(255,255,255,0.15); }

/* --- Görselsiz Kart Varyantı --- */
.card-image--empty {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.card-image--empty::after {
    content: '';
    position: absolute;
    top: -40%; right: -20%;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
}

.card-image--empty.variant-cream {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--light-bg-2) 100%);
}

.card-image--empty.variant-coral {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.card-image--empty.variant-soft {
    background: linear-gradient(135deg, var(--accent-soft) 0%, #f5d9cf 100%);
}

.card-image--empty.variant-teal-light {
    background: linear-gradient(135deg, #d4e4e8 0%, #a8c8cf 100%);
}

.card-image--empty.variant-warm {
    background: linear-gradient(135deg, #f4e9d8 0%, #e8d2a8 100%);
}

.card-image--empty.variant-mint {
    background: linear-gradient(135deg, #d5e8dc 0%, #a8ccb5 100%);
}

.card-image--empty i {
    font-size: 3.2rem;
    color: rgba(255,255,255,0.8);
    position: relative;
    z-index: 1;
}

.card-image--empty.variant-cream i { color: var(--primary); opacity: 0.45; }
.card-image--empty.variant-soft i { color: var(--accent-dark); opacity: 0.65; }
.card-image--empty.variant-teal-light i { color: var(--primary-dark); opacity: 0.55; }
.card-image--empty.variant-warm i { color: #8b6914; opacity: 0.55; }
.card-image--empty.variant-mint i { color: #2d5f42; opacity: 0.55; }

.service-card .card-image--empty { height: 200px; aspect-ratio: auto; }
.blog-card .card-image--empty { height: 220px; aspect-ratio: auto; }

/* --- Masonry Services Grid --- */
.services-mosaic {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(240px, auto);
    gap: 18px;
}

.services-mosaic .service-card { display: flex; flex-direction: column; height: 100%; }
.services-mosaic > *:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.services-mosaic > *:nth-child(1) .card-image,
.services-mosaic > *:nth-child(1) .card-image--empty { height: 320px; }
.services-mosaic > *:nth-child(2) { grid-column: span 3; }
.services-mosaic > *:nth-child(3) { grid-column: span 3; }
.services-mosaic > *:nth-child(4) { grid-column: span 2; }
.services-mosaic > *:nth-child(5) { grid-column: span 2; }
.services-mosaic > *:nth-child(6) { grid-column: span 2; }

@media (max-width: 991px) {
    .services-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
    .services-mosaic > *:nth-child(n) { grid-column: span 1; grid-row: auto; }
    .services-mosaic > *:nth-child(1) { grid-column: span 2; }
    .services-mosaic > *:nth-child(1) .card-image,
    .services-mosaic > *:nth-child(1) .card-image--empty { height: 220px; }
}

@media (max-width: 575px) {
    .services-mosaic { grid-template-columns: 1fr; }
    .services-mosaic > *:nth-child(n) { grid-column: span 1; }
}

/* --- Ekip Bölümü --- */
.team-section { padding: 70px 0; background: var(--cream); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid transparent;
}

.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent-soft); }

.team-card .team-photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--light-bg);
    position: relative;
}

.team-card .team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-card .team-photo.no-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 600;
}

.team-card .team-body { padding: 18px 20px 22px; }
.team-card h4 { font-size: 1.05rem; margin-bottom: 2px; color: var(--primary); }
.team-card .team-role { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-dark); font-weight: 600; margin-bottom: 10px; }
.team-card .team-bio { font-size: 13px; color: var(--text-body); line-height: 1.55; font-style: italic; }
.team-card .team-bio::before { content: '"'; font-family: var(--font-heading); color: var(--accent); font-size: 1.4rem; margin-right: 4px; }

@media (max-width: 991px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .team-grid { grid-template-columns: 1fr; } }

/* --- Testimonials --- */
.testimonials-section { padding: 70px 0; background: var(--white); }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--cream);
    padding: 28px 26px;
    border-radius: var(--radius-md);
    position: relative;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }

.testimonial-card .quote-mark {
    position: absolute;
    top: 18px; right: 22px;
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--accent-soft);
    line-height: 1;
}

.testimonial-card .stars { color: var(--accent); margin-bottom: 12px; font-size: 14px; letter-spacing: 2px; }

.testimonial-card .t-text {
    font-size: 14.5px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 18px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-style: italic;
}

.testimonial-card .t-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.testimonial-card .t-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-sans); font-weight: 600; font-size: 14px;
    flex-shrink: 0;
}

.testimonial-card .t-meta { font-size: 13px; }
.testimonial-card .t-name { font-weight: 600; color: var(--primary); font-family: var(--font-sans); }
.testimonial-card .t-loc { font-size: 12px; color: var(--text-muted); }

@media (max-width: 991px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* --- WhatsApp Popup (mikro-etkileşim) --- */
.whatsapp-popup {
    position: fixed;
    bottom: 96px;
    right: 30px;
    width: 280px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 18px;
    z-index: 999;
    transform: translateY(20px) scale(0.92);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-popup.show { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }

.whatsapp-popup::before {
    content: '';
    position: absolute;
    bottom: -8px; right: 24px;
    width: 16px; height: 16px;
    background: var(--white);
    transform: rotate(45deg);
    box-shadow: 3px 3px 6px rgba(0,0,0,0.06);
}

.whatsapp-popup .wp-close {
    position: absolute;
    top: 8px; right: 10px;
    background: none; border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 16px;
    padding: 2px 6px;
}

.whatsapp-popup .wp-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 10px;
}

.whatsapp-popup .wp-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: #25d366; color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}

.whatsapp-popup .wp-name { font-family: var(--font-sans); font-weight: 600; font-size: 14px; color: var(--text-dark); }
.whatsapp-popup .wp-status { font-size: 11px; color: #25d366; display: flex; align-items: center; gap: 4px; }
.whatsapp-popup .wp-status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #25d366; }

.whatsapp-popup .wp-msg {
    background: var(--light-bg);
    padding: 10px 12px;
    border-radius: 4px 10px 10px 10px;
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.4;
    margin-bottom: 12px;
}

.whatsapp-popup .wp-btn {
    display: block;
    background: #25d366;
    color: var(--white);
    text-align: center;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-popup .wp-btn:hover { background: #1da851; color: var(--white); }

@media (max-width: 575px) { .whatsapp-popup { right: 15px; left: 15px; width: auto; } }

/* --- Hero slider override (eski, kalırsa fallback) --- */
/* .hero-section { display: none; } Removed because we are now using it again for Swiper */

/* --- Featured cards eski — artık kullanılmıyor --- */
.featured-cards { margin-top: 0; }

/* --- Accent renk güncelleme (service-card link hover) --- */
.service-card .card-body h4 a:hover { color: var(--accent-dark); }
.blog-card .card-body h4 a:hover { color: var(--accent-dark); }
.region-card h5 a:hover { color: var(--accent-dark); }
.region-card:hover { border-color: var(--accent); }
a { color: var(--primary); }

/* --- Region Cards New (for hizmet-bolgeleri) --- */
.region-card-new {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.region-card-new::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.region-card-new:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.region-card-new:hover::before {
    transform: scaleY(1);
}

.region-card-new .region-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.region-card-new:hover .region-card-icon {
    background: var(--primary);
    color: var(--white);
}

.region-card-new .region-card-info {
    flex-grow: 1;
    min-width: 0;
}

.region-card-new .region-card-info h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 3px;
    letter-spacing: -0.01em;
}

.region-card-new .region-card-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.region-card-new .region-card-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.region-card-new:hover .region-card-arrow {
    background: var(--primary);
    color: var(--white);
    transform: translateX(3px);
}

.regions-hero {
    background: var(--cream);
    padding: 28px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.regions-hero h2 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 600;
}

.region-select-custom {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.region-select-custom:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(30, 77, 92, 0.1);
    outline: none;
}

/* --- Regions Section New Layout --- */
.regions-section {
    background: var(--cream);
}

.regions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.regions-header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.regions-header-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    flex-shrink: 0;
}

.regions-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.regions-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0;
}

.regions-stats {
    display: flex;
    gap: 24px;
}

.region-stat-item {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid var(--border-color);
}

.region-stat-item:last-child {
    border-right: none;
}

.region-stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.region-stat-label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Layout: Sidebar + Content */
.regions-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
}

/* Sidebar */
.regions-sidebar {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.regions-sidebar-title {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.regions-category-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 500px;
    overflow-y: auto;
}

.regions-category-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: left;
}

.regions-category-btn:hover {
    background: var(--cream);
    border-color: var(--border-color);
}

.regions-category-btn.active {
    background: var(--primary);
    color: var(--white);
}

.regions-category-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.regions-category-btn.active .regions-category-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.regions-category-name {
    flex-grow: 1;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.25s ease;
}

.regions-category-btn.active .regions-category-name {
    color: var(--white);
}

.regions-category-count {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--light-bg);
    padding: 2px 8px;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.regions-category-btn.active .regions-category-count {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

/* Content Area */
.regions-content {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.region-grid-section {
    display: none;
}

.region-grid-section.active {
    display: block;
}

.region-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-color);
}

.region-grid-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 0;
}

.region-count-badge {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    background: var(--secondary);
    padding: 4px 12px;
    border-radius: 20px;
}

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

.region-grid-item {
    background: var(--cream);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.25s ease;
}

.region-grid-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.region-item-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.25s ease;
}

.region-grid-item:hover .region-item-link {
    background: var(--primary);
    color: var(--white);
}

.region-item-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 12px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.region-grid-item:hover .region-item-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

.region-item-name {
    flex-grow: 1;
    font-size: 13px;
    font-weight: 600;
}

.region-item-arrow {
    font-size: 12px;
    opacity: 0.5;
    transition: all 0.25s ease;
}

.region-grid-item:hover .region-item-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 992px) {
    .regions-header {
        flex-direction: column;
        text-align: center;
    }
    
    .regions-header-content {
        flex-direction: column;
    }
    
    .regions-stats {
        justify-content: center;
    }
    
    .regions-layout {
        grid-template-columns: 1fr;
    }
    
    .regions-sidebar {
        position: static;
    }
    
    .region-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .regions-stats {
        gap: 16px;
    }
    
    .region-stat-item {
        padding: 0 12px;
    }
    
    .region-stat-number {
        font-size: 1.5rem;
    }
    
    .region-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .regions-title {
        font-size: 1.4rem;
    }
    
    .region-grid {
        grid-template-columns: 1fr;
    }
}
a:hover { color: var(--accent-dark); }
.section-title h2 { font-family: var(--font-heading); font-weight: 600; letter-spacing: -0.015em; }

.contact-form-section { background: var(--primary); }
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }

/* --- Premium Corporate Slider --- */
.premium-hero-slider-wrap {
    position: relative;
    width: 100%;
}

.corporate-hero-slider {
    width: 100%;
    height: 75vh;
    min-height: 500px;
    max-height: 750px;
    background-color: var(--primary-dark);
}

.corporate-hero-slider .swiper-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transform: scale(1);
    transition: transform 10s ease; /* Ken burns effect base */
}

/* Ken burns effect when active */
.corporate-hero-slider .swiper-slide-active .slide-bg {
    transform: scale(1.08); /* Slow zoom in */
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(90deg, rgba(16, 42, 67, 0.9) 0%, rgba(16, 42, 67, 0.4) 60%, transparent 100%);
}

.slide-content-container {
    position: relative;
    z-index: 3;
    padding-top: 80px;
}

.slide-content {
    color: var(--white);
    padding-right: 30px;
}

.slide-content .eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    backdrop-filter: blur(4px);
}

.slide-content .eyebrow i {
    color: var(--accent);
    margin-right: 6px;
    font-size: 0.95rem;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slide-content .slide-lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 90%;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.slide-ctas {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-outline-light-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: transparent;
    text-decoration: none;
}

.btn-outline-light-custom:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-outline-light-custom i {
    font-size: 1.2rem;
}

.slide-features {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}

.slide-features i {
    color: var(--accent);
    margin-right: 8px;
}

.slide-features .divider {
    width: 1px;
    height: 15px;
    background: rgba(255,255,255,0.3);
}

/* Animations for slide content */
[data-animation="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.swiper-slide-active [data-animation="fade-up"] {
    opacity: 1;
    transform: translateY(0);
}

/* Delay staggered animations */
.swiper-slide-active [data-delay="0.2s"] { transition-delay: 0.2s; }
.swiper-slide-active [data-delay="0.4s"] { transition-delay: 0.4s; }
.swiper-slide-active [data-delay="0.6s"] { transition-delay: 0.6s; }
.swiper-slide-active [data-delay="0.8s"] { transition-delay: 0.8s; }
.swiper-slide-active [data-delay="1s"] { transition-delay: 1s; }

/* Navigation & Pagination */
.corporate-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.corporate-slider-nav .relative-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.corp-btn-prev, .corp-btn-next {
    position: static;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    margin: 0;
}

.corp-btn-prev:hover, .corp-btn-next:hover {
    background: var(--white);
    color: var(--primary);
}

.corp-btn-prev::after, .corp-btn-next::after {
    display: none;
}

.corp-btn-prev i, .corp-btn-next i {
    font-size: 1.2rem;
}

.corp-pagination.swiper-pagination {
    position: static;
    width: auto;
    display: flex;
    gap: 8px;
}

.corp-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    margin: 0;
    transition: all 0.3s ease;
}

.corp-pagination .swiper-pagination-bullet-active {
    width: 35px;
    background: var(--accent);
}

@media (max-width: 991px) {
    .corporate-hero-slider { height: 80vh; min-height: 550px; }
    .slide-content h1 { font-size: 3rem; }
}

@media (max-width: 767px) {
    .slide-overlay { background: linear-gradient(135deg, rgba(16, 42, 67, 0.95) 0%, rgba(16, 42, 67, 0.6) 100%); }
    .slide-content h1 { font-size: 2.2rem; margin-bottom: 15px; }
    .slide-content .slide-lead { font-size: 1rem; margin-bottom: 30px; }
    .slide-ctas { flex-direction: column; width: 100%; gap: 10px; margin-bottom: 30px; }
    .btn-primary-custom.btn-lg, .btn-outline-light-custom.btn-lg { width: 100%; justify-content: center; }
    .slide-features { flex-direction: column; align-items: flex-start; gap: 10px; }
    .slide-features .divider { display: none; }
    .corporate-slider-nav { bottom: 25px; }
}

/* Grid Layout for Sub Services (col-6 cards) */
.corp-sub-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.corp-sub-service-grid .corp-sub-service-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    transition: var(--transition);
    text-decoration: none;
    height: 100%;
}

.corp-sub-service-grid .corp-sub-service-item:hover {
    border-color: var(--primary-light);
    background: var(--light-bg);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.corp-sub-service-grid .corp-sub-service-content {
    width: 100%;
}

.corp-sub-service-grid .corp-sub-service-content h5 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--primary-dark);
    font-weight: 600;
    transition: var(--transition);
    line-height: 1.3;
}

.corp-sub-service-grid .corp-sub-service-item:hover .corp-sub-service-content h5 {
    color: var(--primary);
}

.corp-sub-service-grid .corp-sub-service-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.corp-sub-service-grid .btn-view-service {
    margin-top: 14px;
    width: 100%;
    justify-content: center;
}

@media (max-width: 576px) {
    .corp-sub-service-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Kurumsal Hizmet Detay --- */
.corp-sub-services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.corp-sub-service-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-right: 15px;
    flex-shrink: 0;
}

.corp-sub-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-dark);
    transition: var(--transition);
    text-decoration: none;
}

.corp-sub-service-item:hover {
    border-color: var(--primary-light);
    background: var(--light-bg);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.corp-sub-service-content h5 {
    font-size: 1.05rem;
    margin-bottom: 2px;
    color: var(--primary-dark);
    font-weight: 600;
    transition: var(--transition);
}

.corp-sub-service-item:hover .corp-sub-service-content h5 {
    color: var(--primary);
}

.corp-sub-service-content p {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 0;
}

.corp-sub-service-item i {
    color: var(--primary);
    font-size: 1.1rem;
    opacity: 0.5;
    transition: var(--transition);
}

.corp-sub-service-item:hover i {
    opacity: 1;
}

/* Corporate Action Banner (3-buttons) */
.corp-action-banner {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.corp-action-banner-text h4 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.corp-action-banner-text p {
    font-size: 14px;
    color: var(--text-body);
    margin: 0;
}

.corp-action-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.corp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.corp-btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: var(--white);
}

.corp-btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.corp-btn-solid {
    background: var(--primary);
    color: var(--white);
    border: 1px solid var(--primary);
}

.corp-btn-solid:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

/* Corporate Sidebar */
.corp-sidebar-box {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 26px 24px;
    box-shadow: var(--shadow-sm);
}

.corp-sidebar-box h4.widget-title {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.corp-sidebar-box p {
    font-size: 14px;
    color: var(--text-body);
    margin-bottom: 20px;
}

.corp-sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.corp-sidebar-menu li {
    margin-bottom: 4px;
}

.corp-sidebar-menu li:last-child {
    margin-bottom: 0;
}

.corp-sidebar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--text-body);
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}

.corp-sidebar-link i {
    font-size: 12px;
    color: var(--secondary);
    transition: var(--transition);
}

.corp-sidebar-link:hover, .corp-sidebar-link.active {
    background: var(--light-bg);
    color: var(--primary-dark);
}

.corp-sidebar-link:hover i, .corp-sidebar-link.active i {
    transform: translateX(3px);
    color: var(--primary);
}
