/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #0f172a;
    background-color: #fafbfc;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== CUSTOM SCROLLBAR STYLES ===== */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
    border-radius: 10px;
    box-shadow: inset 0 2px 4px rgba(31, 31, 31, 0.05);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(145deg, var(--primary), var(--primary-hover));
    border-radius: 10px;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 174, 239, 0.3);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(145deg, var(--primary-hover), var(--primary));
    box-shadow: 0 4px 12px rgba(0, 174, 239, 0.4);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(145deg, var(--primary), var(--primary-hover));
    box-shadow: 0 2px 6px rgba(0, 174, 239, 0.5);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--neutral-100);
}

/* Smooth scroll for all elements */
* {
    scroll-behavior: smooth;
}

/* Custom scrollbar for specific containers */
.custom-scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: rgba(248, 249, 250, 0.8);
    border-radius: 6px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: linear-gradient(145deg, var(--primary), var(--primary-hover));
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(145deg, var(--primary-hover), var(--primary));
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    ::-webkit-scrollbar-track {
        background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    }
    
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(145deg, var(--primary), var(--primary-hover));
        border: 2px solid #2a2a2a;
    }
    
    * {
        scrollbar-color: var(--primary) #2a2a2a;
    }
}

/* ===== DESIGN SYSTEM ===== */
:root {
    /* Colors - Logo renk paleti (Cyan + Koyu gri) */
    --primary: #00AEEF;
    --primary-hover: #0099d4;
    --primary-light: #33bdf2;
    --primary-50: #e6f8fd;
    --primary-100: #b3eaf9;
    --primary-200: #80dcf5;
    
    --accent: #00AEEF;
    --accent-light: #5cc9f5;
    
    --dark: #1A1A1A;
    --dark-soft: #2a2a2a;
    --dark-muted: #404040;
    
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    
    --white: #ffffff;
    --success: #10b981;
    --whatsapp: #25d366;
    
    /* Typography */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Spacing - 8px grid */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
    --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Legacy compatibility */
    --primary-white: #FFF;
    --primary-blue: var(--primary);
    --primary-dark: var(--dark);
    --secondary-gray: var(--neutral-500);
    --light-gray: var(--neutral-100);
    --border-color: var(--neutral-200);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ===== HEADER STYLES ===== */
/* Header - Hero üzerindeyken koyu/şeffaf, scroll'da beyaz */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: none;
    z-index: 1001;
    transition: background var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), backdrop-filter var(--transition-base);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: visible;
}

.header.scrolled {
    background: var(--white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
    border-bottom-color: var(--neutral-200);
}

.navbar {
    padding: 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    height: 76px;
    gap: var(--space-4);
}

/* Logo - Header dışına taşacak şekilde büyütüldü */
.logo-link {
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    flex-shrink: 0;
    align-self: stretch;
}

.logo {
    display: flex;
    align-items: flex-end;
}

.logo-img {
    height: 92px;
    width: auto;
    object-fit: contain;
    transition: opacity var(--transition-fast), box-shadow var(--transition-base);
    margin-bottom: -12px;
    border-radius: 0;
    /* Çift çerçeve: iç accent + dış frame — köşeler keskin */
    box-shadow:
        0 0 0 1px rgba(0, 174, 239, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.2);
}

.logo-img.mobile-logo {
    margin-bottom: 0;
    box-shadow:
        0 0 0 1px rgba(0, 174, 239, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.18);
}

.header.scrolled .logo-img {
    box-shadow:
        0 0 0 1px rgba(0, 174, 239, 0.4),
        0 0 0 3px rgba(0, 0, 0, 0.06);
}

.header.scrolled .logo-img.mobile-logo {
    box-shadow:
        0 0 0 1px rgba(0, 174, 239, 0.35),
        0 0 0 2px rgba(0, 0, 0, 0.05);
}

.logo-img:hover {
    opacity: 0.85;
}

.desktop-logo {
    display: block;
}

.mobile-logo {
    display: none;
}

/* Desktop Navigation */
.nav-desktop {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    padding: 0 var(--space-8);
}

.nav-menu {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
}

.nav-menu li {
    position: relative;
    flex-shrink: 0;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all var(--transition-fast);
    border-radius: var(--radius-md);
}

.nav-menu li a:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

/* Scroll sonrası - beyaz header'da koyu menü */
.header.scrolled .nav-menu li a {
    color: var(--dark-muted);
}

.header.scrolled .nav-menu li a:hover {
    color: var(--primary);
    background: var(--primary-50);
}

/* Nav Actions - Sağ taraf */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown > a i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 174, 239, 0.1);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(31, 31, 31, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1003;
    padding: 8px;
    list-style: none;
    margin: 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #1f1f1f;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 2px 0;
    position: relative;
}

