/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1f1f1f;
    background-color: #FFF;
}

/* ===== 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, #1fb3ff, #1a9ee6);
    border-radius: 10px;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(31, 179, 255, 0.3);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(145deg, #1a9ee6, #1590d4);
    box-shadow: 0 4px 12px rgba(31, 179, 255, 0.4);
    transform: scale(1.05);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(145deg, #1590d4, #1380c4);
    box-shadow: 0 2px 6px rgba(31, 179, 255, 0.5);
}

::-webkit-scrollbar-corner {
    background: transparent;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #1fb3ff #f8f9fa;
}

/* 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, #1fb3ff, #1a9ee6);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(145deg, #1a9ee6, #1590d4);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    ::-webkit-scrollbar-track {
        background: linear-gradient(145deg, #2a2a2a, #1f1f1f);
    }
    
    ::-webkit-scrollbar-thumb {
        background: linear-gradient(145deg, #1fb3ff, #1a9ee6);
        border: 2px solid #2a2a2a;
    }
    
    * {
        scrollbar-color: #1fb3ff #2a2a2a;
    }
}

/* ===== COLOR PALETTE ===== */
:root {
    --primary-white: #FFF;
    --primary-blue: #1fb3ff;
    --primary-dark: #1f1f1f;
    --secondary-gray: #666;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(31, 31, 31, 0.08);
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 80px;
    border-bottom: 1px solid rgba(31, 179, 255, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 40px rgba(31, 31, 31, 0.12);
    border-bottom: 2px solid rgba(31, 179, 255, 0.2);
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1002;
}

.logo-img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    position: absolute;
    top: 100%;
    transform: translateY(-10%);
    z-index: 1002;
    filter: drop-shadow(0 4px 8px rgba(31, 31, 31, 0.1));
    transition: all 0.3s ease;
    opacity: 1;
}

.header.scrolled .logo-img {
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px rgba(31, 31, 31, 0.05));
}

.logo-img:hover {
    transform: translateY(-10%) scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(31, 31, 31, 0.15));
    opacity: 1;
}

/* Desktop ve Mobile Logo Ayarları */
.desktop-logo {
    display: block;
}

.mobile-logo {
    display: none;
}

/* Navigation Menu */
.nav-left, .nav-right {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: #1f1f1f;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-radius: 8px;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1fb3ff, #1a9ee6);
    transition: all 0.2s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-menu li a:hover {
    color: #1fb3ff;
    background: rgba(31, 179, 255, 0.05);
}

.nav-menu li a:hover::after {
    width: 80%;
}

/* 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(31, 179, 255, 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, #1fb3ff, #1a9ee6);
    color: white;
    transform: translateX(3px);
}

.dropdown-menu li a:hover::after {
    display: none;
}

/* CTA Button */
.cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(145deg, #1fb3ff, #1a9ee6);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(31, 179, 255, 0.3);
    position: relative;
    overflow: hidden;
    margin-left: 20px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 179, 255, 0.4);
}

.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 */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1000;
}

.mobile-menu-btn:hover {
    background: rgba(31, 179, 255, 0.1);
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: #1f1f1f;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Language Menu - Modern Stil */
.language-menu {
    position: relative;
    margin-left: 15px;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(31, 179, 255, 0.2);
    border-radius: 25px;
    color: #1f1f1f;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(31, 31, 31, 0.05);
    position: relative;
    min-width: 130px;
    justify-content: center;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #1fb3ff;
    transform: none;
    box-shadow: 0 4px 12px rgba(31, 179, 255, 0.15);
    border-color: rgba(31, 179, 255, 0.3);
}

.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(31, 179, 255, 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: rgba(31, 179, 255, 0.08);
    color: #ffffff;
    transform: none;
}


/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1fb3ff 0%, #1a9ee6 100%);
    position: relative;
    padding-top: 80px;
    padding-bottom: 0;
    margin-bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Animated Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 1s;
}

.shape-5 {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 60%;
    animation-delay: 3s;
}

/* Hide floating shapes in dropdown area */
.dropdown:hover ~ .hero-bg-elements .floating-shape,
.dropdown-menu:hover ~ .hero-bg-elements .floating-shape {
    opacity: 0;
    pointer-events: none;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Main Hero Container */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    align-items: center;
}

