/**
 * Miltemizlik Temizlik Hizmetleri
 * Modern & Professional CSS Styles
 */

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #06b6d4;
    --light-color: #f8fafc;
    --dark-color: #1e293b;

    /* Light Mode Colors */
    --bg-color: #ffffff;
    --text-color: #1e293b;
    --text-muted: #64748b;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-size-base: 1rem;
    --line-height-base: 1.6;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

[data-theme="dark"] {
    --bg-color: #0f172a;
    --text-color: #f1f5f9;
    --text-muted: #94a3b8;
    --card-bg: #1e293b;
    --border-color: #334155;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}


/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color var(--transition-base), color var(--transition-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-muted);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.top-bar-link:hover {
    color: white;
    transform: translateY(-1px);
}

.top-bar-link i {
    font-size: 1rem;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: flex-end;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all var(--transition-base);
    font-size: 0.875rem;
}

.social-icon:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 1.125rem 0;
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
}

[data-theme="dark"] .navbar {
    background: rgba(30, 41, 59, 0.98) !important;
    border-bottom: 1px solid rgba(51, 65, 85, 0.8);
}

[data-theme="dark"] .navbar.scrolled {
    background: rgba(30, 41, 59, 0.98) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all var(--transition-base);
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--primary-dark) !important;
}

.brand-logo-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    max-height: 55px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 8px rgba(6, 182, 212, 0.15));
}

.brand-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: logoGlowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes logoGlowPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.navbar-brand:hover .brand-logo {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 6px 20px rgba(6, 182, 212, 0.3));
}

.navbar-brand:hover .brand-logo-glow {
    animation: logoGlowPulseHover 1.5s ease-in-out infinite;
}

/* Koyu/Açık Mod Logo Görünürlüğü */
.brand-logo-dark {
    display: none;
}

[data-theme="dark"] .brand-logo-light {
    display: none;
}

[data-theme="dark"] .brand-logo-dark {
    display: block;
}

/* Eğer dark logo yüklenmemişse (DOM'da yoksa), light logo her zaman görünsün */
[data-theme="dark"] .brand-logo-light:only-child {
    display: block !important;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
}

@keyframes logoGlowPulseHover {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.4);
    }
}

/* Navbar scroll olduğunda logo küçülsün */
.navbar.scrolled .brand-logo {
    max-height: 42px;
}

.navbar.scrolled .brand-logo-glow {
    opacity: 0.2;
}

/* Dark theme glow daha parlak */
[data-theme="dark"] .brand-logo {
    filter: drop-shadow(0 2px 12px rgba(6, 182, 212, 0.25));
}

[data-theme="dark"] .brand-logo-glow {
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
}

[data-theme="dark"] .navbar-brand:hover .brand-logo {
    filter: drop-shadow(0 6px 24px rgba(6, 182, 212, 0.45));
}

.brand-content {
    display: flex;
    align-items: center;
}

.brand-text {
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.navbar-nav {
    gap: 0.25rem;
    align-items: center;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 600;
    padding: 0.75rem 1.125rem !important;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    position: relative;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0.125rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-full);
    transition: width var(--transition-base), opacity var(--transition-base);
    opacity: 0;
}

.nav-link:hover::before {
    width: 60%;
    opacity: 1;
}

.nav-link.active::before {
    width: 70%;
    opacity: 1;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(37, 99, 235, 0.08);
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(37, 99, 235, 0.12);
    font-weight: 700;
}

.nav-link.active::before {
    width: 80% !important;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.nav-text {
    position: relative;
    z-index: 1;
}

/* Modern Hamburger Menu */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: transparent;
    cursor: pointer;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Appointment Button */
.btn-appointment {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white !important;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
    transition: all var(--transition-base);
    border: none;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn-appointment::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-appointment:hover::before {
    left: 100%;
}

.btn-appointment:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    color: white !important;
}

.btn-appointment:active {
    transform: translateY(0);
}


/* Modern Hero Section */
.hero-section-modern {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--info-color) 100%);
    width: 100%;
}

.hero-section-modern.hero-default {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-section-modern .carousel {
    height: 100% !important;
    width: 100% !important;
    position: relative;
    margin: 0;
    padding: 0;
}

.hero-section-modern .carousel-inner {
    height: 100% !important;
    width: 100% !important;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: block;
}

.hero-section-modern .carousel-inner::before,
.hero-section-modern .carousel-inner::after {
    display: none !important;
}

.hero-section-modern .carousel-inner>.carousel-item {
    height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll;
    position: absolute !important;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    transform: translateX(0) !important;
    z-index: 1;
}

.hero-section-modern .carousel-inner>.carousel-item .parallax-bg {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 0;
    transition: transform 0.1s ease-out;
}

.hero-section-modern .carousel-inner>.carousel-item.active,
.hero-section-modern .carousel-inner>.carousel-item.carousel-item-start,
.hero-section-modern .carousel-inner>.carousel-item.carousel-item-end,
.hero-section-modern .carousel-inner>.carousel-item.carousel-item-next,
.hero-section-modern .carousel-inner>.carousel-item.carousel-item-prev {
    transform: translateX(0) !important;
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.75) 0%, rgba(30, 64, 175, 0.75) 50%, rgba(6, 182, 212, 0.75) 100%);
    z-index: 2;
}