.dropdown-menu li a:hover {
    background: linear-gradient(145deg, var(--primary), var(--primary-hover));
    color: white;
    transform: translateX(3px);
}

.dropdown-menu li a:hover::after {
    display: none;
}

/* CTA Button - WhatsApp green */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--whatsapp);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    background: #20bd5a;
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.cta-button:hover i {
    transform: scale(1.1);
}

/* Mobile Menu Button - Hamburger */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    padding: 10px;
    transition: all var(--transition-fast);
    z-index: 1002;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.header.scrolled .mobile-menu-btn:hover {
    background: var(--neutral-200);
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.header.scrolled .mobile-menu-btn {
    background: var(--neutral-100);
}

.header.scrolled .mobile-menu-btn span {
    background: var(--dark);
}

/* Language Menu */
.language-menu {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.18);
    color: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.header.scrolled .language-toggle {
    background: var(--neutral-100);
    border-color: var(--neutral-200);
    color: var(--dark-muted);
}

.header.scrolled .language-toggle:hover {
    background: var(--neutral-200);
    color: var(--primary);
    border-color: var(--primary-200);
}

.language-toggle i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.language-toggle:hover i {
    transform: rotate(90deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 174, 239, 0.1);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(31, 31, 31, 0.08);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-3px);
    transition: all 0.15s ease;
    z-index: 1003;
    padding: 8px;
    list-style: none;
    margin: 0;
}

.language-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(255, 255, 255, 0.98);
    z-index: 1;
}

.language-menu:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown li {
    margin: 0;
}

.language-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #1f1f1f;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-radius: 8px;
    margin: 2px 0;
    position: relative;
}

.language-dropdown a:hover {
    background: var(--primary-50);
    color: var(--primary);
    transform: none;
}


/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    padding: 130px var(--space-6) 80px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark) 0%, #252530 40%, var(--primary) 100%);
    opacity: 0.97;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(0, 174, 239, 0.15) 0%, transparent 50%),
                     radial-gradient(circle at 80% 20%, rgba(0, 174, 239, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-bg-shapes .hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 174, 239, 0.06);
    animation: heroShapeFloat 12s ease-in-out infinite;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: -50px;
    animation-delay: 4s;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 30%;
    animation-delay: 2s;
}

@keyframes heroShapeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(20px, -20px) scale(1.05); opacity: 0.8; }
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1280px;
    margin: 0 auto;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.12) 0%, rgba(26, 26, 26, 0.85) 100%);
    backdrop-filter: blur(16px);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-6);
    border: 1px solid rgba(0, 174, 239, 0.35);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.98);
    position: relative;
    overflow: hidden;
    animation: heroFadeInUp 0.8s ease-out;
}

.hero-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    border-radius: 3px 0 0 3px;
}

.hero-badge i {
    color: var(--primary);
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--space-5);
    letter-spacing: -0.03em;
    animation: heroFadeInUp 0.8s ease-out 0.1s both;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    color: var(--primary);
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.65;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.9);
    animation: heroFadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    animation: heroFadeInUp 0.8s ease-out 0.25s both;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    animation: heroFadeInUp 0.8s ease-out 0.35s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.hero-feature i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroFadeInUp 0.8s ease-out 0.45s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.hero-btn-primary {
    background: var(--whatsapp);
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    background: #20bd5a;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    animation: heroFadeInUp 1s ease-out 0.2s both;
}