/* Hero Left Content */
.hero-left {
    color: var(--primary-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInLeft 1s ease-out;
}

.hero-badge i {
    color: #FFF;
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.title-line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.title-line:nth-child(1) { animation-delay: 0.3s; }
.title-line:nth-child(2) { animation-delay: 0.5s; }
.title-line:nth-child(3) { animation-delay: 0.7s; }

.title-line.highlight {
    background: linear-gradient(45deg, #FFF, #FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.highlight-text {
    color: #FFF;
    font-weight: 600;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
}

.feature-item i {
    color: #FFF;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.8s both;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-cta.primary {
    background: linear-gradient(45deg, #FFF, #FFF);
    color: #1fb3ff;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.hero-cta.secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Right Visual */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.3s both;
    position: relative;
}

.hero-visual {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 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.9), rgba(255, 255, 255, 0.7));
    border-radius: 50%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #1fb3ff;
    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;
    }
}

/* Stats Section */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 1.5s both;
    background: linear-gradient(135deg, rgba(31, 179, 255, 0.35) 0%, rgba(26, 158, 230, 0.35) 50%, rgba(20, 140, 200, 0.35) 100%);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(31, 179, 255, 0.6);
    box-shadow: 0 15px 35px rgba(31, 179, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.stat-item {
    text-align: center;
    color: var(--primary-white);
    padding: 25px 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 2px solid rgba(31, 179, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(31, 179, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: statItemFadeIn 0.8s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.4s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }
.stat-item:nth-child(4) { animation-delay: 0.8s; }

@keyframes statItemFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(31, 179, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.03);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.25) 100%);
    box-shadow: 0 20px 40px rgba(31, 179, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(31, 179, 255, 0.9);
}

.stat-item:hover::before {
    left: 100%;
}

.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::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-blue);
}

/* Services Section Title Special Styling */
.services .section-title {
    color: var(--primary-blue);
    margin-bottom: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 3;
}

.services .section-title::after {
    background: linear-gradient(90deg, #1fb3ff, #1a9ee6, #1fb3ff);
    width: 120px;
    height: 4px;
    border-radius: 2px;
}

/* ===== SECTIONS ===== */
.about, .contact {
    padding: 80px 0;
}

.services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    margin-top: 0;
}

.services .container {
    padding-top: 0;
    padding-bottom: 0;
}

/* Mavi arkaplan kaldırıldı */

.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: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(31, 179, 255, 0.1);
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1fb3ff, #1a9ee6, #1fb3ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(31, 179, 255, 0.15);
    border-color: rgba(31, 179, 255, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1fb3ff 0%, #1a9ee6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(31, 179, 255, 0.3);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #1fb3ff, #1a9ee6);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-white);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(31, 179, 255, 0.4);
}

.service-card:hover .service-icon::before {
    opacity: 0.3;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1f1f1f, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    color: var(--secondary-gray);
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1fb3ff 0%, #1a9ee6 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(31, 179, 255, 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(31, 179, 255, 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: linear-gradient(135deg, #1fb3ff 0%, #1a9ee6 100%);
    color: var(--primary-white);
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(31, 179, 255, 0.25);
    flex: 1;
    min-width: 120px;
    max-width: 160px;
    justify-content: center;
    border: 1px solid rgba(31, 179, 255, 0.1);
}

.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 25px rgba(31, 179, 255, 0.35);
    border-color: rgba(31, 179, 255, 0.2);
}

.service-btn:hover::before {
    left: 100%;
}

.service-btn.detail-btn {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.15);
    border: 1px solid rgba(108, 117, 125, 0.1);
}

.service-btn.detail-btn:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #212529;
    box-shadow: 0 8px 25px rgba(108, 117, 125, 0.25);
    border-color: rgba(108, 117, 125, 0.2);
    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(135deg, #ffffff 0%, #f8f9fa 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(31, 179, 255, 0.1), rgba(26, 158, 230, 0.1));
    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: linear-gradient(145deg, #ffffff, #f8f9fa);
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(31, 179, 255, 0.1);
    backdrop-filter: blur(10px);
}

.about-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 179, 255, 0.05), rgba(26, 158, 230, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(31, 179, 255, 0.15);
    border-color: rgba(31, 179, 255, 0.3);
}

