/* =========================================
   Profesyonel Tıkanıklık Açma
   Temiz & Deniz Mavisi Tema
   ========================================= */

:root {
    /* Deniz Mavisi Renk Paleti */
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #2563eb;
    --blue-600: #1d4ed8;
    --blue-700: #1e40af;
    --blue-800: #1e3a8a;
    --blue-900: #172554;

    --primary: #1d4ed8;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --primary-hover: #2563eb;

    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    --text-dark: #1e293b;
    --text-body: #475569;
    --text-light: #64748b;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-blue: 0 8px 30px rgba(29, 78, 216, 0.25);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--text-body);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
}

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

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

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

::selection {
    background: var(--primary);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--blue-300);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ==========================================
   NAVBAR
   ========================================== */
.custom-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    padding: 14px 0;
    transition: var(--transition);
    z-index: 1000;
}

.custom-navbar.scrolled {
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.custom-navbar .navbar-brand {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.custom-navbar .navbar-brand i {
    color: var(--primary);
    font-size: 1.5rem;
}

.custom-navbar .nav-link {
    color: var(--text-body) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 8px 18px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.custom-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 1px;
}

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

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

.navbar-toggler {
    border: 1px solid var(--gray-300) !important;
    padding: 6px 10px;
}

/* Call Button */
.call-now-btn {
    background: var(--primary) !important;
    border: none !important;
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 10px 24px !important;
    border-radius: var(--radius-full) !important;
    box-shadow: var(--shadow-blue);
    transition: var(--transition);
}

.call-now-btn:hover {
    background: var(--primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(29, 78, 216, 0.35);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    background: linear-gradient(135deg, var(--blue-800) 0%, var(--primary) 50%, var(--blue-600) 100%);
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

/* Su dalgaları */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23ffffff' d='M0,32L60,37.3C120,43,240,53,360,53.3C480,53,600,43,720,37.3C840,32,960,32,1080,37.3C1200,43,1320,53,1380,58.7L1440,64L1440,80L0,80Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    z-index: 2;
}

/* Yüzen su dalgaları animasyonu */
.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='rgba(255,255,255,0.08)' d='M0,50L48,45C96,40,192,30,288,35C384,40,480,60,576,65C672,70,768,60,864,50C960,40,1056,30,1152,35C1248,40,1344,60,1392,70L1440,80L1440,100L0,100Z'/%3E%3C/svg%3E") repeat-x;
    animation: waveMove 8s linear infinite;
    z-index: 1;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Floating bubbles */
.hero-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    z-index: 1;
}

.hero-bubble-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
}

.hero-bubble-2 {
    width: 200px;
    height: 200px;
    bottom: 100px;
    left: -60px;
}

.hero-bubble-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 30%;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    line-height: 1.15;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: flex;
    gap: 36px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

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

.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1.1;
}

.hero-stat .stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    z-index: 3;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.hero-image-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* Floating cards on hero */
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    z-index: 5;
    animation: floatCard 3s ease-in-out infinite;
}

.floating-card-1 {
    bottom: 20px;
    left: -25px;
}

.floating-card-2 {
    top: 20px;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.floating-card .fc-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 6px;
}

.floating-card .fc-title {
    font-size: 0.72rem;
    color: var(--text-light);
    margin-bottom: 2px;
}

.floating-card .fc-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* ==========================================
   BUTTONS (Genel)
   ========================================== */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-blue);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-primary-custom:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(29, 78, 216, 0.35);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-white:hover {
    background: var(--gray-50);
    transform: translateY(-2px);
    color: var(--primary);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: var(--white);
}

.btn-cta {
    background: #fbbf24;
    color: var(--primary-dark);
    border: none;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    animation: pulseGlow 2.5s infinite;
}

.btn-cta:hover {
    background: #f59e0b;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.5);
    color: var(--primary-dark);
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    }

    50% {
        box-shadow: 0 6px 35px rgba(251, 191, 36, 0.6);
    }
}

/* ==========================================
   SECTIONS GENERAL
   ========================================== */
.section {
    padding: 90px 0;
    position: relative;
}

.section-white {
    background: var(--white);
}

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

.section-blue {
    background: linear-gradient(135deg, var(--blue-800) 0%, var(--primary) 100%);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--blue-50);
    border: 1px solid var(--blue-200);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.section-label i {
    font-size: 0.75rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.8px;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 1.02rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
}

/* ==========================================
   SERVICE CARDS
   ========================================== */
.service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue-200);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-md);
    background: var(--blue-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.08);
}

.service-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 18px;
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    flex-grow: 1;
    margin-bottom: 0;
}

.service-card .card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 16px;
    transition: var(--transition);
}

.service-card:hover .card-arrow {
    gap: 12px;
}

/* ==========================================
   FEATURES / WHY US
   ========================================== */
.feature-card {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

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

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--blue-50);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.15rem;
    transition: var(--transition);
}

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

.feature-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.86rem;
    color: var(--text-light);
    margin: 0;
}

/* About Image */
.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-blue);
    text-align: center;
    font-weight: 700;
}

.experience-badge .exp-number {
    font-size: 2rem;
    display: block;
    line-height: 1;
}

.experience-badge .exp-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* ==========================================
   COUNTER SECTION
   ========================================== */
.counter-section {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 60px 0;
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--blue-800) 0%, var(--primary) 50%, var(--blue-600) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    bottom: -80px;
    left: -80px;
}