.hero-image-wrap {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(0, 174, 239, 0.4),
        0 0 0 4px rgba(0, 0, 0, 0.2),
        0 30px 60px -15px rgba(0, 0, 0, 0.5),
        0 0 80px -20px rgba(0, 174, 239, 0.15);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hero-image-wrap:hover {
    transform: translateY(-4px);
    box-shadow:
        0 0 0 1px rgba(0, 174, 239, 0.5),
        0 0 0 4px rgba(0, 0, 0, 0.25),
        0 40px 80px -20px rgba(0, 0, 0, 0.55),
        0 0 100px -15px rgba(0, 174, 239, 0.2);
}

.hero-image-frame {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
    z-index: 2;
}

.hero-image {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        transparent 40%,
        transparent 55%,
        rgba(26, 26, 26, 0.85) 100%
    );
    pointer-events: none;
}

.hero-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(0, 174, 239, 0.18) 100%);
    backdrop-filter: blur(20px);
    padding: 14px 22px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.98);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 174, 239, 0.4);
    overflow: hidden;
}

.hero-image-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    border-radius: 4px 0 0 4px;
}

.hero-image-badge i {
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* Modern 3D Cleaning Scene */
.cleaning-scene-3d {
    position: relative;
    width: 400px;
    height: 400px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Main 3D Container */
.scene-3d-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate3D 20s linear infinite;
}

/* 3D Cleaning Tools */
.cleaning-tool-3d {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    border-radius: 50%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    animation: float3D 4s ease-in-out infinite;
}

.cleaning-tool-3d.tool-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.cleaning-tool-3d.tool-2 {
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}

.cleaning-tool-3d.tool-3 {
    bottom: 25%;
    left: 30%;
    animation-delay: 2s;
}

.cleaning-tool-3d.tool-4 {
    bottom: 35%;
    right: 20%;
    animation-delay: 3s;
}

.cleaning-tool-3d.tool-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.5s;
}

.cleaning-tool-3d.tool-6 {
    top: 15%;
    right: 15%;
    animation-delay: 0.5s;
}

.cleaning-tool-3d.tool-7 {
    bottom: 15%;
    left: 15%;
    animation-delay: 2.5s;
}

.cleaning-tool-3d.tool-8 {
    top: 70%;
    right: 35%;
    animation-delay: 3.5s;
}

.cleaning-tool-3d.tool-9 {
    bottom: 70%;
    left: 35%;
    animation-delay: 1s;
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 6s linear infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 25%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 40%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 40%;
    right: 40%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    bottom: 50%;
    left: 20%;
    animation-delay: 3s;
}

/* Sparkle Effects */
.sparkle-effect {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FFF;
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
}

.sparkle-effect:nth-child(6) {
    top: 15%;
    left: 60%;
    animation-delay: 0.5s;
}

.sparkle-effect:nth-child(7) {
    top: 70%;
    right: 15%;
    animation-delay: 1.5s;
}

.sparkle-effect:nth-child(8) {
    bottom: 20%;
    left: 70%;
    animation-delay: 2.5s;
}

/* 3D Animations */
@keyframes rotate3D {
    0% {
        transform: rotateY(0deg) rotateX(10deg);
    }
    100% {
        transform: rotateY(360deg) rotateX(10deg);
    }
}

@keyframes float3D {
    0%, 100% {
        transform: translate(-50%, -50%) translateZ(0px) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateZ(20px) translateY(-10px);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Glow Effects */
.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* Hero Stats - Tek satır, minimal bar */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: 680px;
    margin: 44px auto 0;
    padding: 24px 32px;
    position: relative;
    z-index: 1;
    animation: heroFadeInUp 1s ease-out 0.6s both;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    min-width: 70px;
}

.hero-stat-num {
    display: block;
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
    animation: heroScrollBounce 2s ease-in-out infinite;
}

.hero-scroll-icon {
    font-size: 0.9rem;
}

@keyframes heroFadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* About section stat-card (stat-number, stat-label) */
.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #FFF;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 700;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-white);
    text-align: center;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-arrow {
    font-size: 1.2rem;
    animation: bounce 2s ease-in-out infinite;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 50px;
    position: relative;
}

.section-title {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title-icon {
    margin-right: 10px;
    color: var(--primary);
    font-size: 0.9em;
    vertical-align: middle;
}

/* Services Section Title Special Styling */
.services .section-title {
    color: var(--primary);
    margin-bottom: var(--space-10);
    margin-top: var(--space-10);
    position: relative;
    z-index: 3;
}

.services .section-title::after {
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    width: 80px;
    height: 4px;
    border-radius: 2px;
}

/* ===== SECTIONS ===== */
.about, .contact {
    padding: 80px 0;
}

.services {
    background: linear-gradient(180deg, #e6f8fd 0%, #f0fafd 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.services .container {
    padding-top: 0;
    padding-bottom: 0;
}

/* Mavi arkaplan kaldırıldı */

.services-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-10);
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--neutral-500);
    font-weight: 450;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 0;
    padding: 80px 0 80px 0;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--white);
    padding: var(--space-10) var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--neutral-200);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-200);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    transition: all var(--transition-base);
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 174, 239, 0.25);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 174, 239, 0.35);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-4);
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--neutral-500);
    line-height: 1.7;
    margin-bottom: var(--space-6);
    font-size: var(--text-base);
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--primary-white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.3);
}