.hero-content-modern {
    position: relative;
    z-index: 3;
    padding: 0;
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);
    border: none;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    color: var(--primary-dark);
}

.carousel-indicators-modern {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    gap: 0.75rem;
}

.carousel-indicators-modern button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    transition: all var(--transition-base);
    padding: 0;
    margin: 0;
}

.carousel-indicators-modern button.active {
    background: white;
    width: 40px;
    border-radius: var(--radius-full);
}

.carousel-control-prev-modern,
.carousel-control-next-modern {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    z-index: 15;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-control-prev-modern:hover,
.carousel-control-next-modern:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.05);
    color: white;
}

.carousel-control-prev-modern {
    left: 1.5rem;
}

.carousel-control-next-modern {
    right: 1.5rem;
}

/* Slider Progress Bar */
.carousel-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 15;
    overflow: hidden;
}

.carousel-progress-bar {
    height: 100%;
    background: white;
    width: 0%;
    transition: width linear;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Parallax Effect */
.hero-section-modern .carousel-item {
    will-change: transform;
}

/* Modern Section Styles */
.section-modern {
    padding: 5rem 0;
    position: relative;
}

.section-modern .container {
    max-width: 1200px;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
}

.section-title-modern {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 400;
}

/* Modern Service Cards */
.services-section {
    background: var(--bg-color);
}

.service-card-modern {
    height: 100%;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: visible;
    transition: all var(--transition-base);
    margin-bottom: 2rem;
}

.service-card-modern:hover {
    transform: translateY(-12px);
}

.service-card-inner {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.service-card-modern:hover .service-card-inner {
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-color);
}

.service-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(37, 99, 235, 0.8), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card-modern:hover .service-image {
    transform: scale(1.15);
}

.service-card-modern:hover .service-overlay {
    opacity: 1;
}

.service-icon-wrapper {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(6, 182, 212, 0.1));
}

.service-icon-large {
    font-size: 4.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition-base);
}

.service-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Modern CTA Sections */
.cta-section-modern {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.cta-1 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--info-color) 100%);
    color: white;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);
    border: none;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    color: var(--primary-dark);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    border: 2px solid white;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.cta-2 {
    background: var(--light-color);
}

.cta-box-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-box-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-box-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.cta-box-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.btn-cta-large {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-size: 1.125rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);
    border: none;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    color: var(--primary-dark);
}

/* Modern Region Cards */
.regions-section {
    background: var(--bg-color);
}

.region-card-modern {
    background: var(--card-bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.region-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-color);
}

.region-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.region-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.region-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(37, 99, 235, 0.8), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.region-card-modern:hover .region-image {
    transform: scale(1.15);
}

.region-card-modern:hover .region-overlay {
    opacity: 1;
}

.region-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.region-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.region-title {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.region-description {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
    line-height: 1.7;
}

.region-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all var(--transition-base);
}

.region-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Hero Section (Old - Keep for compatibility) */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, var(--info-color) 100%);
    overflow: hidden;
    padding: var(--spacing-2xl) 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--bg-color);
    clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-section .lead {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.text-shadow {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Carousel Styles */
.carousel {
    position: relative;
}

/* Genel carousel stilleri - hero-section-modern dışındaki carousel'ler için */
.carousel-item:not(.hero-section-modern .carousel-item) {
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-indicators {
    margin-bottom: var(--spacing-lg);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    transition: all var(--transition-fast);
}

.carousel-indicators button.active {
    background: white;
    width: 30px;
    border-radius: var(--radius-full);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: var(--spacing-lg);
}

.carousel-control-next {
    right: var(--spacing-lg);
}

/* Section Styles */
.section {
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--info-color));
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Card Styles */
.card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

.card-body {
    padding: var(--spacing-md);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
}

.card-text {
    color: var(--text-muted);
    flex-grow: 1;
    margin-bottom: var(--spacing-md);
}

/* Service Cards */
.service-card {
    border: none;
    background: var(--card-bg);
}

.service-card .card-img-top {
    height: 220px;
}

.service-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    display: block;
}

/* Blog Cards */
.blog-card {
    border: none;
}

.blog-card .card-img-top {
    height: 250px;
}

.blog-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.blog-meta i {
    color: var(--primary-color);
}

/* Button Styles */
.btn {
    font-weight: 600;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    text-transform: none;
    letter-spacing: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-light {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

.btn-light:hover {
    background: var(--light-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

.btn-lg {
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 1.125rem;
}

/* Theme Toggle */
.theme-toggle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    background: var(--card-bg);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    cursor: pointer;
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: rotate(15deg) scale(1.1);
}

/* Fixed Buttons (WhatsApp & Call) */
.fixed-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-btn,
.call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
    position: relative;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.call-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.whatsapp-btn:hover,
.call-btn:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    color: white;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    }
}

/* Footer */
footer {
    background: var(--dark-color) !important;
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

footer .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

footer a:hover {
    color: white;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

.social-link-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-base);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.social-link-footer:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-logo-img {
    max-height: 60px;
    width: auto;
    transition: transform var(--transition-base);
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: var(--spacing-lg) 0;
}

/* CEPİX Link Styling */
footer a[href*="cepix.com.tr"] {
    position: relative;
    transition: all var(--transition-base);
}

footer a[href*="cepix.com.tr"]:hover {
    transform: translateY(-2px);
}

footer a[href*="cepix.com.tr"] span {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-base);
}

footer a[href*="cepix.com.tr"]:hover span {
    background: linear-gradient(135deg, #0891b2, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.5));
}

/* Form Styles */
.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--card-bg);
    color: var(--text-color);
    transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: var(--card-bg);
    color: var(--text-color);
}

.form-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: var(--spacing-xs);
}