.cta-box {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-box h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-box p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto 30px;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding-top: 70px;
}

.footer-brand {
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand i {
    color: var(--blue-400);
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--gray-400);
    max-width: 300px;
    line-height: 1.7;
}

.footer-title {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 18px;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--blue-300);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-item .fci-icon {
    width: 38px;
    height: 38px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-400);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.footer-contact-item span {
    color: var(--gray-400);
    font-size: 0.88rem;
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding: 18px 0;
    margin-top: 45px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin: 0;
}

/* ==========================================
   FLOAT BUTTONS
   ========================================== */
.whatsapp-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 28px;
    right: 28px;
    background: #25d366;
    color: #FFF;
    border-radius: 50%;
    font-size: 26px;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
    color: #FFF;
}

.phone-float {
    position: fixed;
    width: 56px;
    height: 56px;
    bottom: 28px;
    left: 28px;
    background: #b91c1c;
    color: #FFF;
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 4px 18px rgba(185, 28, 28, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: phoneDrip 3s ease-in-out infinite;
}

.phone-float::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: #b91c1c;
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    opacity: 0;
    animation: dripDrop 3s ease-in-out infinite;
}

.phone-float:hover {
    transform: scale(1.1);
    background: #991b1b;
    color: #FFF;
}

@keyframes phoneDrip {

    0%,
    100% {
        box-shadow: 0 4px 18px rgba(185, 28, 28, 0.35);
        transform: scale(1);
    }

    15% {
        transform: scale(1.04);
    }

    30% {
        transform: scale(1);
        box-shadow: 0 4px 30px rgba(185, 28, 28, 0.55);
    }
}

@keyframes dripDrop {

    0%,
    40% {
        opacity: 0;
        transform: translateX(-50%) translateY(0) scale(0.5);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-50%) translateY(0) scale(1);
    }

    70% {
        opacity: 0.4;
        transform: translateX(-50%) translateY(14px) scale(0.6);
    }

    85%,
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(22px) scale(0.2);
    }
}

/* ==========================================
   SERVICE DETAIL PAGES
   ========================================== */
.page-hero {
    padding: 140px 0 70px;
    background: linear-gradient(135deg, var(--blue-800) 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
    color: var(--white);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' d='M0,20L60,25C120,30,240,40,360,40C480,40,600,30,720,25C840,20,960,20,1080,25C1200,30,1320,40,1380,45L1440,50L1440,60L0,60Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: cover;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-custom {
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.breadcrumb-custom li {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-custom li a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-custom li a:hover {
    color: var(--white);
}

.breadcrumb-custom li+li::before {
    content: '→';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.4);
}

.detail-content {
    padding: 70px 0;
}

.detail-content h2 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.detail-content p {
    font-size: 0.98rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 16px;
}

.detail-content .check-list {
    list-style: none;
    padding: 0;
}

.detail-content .check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.detail-content .check-list li i {
    color: var(--primary);
    font-size: 1rem;
}

.detail-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.detail-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

.detail-cta {
    background: var(--blue-50);
    border: 1px solid var(--blue-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    margin-top: 48px;
}

.detail-cta h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.detail-cta p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        transform: translateY(25px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 80px;
    }

    .hero-image-wrapper {
        margin-top: 40px;
    }

    .hero-stats {
        gap: 20px;
    }

    .floating-card-1 {
        left: 10px;
    }

    .floating-card-2 {
        right: 10px;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 50px 0;
    }

    /* Hero minimal mobile */
    .hero-section {
        padding-top: 75px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 1.9rem;
        letter-spacing: -1px;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 0.92rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    /* Butonlar: sadece ana CTA */
    .hero-buttons {
        margin-bottom: 28px;
    }

    .hero-buttons a.btn-outline-white {
        display: none;
    }

    .hero-buttons a.btn-cta {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    /* İstatistikler: yan yana - kompakt */
    .hero-stats {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
        background: rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-md);
        padding: 16px 12px;
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .hero-stat {
        flex: 1;
        text-align: center;
    }

    .hero-stat .stat-number {
        font-size: 1.4rem;
    }

    .hero-stat .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }

    .hero-stat+.hero-stat {
        border-left: 1px solid rgba(255, 255, 255, 0.15);
    }

    /* Görseli göster */
    .hero-image-wrapper {
        display: block;
        margin-top: 30px;
        margin-bottom: 20px;
    }
    
    .hero-image-card img {
        height: 250px;
    }

    .floating-card {
        display: none;
    }

    .hero-bubble {
        display: none;
    }

    /* Float butonlar */
    .whatsapp-float,
    .phone-float {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 16px;
    }

    .whatsapp-float {
        right: 16px;
    }

    .phone-float {
        left: 16px;
    }

    .counter-number {
        font-size: 1.8rem;
    }

    .counter-label {
        font-size: 0.72rem;
    }

    .cta-section {
        padding: 50px 0;
    }

    .about-image-wrapper img {
        height: 240px;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-desc {
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 16px;
        gap: 12px;
    }

    .feature-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1rem;
    }

    .feature-card h4 {
        font-size: 0.92rem;
    }

    .feature-card p {
        font-size: 0.8rem;
    }

    .service-card {
        padding: 24px 18px;
    }

    .service-icon {
        width: 56px;
        height: 56px;
        font-size: 1.2rem;
        margin-bottom: 14px;
    }
}