.service-btn::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.6s ease;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 174, 239, 0.4);
}

.service-btn:hover::before {
    left: 100%;
}

.service-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 25px;
    justify-content: center;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 12px 22px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 174, 239, 0.3);
    flex: 1;
    min-width: 120px;
    max-width: 160px;
    justify-content: center;
    border: none;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 174, 239, 0.4);
    background: var(--primary-hover);
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn.detail-btn {
    background: var(--neutral-100);
    color: var(--dark-muted);
    box-shadow: none;
    border: 1px solid var(--neutral-200);
}

.service-btn.detail-btn:hover {
    background: var(--neutral-200);
    color: var(--dark);
    border-color: var(--neutral-300);
    transform: translateY(-2px);
}

.service-btn i {
    font-size: 0.85rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.service-btn:hover i {
    transform: translateX(2px);
    opacity: 1;
}

.service-btn.detail-btn i {
    color: #6c757d;
}

.service-btn.detail-btn:hover i {
    color: #495057;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: linear-gradient(180deg, #ffffff 0%, #f8fcfe 100%);
    position: relative;
    overflow: hidden;
}

/* About Background Elements */
.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.about-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.08), rgba(0, 153, 212, 0.08));
    animation: aboutFloat 8s ease-in-out infinite;
}

.about-shape.shape-1 {
    width: 120px;
    height: 120px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.about-shape.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.about-shape.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-delay: 4s;
}

.about-shape.shape-4 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 25%;
    animation-delay: 6s;
}

@keyframes aboutFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 1;
    }
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.about-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-gray);
    margin-top: 15px;
    font-weight: 500;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.about-card {
    background: var(--white);
    padding: var(--space-8) var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--neutral-200);
}

.about-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-50), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 174, 239, 0.3);
}

.about-card:hover .about-card-bg {
    opacity: 1;
}

.about-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.3);
}

.about-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.about-icon i {
    font-size: 1.8rem;
    color: var(--primary-white);
    transition: all 0.4s ease;
}

.about-card:hover .about-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 174, 239, 0.3);
}

.about-card:hover .about-icon::before {
    opacity: 0.3;
}

