/* ==========================================================================
   HEMŞİR GÖKHAN PAÇAL - HASTA BAKIM HİZMETLERİ - CORE DESIGN SYSTEM & STYLING
   ========================================================================== */

/* 1. CSS Custom Properties / Color System */
:root {
    --primary-color: #0F4C81;        /* Deep Medical Navy */
    --primary-hover: #0A365C;
    --primary-light: #EBF3FA;
    --secondary-color: #0077B6;      /* Healthcare Royal Blue */
    --accent-color: #00B4D8;         /* Cyan Accent */
    --whatsapp-color: #25D366;       /* WhatsApp Green */
    --whatsapp-hover: #1EBE57;
    --instagram-color: #E1306C;      /* Instagram Gradient Base */
    --text-dark: #1E293B;            /* Slate Dark Body */
    --text-muted: #64748B;           /* Slate Muted Text */
    --bg-light: #F8FAFC;             /* Light Grayish Background */
    --bg-white: #FFFFFF;
    --border-color: #E2E8F0;
    --shadow-sm: 0 2px 4px rgba(15, 76, 129, 0.05);
    --shadow-md: 0 4px 20px rgba(15, 76, 129, 0.08);
    --shadow-lg: 0 10px 30px rgba(15, 76, 129, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* 2. Global Resets & Base Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

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

/* Container Utilities */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.max-w-800 {
    max-width: 800px;
    margin: 0 auto;
}

.max-w-1000 {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.text-center {
    text-align: center;
}

/* Page Header Hero Banner (Kompakt ve Şık Üst Başlık Bannerı) */
.page-header-banner {
    padding: 42px 0 32px 0;
    background: linear-gradient(135deg, #F0F6FA 0%, #FFFFFF 100%);
    border-bottom: 1px solid var(--border-color);
}

.page-header-banner .section-header {
    margin-bottom: 0;
}

/* Scroll Reveal Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Bottom Navigation Hidden by Default on Desktop */
.mobile-bottom-nav {
    display: none;
}

/* Section Header Shared Styling */
.section-header {
    margin-bottom: 45px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.section-tag.light {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.section-title {
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 26px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease-out, height 0.5s ease-out;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(15, 76, 129, 0.25);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 76, 129, 0.35);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-call {
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 10px 20px;
    font-size: 0.95rem;
}

.btn-call:hover {
    background-color: var(--primary-color);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: #ffffff;
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
}

.btn-lg {
    padding: 15px 32px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   3. TOP BAR & NAVBAR HEADER STYLING
   ========================================================================== */
.top-bar {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.top-info, .top-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-bar .divider {
    opacity: 0.4;
}

.top-contact a:hover {
    color: var(--accent-color);
}

/* Header & Glassmorphism Navbar */
.navbar-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar-header.scrolled {
    box-shadow: 0 4px 25px rgba(15, 76, 129, 0.12);
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-box {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(15, 76, 129, 0.2);
    transition: var(--transition);
}

.brand-logo:hover .logo-icon-box {
    transform: rotate(5deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.brand-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

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

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
}

/* Mobile Drawer Navigation */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-white);
    z-index: 2000;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    transition: var(--transition);
}

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

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

.drawer-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-muted);
    cursor: pointer;
}

.drawer-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.drawer-contact {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   4. HERO SECTION STYLING (BOYLU BOYUNCA SLIDER KONTEYNERİ)
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 60px 0 70px 0;
    background: linear-gradient(135deg, #F0F6FA 0%, #FFFFFF 100%);
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(15, 76, 129, 0.08);
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--secondary-color);
    position: relative;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 35px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.hero-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.hero-feature-item i {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.hero-feature-item strong {
    display: block;
    font-size: 0.88rem;
    color: var(--primary-color);
}

.hero-feature-item span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-wide-banner {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid #ffffff;
    transition: var(--transition);
}

.hero-wide-banner:hover {
    box-shadow: 0 15px 40px rgba(15, 76, 129, 0.18);
}

.hero-wide-banner .hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.hero-wide-banner:hover .hero-img {
    transform: scale(1.02);
}

/* Minimal Floating Image Badges with Floating Animation */
.floating-badge {
    position: absolute;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    animation: floatSubtle 4s ease-in-out infinite alternate;
}

@keyframes floatSubtle {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

.badge-location {
    top: 18px;
    left: 18px;
    background: rgba(15, 76, 129, 0.88);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}

.badge-experience {
    bottom: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-color);
    border: 1px solid rgba(15, 76, 129, 0.15);
    animation-delay: 2s;
}

.badge-experience .badge-num {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.badge-experience .badge-lbl {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.1;
}

/* ==========================================================================
   5. SERVICES SECTION STYLING
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 180, 216, 0.4);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon-box {
    width: 65px;
    height: 65px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: rotateY(180deg);
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.service-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.service-list li {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-list li i {
    color: var(--secondary-color);
}

/* ==========================================================================
   6. WHY US SECTION STYLING
   ========================================================================== */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.why-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.why-icon {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: scale(1.1);
}

.why-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ==========================================================================
   7. STATS COUNTER BAR
   ========================================================================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    color: #ffffff;
    padding: 45px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 10px 4px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
    color: #ffffff;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ==========================================================================
   8. ABOUT SECTION STYLING
   ========================================================================== */
.about-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-box:hover .about-img {
    transform: scale(1.03);
}

.about-paragraph {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 18px;
}

.about-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 35px 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.98rem;
}

.check-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* ==========================================================================
   9. TESTIMONIALS & FAQ STYLING (GENİŞ VE PROFESYONEL S.S.S)
   ========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #ffffff;
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: #FFC107;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.review-text {
    font-style: italic;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.reviewer-info strong {
    display: block;
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1rem;
}

.reviewer-info span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* FAQ Accordion Styling */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-expanded {
    max-width: 1050px;
    margin: 0 auto;
}

.accordion-item {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.accordion-item.active {
    border-color: var(--border-color);
    border-left-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.accordion-header {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    text-align: left;
}

.accordion-header span {
    display: flex;
    align-items: center;
}

.faq-icon-badge {
    color: var(--secondary-color);
    margin-right: 14px;
    font-size: 1.15rem;
}

.accordion-icon {
    font-size: 0.95rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    padding: 0 28px;
}

.accordion-item.active .accordion-content {
    padding-bottom: 24px;
}

.accordion-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.65;
}

/* FAQ CTA Callout Card */
.faq-cta-card {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    margin-top: 50px;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.faq-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-cta-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.faq-cta-text h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.faq-cta-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ==========================================================================
   10. CONTACT SECTION STYLING (MİNİMAL VE ZERAFETLİ MASAÜSTÜ KART)
   ========================================================================== */
.contact-grid.centered {
    display: flex;
    justify-content: center;
}

.contact-info-card {
    background: linear-gradient(135deg, #0F4C81 0%, #0A365C 100%);
    color: #ffffff;
    padding: 38px 45px;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(15, 76, 129, 0.15);
    width: 100%;
    max-width: 1100px;
}

.contact-card-title {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 8px;
}

.contact-card-desc {
    opacity: 0.85;
    font-size: 0.95rem;
    margin-bottom: 30px;
    max-width: 850px;
}

.contact-details-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 24px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.contact-detail-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text strong {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 2px;
}

.contact-text a, .contact-text span {
    font-size: 0.98rem;
    font-weight: 700;
}

.contact-text a:hover {
    color: var(--accent-color);
}

/* ==========================================================================
   11. 81 İL ŞEHİR BUTONLARI DİZİN ALANI (FOOTER ÜSTÜ)
   ========================================================================== */
.city-directory-section {
    border-top: 1px solid var(--border-color);
    padding: 60px 0;
}

.city-buttons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
}

.city-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(15, 76, 129, 0.04);
    text-decoration: none;
}

.city-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15, 76, 129, 0.2);
}

.city-btn i {
    color: var(--secondary-color);
    font-size: 0.8rem;
    transition: color 0.2s ease;
    flex-shrink: 0;
}

.city-btn:hover i {
    color: #ffffff;
}

/* ==========================================================================
   12. FOOTER STYLING
   ========================================================================== */
.footer {
    background-color: #0A1E30;
    color: #ffffff;
    padding-top: 70px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-desc {
    opacity: 0.75;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    opacity: 0.75;
    font-size: 0.9rem;
}

.footer-col ul a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom-wrapper {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-legal a {
    margin-left: 20px;
}

.footer-legal a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   13. FLOATING ACTION BUTTONS (MASAÜSTÜNDE SAĞ EN ALT)
   ========================================================================== */
.floating-actions-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-decoration: none;
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* WhatsApp Pulse Button */
.btn-float-whatsapp {
    background-color: var(--whatsapp-color);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Instagram Gradient Button */
.btn-float-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
}

/* Phone Floating Button */
.btn-float-phone {
    background-color: var(--secondary-color);
}

/* Back to top Button */
.btn-scroll-top {
    background-color: var(--primary-color);
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
}

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

/* ==========================================================================
   14. RESPONSIVE BREAKPOINTS & MOBİL BEYAZ YÜZEN ŞIK KAPSÜL ALT DOCK BAR
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-subtitle {
        margin: 0 auto 22px auto;
    }

    .hero-features {
        max-width: 600px;
        margin: 0 auto 35px auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid, .why-us-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-details-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 90px;
    }

    .top-bar {
        display: none;
    }

    .nav-menu, .header-actions .btn-call {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .floating-actions-container {
        display: none !important; /* Dikey ikonları mobilde gizle */
    }

    /* Mobilde Beyaz Yüzen Ultra-Profesyonel Kapsül Menü Dock */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 12px;
        left: 16px;
        right: 16px;
        width: calc(100% - 32px);
        height: 68px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(15, 76, 129, 0.14);
        border-radius: 22px;
        box-shadow: 0 10px 30px rgba(15, 76, 129, 0.18);
        z-index: 10000;
        justify-content: space-around;
        align-items: center;
        padding: 4px 6px;
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        flex: 1;
        text-align: center;
        background: none;
        border: none;
        cursor: pointer;
        padding: 2px 0;
        transition: var(--transition);
        text-decoration: none;
        font-family: var(--font-heading);
    }

    .mobile-nav-icon-box {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        transition: transform 0.2s ease;
        color: #ffffff;
        position: relative;
        flex-shrink: 0;
    }

    .mobile-nav-item:active .mobile-nav-icon-box {
        transform: scale(1.12);
    }

    /* İkon Daireleri */
    .mobile-nav-item.nav-call .mobile-nav-icon-box {
        background: linear-gradient(135deg, #0077B6, #0F4C81);
        box-shadow: 0 3px 10px rgba(0, 119, 182, 0.3);
    }

    .mobile-nav-item.nav-whatsapp .mobile-nav-icon-box {
        background: linear-gradient(135deg, #25D366, #128C7E);
        box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35);
    }

    /* Kusursuz Çözünürlüklü Orijinal Instagram Gradient Logosu */
    .mobile-nav-item.nav-instagram .mobile-nav-icon-box {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        box-shadow: 0 3px 10px rgba(225, 48, 108, 0.35);
    }

    .mobile-nav-item.nav-top .mobile-nav-icon-box {
        background: #F0F6FA;
        color: var(--primary-color);
        border: 1px solid var(--border-color);
    }

    .mobile-nav-item span {
        color: var(--text-dark);
        font-size: 0.73rem;
        font-weight: 700;
        line-height: 1.1;
        letter-spacing: 0.1px;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .why-card {
        padding: 18px 14px;
    }

    .why-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .why-card h4 {
        font-size: 0.98rem;
        margin-bottom: 6px;
    }

    .why-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    /* Mobilde Hizmet Kartları Her Satırda 1 Adet */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .service-icon-box {
        width: 58px;
        height: 58px;
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

    .service-title {
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .service-text {
        font-size: 0.92rem;
        margin-bottom: 16px;
    }

    .service-list {
        padding-top: 14px;
        gap: 8px;
    }

    .service-list li {
        font-size: 0.85rem;
    }

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

    .review-card {
        padding: 18px 14px;
    }

    .review-text {
        font-size: 0.82rem;
        margin-bottom: 12px;
    }

    .stats-section {
        padding: 30px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 4px;
    }

    .stat-item {
        padding: 4px 1px;
    }

    .stat-number {
        font-size: 1.2rem;
        margin-bottom: 2px;
    }

    .stat-label {
        font-size: 0.65rem;
        line-height: 1.15;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .contact-details-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom-wrapper {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 10px;
    }

    .hero-wide-banner .hero-img {
        height: 300px;
    }

    .floating-badge {
        padding: 4px 10px;
    }

    .badge-location {
        top: 10px;
        left: 10px;
        font-size: 0.7rem;
    }

    .badge-experience {
        bottom: 10px;
        right: 10px;
    }

    .badge-experience .badge-num {
        font-size: 0.9rem;
    }

    .badge-experience .badge-lbl {
        font-size: 0.65rem;
    }

    .faq-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 20px;
    }

    .faq-cta-content {
        flex-direction: column;
    }

    .faq-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .faq-cta-buttons .btn {
        width: 100%;
    }

    /* Mobilde 81 İl Şehir Butonları: Kusursuz Hizalanmış Tam 2 Eşit Sütunlu Izgara (Grid) */
    .city-directory-section {
        padding: 45px 0;
    }

    .city-buttons-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 20px;
        width: 100%;
    }

    .city-btn {
        width: 100%;
        padding: 10px 6px;
        font-size: 0.73rem;
        border-radius: var(--radius-full);
        justify-content: center;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        box-shadow: 0 2px 4px rgba(15, 76, 129, 0.04);
    }

    .city-btn i {
        font-size: 0.7rem;
    }

    .page-header-banner {
        padding: 30px 0 22px 0;
    }

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