/* Background Utilities */
.bg-light {
    background-color: var(--light-color) !important;
}

.bg-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
}

.bg-dark {
    background-color: var(--dark-color) !important;
}

/* Utilities */
.text-muted {
    color: var(--text-muted) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow {
    box-shadow: var(--shadow) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: var(--spacing-md);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .top-bar {
        display: none;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    .navbar-nav {
        margin-top: var(--spacing-sm);
        padding: var(--spacing-sm) 0;
    }

    .nav-link {
        padding: 0.875rem 1rem !important;
        border-radius: var(--radius-md);
    }

    .btn-appointment {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section-modern {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
    }

    .hero-section-modern .carousel-inner>.carousel-item {
        height: 100% !important;
        background-attachment: scroll !important;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-modern {
        padding: 3.5rem 0;
    }

    .cta-section-modern {
        padding: 4rem 0;
    }

    .section-title-modern {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.125rem;
    }

    .cta-box-title {
        font-size: 1.5rem;
    }

    .carousel-control-prev-modern,
    .carousel-control-next-modern {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-control-prev-modern {
        left: 1rem;
    }

    .carousel-control-next-modern {
        right: 1rem;
    }

    .carousel-progress-container {
        height: 3px;
    }

    .hero-section {
        min-height: 500px;
        padding: var(--spacing-xl) 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1.125rem;
    }

    .section {
        padding: var(--spacing-xl) 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .fixed-buttons {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn,
    .call-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .brand-logo {
        max-height: 40px;
        max-width: 160px;
    }

    .brand-text {
        font-size: 1.25rem;
    }

    .service-image-wrapper,
    .region-image-wrapper {
        height: 200px;
    }

    .card-img-top {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn-lg {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {

    .fixed-buttons,
    .navbar,
    footer,
    .theme-toggle {
        display: none !important;
    }
}

/* Loading Spinner */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Fixed Action Buttons (WhatsApp & Call) */
.fixed-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.whatsapp-btn,
.call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.whatsapp-btn {
    background-color: #25d366;
    animation: whatsappPulse 3s infinite;
}

.call-btn {
    background-color: #0d6efd;
    animation: callShake 5s infinite;
    animation-delay: 1.5s;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: scale(1.1) translateY(-5px);
    color: white;
}

.call-btn:hover {
    background-color: #0b5ed7;
    transform: scale(1.1) translateY(-5px);
    color: white;
}

/* Animations */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: scale(1);
    }

    10% {
        transform: scale(1.1);
    }

    20% {
        transform: scale(1);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: scale(1);
    }
}

@keyframes callShake {
    0% {
        transform: rotate(0) scale(1);
    }

    5% {
        transform: rotate(15deg) scale(1.1);
    }

    10% {
        transform: rotate(-15deg) scale(1.1);
    }

    15% {
        transform: rotate(15deg) scale(1.1);
    }

    20% {
        transform: rotate(-15deg) scale(1.1);
    }

    25% {
        transform: rotate(0) scale(1);
    }

    100% {
        transform: rotate(0) scale(1);
    }
}

/* Tooltip on hover */
.whatsapp-btn::before,
.call-btn::before {
    content: attr(title);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10000;
}

.whatsapp-btn::after,
.call-btn::after {
    content: '';
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10000;
}

.whatsapp-btn:hover::before,
.call-btn:hover::before,
.whatsapp-btn:hover::after,
.call-btn:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .fixed-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .whatsapp-btn,
    .call-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    /* Mobilde tooltip gösterme */
    .whatsapp-btn::before,
    .whatsapp-btn::after,
    .call-btn::before,
    .call-btn::after {
        display: none !important;
    }
}