.about-card:hover .about-icon i {
    transform: scale(1.1);
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    background: linear-gradient(135deg, #1f1f1f, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card p {
    color: var(--secondary-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.about-feature i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Hizmet Bölgesi */
.service-area-section {
    margin-top: var(--space-12);
    padding: var(--space-8);
    background: var(--primary-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--primary-200);
    text-align: center;
    position: relative;
    z-index: 2;
}

.service-area-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-hover);
}

.service-area-title i {
    margin-right: 8px;
}

.service-area-desc {
    margin: 8px 0;
    font-size: 1rem;
    color: #444;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    background: #fafbfc;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ===== NASIL ÇALIŞIYORUZ ===== */
.how-it-works {
    background: linear-gradient(180deg, #f5fafc 0%, #e8f4f8 100%);
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    background: linear-gradient(145deg, #f8f9fa, #fff);
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.step-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 174, 239, 0.12);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin: 0 auto 12px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.step-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* ===== FİYATLANDIRMA ===== */
.pricing {
    background: linear-gradient(135deg, #e6f8fd 0%, #f0fafd 50%, #e2f4f9 100%);
    padding: 80px 0;
}

.pricing-block {
    margin-bottom: 50px;
}

.pricing-block-highlight {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(230, 248, 253, 0.6) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(0, 174, 239, 0.25);
    box-shadow: 0 8px 32px rgba(0, 174, 239, 0.1);
}

.pricing-block-highlight .pricing-table-wrapper {
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.08);
    border-color: rgba(0, 174, 239, 0.2);
}

.pricing-block-highlight .pricing-subtitle {
    color: var(--primary);
}

.pricing-subtitle {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-hover);
}

.pricing-block-icon {
    margin-right: 8px;
    color: var(--primary);
    font-size: 0.95em;
}

.pricing-desc {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.6;
}

.pricing-kdv-note {
    background: rgba(26, 26, 46, 0.04);
    padding: 14px 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    font-weight: 500;
    color: var(--dark-muted);
}

.pricing-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 15px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 174, 239, 0.12), 0 2px 8px rgba(26, 26, 46, 0.06);
    border: 1px solid rgba(0, 174, 239, 0.15);
}

.pricing-table {
    width: 100%;
    min-width: 280px;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.pricing-table th,
.pricing-table td {
    padding: 18px 24px;
    text-align: left;
    font-size: 1rem;
}

.pricing-table thead th {
    background: linear-gradient(135deg, var(--dark) 0%, #252530 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-bottom: 3px solid var(--primary);
}

.pricing-table thead th:first-child {
    border-radius: 16px 0 0 0;
}

.pricing-table thead th:last-child {
    border-radius: 0 16px 0 0;
}

.pricing-table tbody tr {
    transition: background 0.2s ease;
}

.pricing-table tbody tr:nth-child(even) {
    background: rgba(230, 248, 253, 0.4);
}

.pricing-table tbody tr:nth-child(odd) {
    background: #fff;
}

.pricing-table tbody tr:hover {
    background: rgba(0, 174, 239, 0.08) !important;
}

.pricing-table td {
    border-bottom: 1px solid rgba(0, 174, 239, 0.08);
    color: #333;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 16px;
}

.pricing-table tbody tr:last-child td:last-child {
    border-radius: 0 0 16px 0;
}

/* Fiyat sütununu vurgula */
.pricing-table td:last-child {
    font-weight: 600;
    color: var(--dark);
}

.pricing-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.pricing-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    text-align: center;
    margin-top: 40px;
}

.pricing-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-cta .cta-btn:hover {
    background: #20bd5a;
    transform: scale(1.05);
}

.pricing-cta .cta-btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.pricing-cta .cta-btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

/* ===== SSS / FAQ ===== */
.faq {
    background: linear-gradient(180deg, #ffffff 0%, #f8fcfe 100%);
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border: 1px solid #e9ecef;
    border-radius: 15px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    color: #555;
    line-height: 1.7;
    background: #fff;
    border-top: 1px solid #eee;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(180deg, #e8f4f8 0%, #e6f8fd 100%);
    position: relative;
    overflow: hidden;
}

/* Contact Background Elements */
.contact-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.contact-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.08), rgba(0, 153, 212, 0.08));
    animation: contactFloat 10s ease-in-out infinite;
}

.contact-shape.shape-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.contact-shape.shape-2 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 8%;
    animation-delay: 2s;
}

.contact-shape.shape-3 {
    width: 120px;
    height: 120px;
    bottom: 15%;
    left: 12%;
    animation-delay: 4s;
}

.contact-shape.shape-4 {
    width: 80px;
    height: 80px;
    top: 25%;
    right: 20%;
    animation-delay: 6s;
}

.contact-shape.shape-5 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    right: 15%;
    animation-delay: 8s;
}

@keyframes contactFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-gray);
    margin-top: 15px;
    font-weight: 500;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: stretch;
}

.contact-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 174, 239, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 120px;
    justify-content: flex-start;
}

.contact-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.05), rgba(0, 153, 212, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 174, 239, 0.3);
}

.contact-card:hover .contact-card-bg {
    opacity: 1;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.3);
    flex-shrink: 0;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.contact-icon i {
    font-size: 1.6rem;
    color: var(--primary-white);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 174, 239, 0.4);
}

.contact-card:hover .contact-icon::before {
    opacity: 0.3;
}

.contact-card:hover .contact-icon i {
    transform: scale(1.1);
}