.about-card:hover .about-card-bg {
    opacity: 1;
}

.about-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1fb3ff 0%, #1a9ee6 100%);
    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(31, 179, 255, 0.3);
}

.about-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #1fb3ff, #1a9ee6);
    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.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(31, 179, 255, 0.4);
}

.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: #1fb3ff;
    font-size: 0.9rem;
}

/* 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, #1fb3ff, #1a9ee6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    border-color: #1fb3ff;
    background: #fafbfc;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1fb3ff;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 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(31, 179, 255, 0.08), rgba(26, 158, 230, 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: linear-gradient(145deg, #ffffff, #f8f9fa);
    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(31, 179, 255, 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(31, 179, 255, 0.05), rgba(26, 158, 230, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(31, 179, 255, 0.15);
    border-color: rgba(31, 179, 255, 0.3);
}

.contact-card:hover .contact-card-bg {
    opacity: 1;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1fb3ff 0%, #1a9ee6 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(31, 179, 255, 0.3);
    flex-shrink: 0;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #1fb3ff, #1a9ee6);
    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(31, 179, 255, 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(31, 179, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: linear-gradient(135deg, rgba(31, 179, 255, 0.2), rgba(26, 158, 230, 0.2));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 179, 255, 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(31, 179, 255, 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, #1fb3ff, #1a9ee6, #1fb3ff);
}

.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(31, 179, 255, 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, #1fb3ff 0%, #1a9ee6 100%);
    color: var(--primary-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(31, 179, 255, 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, #1fb3ff 0%, #1a9ee6 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, #1a1a2e 0%, #16213e 50%, #0f3460 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(31, 179, 255, 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), #1fb3ff);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 12px;
}

.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-section:hover .footer-logo-img {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.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), #1fb3ff);
    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(31, 179, 255, 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), #1fb3ff);
    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 p:hover {
    color: var(--primary-white);
    transform: translateX(5px);
}

.footer-contact i {
    color: var(--primary-blue);
    width: 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-contact p:hover i {
    color: #1fb3ff;
    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(31, 179, 255, 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: #1a9ee6;
}

/* Service Detail Hero */
.service-detail-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a9ee6 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(31, 179, 255, 0.3), rgba(26, 158, 230, 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), #1a9ee6);
    border-radius: 2px;
}

.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(31, 179, 255, 0.1);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(31, 179, 255, 0.15);
    border-color: rgba(31, 179, 255, 0.3);
}

.service-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), #1a9ee6);
    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(31, 179, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(31, 179, 255, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), #1a9ee6);
    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(31, 179, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-item:hover {
    border-color: rgba(31, 179, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(31, 179, 255, 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%, #1a9ee6 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(31, 179, 255, 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), #1a9ee6);
    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(31, 179, 255, 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(31, 179, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 179, 255, 0.15);
    border-color: rgba(31, 179, 255, 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(31, 179, 255, 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(31, 179, 255, 0.3);
        margin-bottom: 5px;
    }
    
    .dropdown-menu li a:hover {
        background: rgba(31, 179, 255, 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: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    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(31, 179, 255, 0.1), rgba(26, 158, 230, 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: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 30px;
    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(31, 179, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.review-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(31, 179, 255, 0.05), rgba(26, 158, 230, 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, #1fb3ff 0%, #1a9ee6 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(31, 179, 255, 0.3);
    transition: all 0.3s ease;
}

.review-card:hover .reviewer-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(31, 179, 255, 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(31, 179, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(31, 179, 255, 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-blue), #1a9ee6);
    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(--primary-white);
    color: var(--primary-blue);
    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, #1fb3ff, #1a9ee6);
    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(31, 179, 255, 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, #1a9ee6, #1590d4);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 179, 255, 0.4);
}

.scroll-to-top:hover::before {
    opacity: 1;
}

.scroll-to-top:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(31, 179, 255, 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%;
}