.contact-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
    background: linear-gradient(135deg, #1f1f1f, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-details p {
    color: var(--secondary-gray);
    margin-bottom: 4px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-details p a {
    color: var(--secondary-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details p a:hover {
    color: var(--primary-color);
}

.contact-action {
    margin-top: 12px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(0, 174, 239, 0.1);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.2), rgba(0, 153, 212, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.3);
}

.contact-link i {
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-container {
    position: relative;
}

.contact-form {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 174, 239, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-hover), var(--primary));
}

.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    background: linear-gradient(135deg, #1f1f1f, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-header p {
    color: var(--secondary-gray);
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--secondary-gray);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid rgba(0, 174, 239, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.input-wrapper textarea {
    padding-left: 45px;
    resize: vertical;
    min-height: 120px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(2, 171, 255, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.input-wrapper input:focus + i,
.input-wrapper select:focus + i,
.input-wrapper textarea:focus + i {
    color: var(--primary-blue);
}

.form-actions {
    margin-top: 30px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--white);
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn::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 ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 174, 239, 0.4);
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(3px);
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--primary-white);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn i {
    font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: var(--primary-white);
    padding: 45px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.footer-section {
    position: relative;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.footer-section:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 174, 239, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-white);
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 60px;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    margin-bottom: 12px;
}

.footer-logo-link:hover .footer-logo-img {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-logo-img {
    width: 140px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
    filter: brightness(1.1);
    transition: all 0.3s ease;
}

.desktop-footer-logo {
    display: block;
}

.mobile-footer-logo {
    display: none;
}

.footer-desc {
    margin-bottom: 16px;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #25d366;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.footer-whatsapp-btn:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.85rem;
    flex-grow: 1;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::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 ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.4);
}

.social-link:hover::before {
    left: 100%;
}

.social-link i {
    font-size: 1.2rem;
    z-index: 2;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
    position: relative;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px 0;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary));
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.footer-links a:hover {
    color: var(--primary-white);
    padding-left: 15px;
}

.footer-links a:hover::before {
    width: 10px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #b0b0b0;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-contact p:hover {
    color: var(--primary-white);
    transform: translateX(5px);
}

.footer-contact i {
    color: var(--primary-light);
    width: 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-contact p:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
    position: relative;
}

.footer-bottom p::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

/* ===== SERVICE DETAIL PAGES ===== */
.service-detail-main {
    padding-top: 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 100vh;
}

/* Breadcrumb */
.breadcrumb {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 174, 239, 0.1);
    margin-bottom: 0;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb li {
    font-size: 14px;
    color: #666;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
    margin-left: 10px;
    color: #ccc;
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-hover);
}

/* Service Detail Hero */
.service-detail-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-hover) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.service-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-detail-left {
    animation: fadeInLeft 1s ease-out;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.service-detail-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-detail-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.service-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.service-features .feature-item i {
    color: #4CAF50;
    font-size: 16px;
}

.service-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-cta.primary {
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-cta.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.service-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.service-detail-right {
    animation: fadeInRight 1s ease-out;
}

.service-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image:hover .service-img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.3), rgba(0, 153, 212, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-overlay .service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Service Content */
.service-content {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.content-main {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-article h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 30px;
    position: relative;
}

.service-article h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-hover));
    border-radius: 2px;
}

.service-article h2 i,
.service-article h3 i {
    margin-right: 10px;
    color: var(--primary);
    font-size: 0.9em;
}

.service-article h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 40px 0 20px;
}

.service-article p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 30px 0;
}

.service-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 1px solid rgba(0, 174, 239, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 174, 239, 0.15);
    border-color: rgba(0, 174, 239, 0.3);
}

.service-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.service-item-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.service-item-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.benefit-item {
    padding: 25px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    border: 1px solid rgba(0, 174, 239, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 174, 239, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin: 0 auto 15px;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.pricing-item {
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px solid rgba(0, 174, 239, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    border-color: rgba(0, 174, 239, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 174, 239, 0.15);
}

.pricing-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.pricing-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-hover) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
    color: white;
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 174, 239, 0.1);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-hover));
    border-radius: 2px;
}

.service-areas {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-areas li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 174, 239, 0.1);
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.service-areas li:last-child {
    border-bottom: none;
}

.service-areas li:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
}

.service-areas li i {
    color: var(--primary-blue);
    font-size: 12px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    border: 1px solid rgba(0, 174, 239, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.15);
    border-color: rgba(0, 174, 239, 0.3);
}

.contact-item i {
    color: var(--primary-blue);
    font-size: 16px;
    width: 20px;
}

.contact-item span {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.contact-item a {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-blue);
}

.working-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 174, 239, 0.1);
    font-size: 14px;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child {
    color: var(--primary-dark);
    font-weight: 500;
}

.hour-item span:last-child {
    color: #666;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design for Contact Section */
@media (max-width: 768px) {
    /* Dropdown Menu Mobile Styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        border: none;
        padding: 0;
        margin-top: 10px;
        margin-left: 20px;
        min-width: auto;
    }
    
    .dropdown-menu li a {
        padding: 8px 15px;
        font-size: 0.9rem;
        color: var(--secondary-gray);
        border-left: 2px solid rgba(0, 174, 239, 0.3);
        margin-bottom: 5px;
    }
    
    .dropdown-menu li a:hover {
        background: rgba(0, 174, 239, 0.1);
        transform: none;
    }
    
    .dropdown > a i {
        transform: rotate(0deg);
    }
    
    .dropdown:hover > a i {
        transform: rotate(180deg);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
        min-height: 100px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.4rem;
    }
    
    .contact-details h3 {
        font-size: 1.2rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
    }
    
    .contact-link {
        font-size: 0.85rem;
        padding: 8px 14px;
    }
}

/* Responsive Design for Service Detail Pages */
@media (max-width: 768px) {
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-title {
        font-size: 2.5rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .service-actions {
        flex-direction: column;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-main {
        padding: 30px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-info {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .sidebar-widget {
        padding: 25px 20px;
    }
    
    /* Tablet Button Optimizations */
    .service-buttons {
        gap: 10px;
        margin-top: 22px;
    }
    
    .service-btn {
        padding: 11px 22px;
        font-size: 0.88rem;
        min-width: 110px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    /* Contact Section Mobile Optimizations */
    .contact-card {
        padding: 20px 15px;
        min-height: 90px;
        gap: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1.3rem;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .contact-details p {
        font-size: 0.85rem;
        margin-bottom: 3px;
    }
    
    .contact-link {
        font-size: 0.8rem;
        padding: 7px 12px;
        border-radius: 8px;
    }
    
    .service-detail-title {
        font-size: 2rem;
    }
    
    .service-detail-subtitle {
        font-size: 1rem;
    }
    
    .service-article h2 {
        font-size: 2rem;
    }
    
    .service-article h3 {
        font-size: 1.5rem;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-item-icon {
        margin: 0 auto;
    }
    
    /* Mobile Button Optimizations */
    .service-buttons {
        gap: 8px;
        margin-top: 20px;
    }
    
    .service-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
        min-width: 100px;
        max-width: 140px;
        border-radius: 10px;
    }
    
    .service-btn i {
        font-size: 0.8rem;
    }
}

/* Reviews Section Styles */
.reviews {
    padding: var(--space-24) 0;
    background: var(--neutral-50);
    position: relative;
    overflow: hidden;
}

.reviews-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.reviews-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.1), rgba(0, 153, 212, 0.1));
    animation: reviewsFloat 6s ease-in-out infinite;
}

.reviews-shape.shape-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.reviews-shape.shape-2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.reviews-shape.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

.reviews-shape.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 5%;
    animation-delay: 1s;
}

@keyframes reviewsFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.reviews .container {
    position: relative;
    z-index: 2;
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.reviews-subtitle {
    font-size: 1.1rem;
    color: var(--secondary-gray);
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 174, 239, 0.1);
    position: relative;
    overflow: hidden;
}

.review-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.05), rgba(0, 153, 212, 0.05));
    opacity: 0;
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.review-card:hover .review-card-bg {
    opacity: 1;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.3);
    transition: all 0.3s ease;
}

.review-card:hover .reviewer-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 174, 239, 0.4);
}

.reviewer-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.reviewer-details p {
    font-size: 0.9rem;
    color: var(--secondary-gray);
    margin: 0;
}

.review-rating {
    display: flex;
    gap: 3px;
}

.review-rating i {
    color: #ffd700;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.review-card:hover .review-rating i {
    transform: scale(1.1);
    color: #ffed4e;
}

.review-content {
    margin-bottom: 20px;
}

.review-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--secondary-gray);
    font-style: italic;
    margin: 0;
}

.review-service {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(0, 174, 239, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 174, 239, 0.2);
}

.review-service i {
    color: var(--primary-blue);
    font-size: 1rem;
}

.review-service span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.reviews-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reviews-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.reviews-cta:hover::before {
    left: 100%;
}

.reviews-cta .cta-content {
    position: relative;
    z-index: 2;
}

.reviews-cta .cta-content h3 {
    color: var(--primary-white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.reviews-cta .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.reviews-cta .cta-btn {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary-white);
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.reviews-cta .cta-btn:hover {
    background: transparent;
    color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.reviews-cta .cta-btn i {
    font-size: 1.1rem;
}

/* Responsive Design for Reviews Section */
@media (max-width: 768px) {
    .reviews {
        padding: 80px 0;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .reviewer-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .reviewer-details h4 {
        font-size: 1rem;
    }
    
    .reviewer-details p {
        font-size: 0.85rem;
    }
    
    .review-content p {
        font-size: 0.95rem;
    }
    
    .review-service {
        padding: 10px 14px;
    }
    
    .review-service span {
        font-size: 0.85rem;
    }
    
    .reviews-cta {
        padding: 30px 25px;
    }
    
    .reviews-cta .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .reviews-cta .cta-content p {
        font-size: 1rem;
    }
    
    .reviews-cta .cta-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .reviews {
        padding: 60px 0;
    }
    
    .reviews-header {
        margin-bottom: 40px;
    }
    
    .reviews-subtitle {
        font-size: 1rem;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .reviewer-details h4 {
        font-size: 0.95rem;
    }
    
    .reviewer-details p {
        font-size: 0.8rem;
    }
    
    .review-rating i {
        font-size: 0.9rem;
    }
    
    .review-content p {
        font-size: 0.9rem;
    }
    
    .review-service {
        padding: 8px 12px;
    }
    
    .review-service i {
        font-size: 0.9rem;
    }
    
    .review-service span {
        font-size: 0.8rem;
    }
    
    .reviews-cta {
        padding: 25px 20px;
    }
    
    .reviews-cta .cta-content h3 {
        font-size: 1.3rem;
    }
    
    .reviews-cta .cta-content p {
        font-size: 0.95rem;
    }
    
    .reviews-cta .cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
} 

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, var(--primary), var(--primary-hover));
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, var(--primary-hover), var(--primary));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.4);
}

.scroll-to-top:hover::before {
    opacity: 1;
}

.scroll-to-top:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.5);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

/* Responsive Scroll to Top */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ===== LANGUAGE MENU STYLES ===== */
.language-menu {
    position: relative;
    margin-left: 20px;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 50px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border: 2px solid #e8e8e8;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    color: #2c3e50;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    min-width: 140px;
    justify-content: center;
}

.language-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.2), transparent);
    transition: left 0.6s ease;
}

/* ===== FORM MESSAGE STYLES ===== */
.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    animation: slideIn 0.3s ease;
    position: relative;
    overflow: hidden;
}

.form-message.success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.message-content {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.form-message i {
    font-size: 18px;
    flex-shrink: 0;
}

.form-message.success i {
    color: #28a745;
}

.form-message.error i {
    color: #dc3545;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form message hover effect */
.form-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.form-message:hover::before {
    left: 100%;
}

/* Toast bildirimi */
.toast-notification {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 360px;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.toast-notification.toast-visible {
    transform: translateY(0);
    opacity: 1;
}
.toast-notification.toast-success {
    background: var(--white);
    color: var(--dark);
    border-left: 4px solid #22c55e;
}
.toast-notification.toast-success i {
    color: #22c55e;
}
.toast-notification.toast-error {
    background: var(--white);
    color: var(--dark);
    border-left: 4px solid #ef4444;
}
.toast-notification.toast-error i {
    color: #ef4444;
}
.toast-notification i {
    flex-shrink: 0;
    font-size: 1.25rem;
}
.toast-notification span {
    font-size: 0.9375rem;
    line-height: 1.4;
}
