        /* Critical CSS for above-the-fold content */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Optimize for Core Web Vitals */
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
            overflow-x: hidden;
        }

        /* Optimize images */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Optimize animations for performance */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: #fafafa;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

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

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #1e40af, #dc2626);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #1e3a8a, #b91c1c);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes slideInFromTop {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .animate-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-left.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .animate-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-right.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .animate-scale {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-scale.animated {
            opacity: 1;
            transform: scale(1);
        }

        /* Loading Animation */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loading.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255,255,255,0.3);
            border-top: 3px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

/* TOP HEADER */
.top-header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 12px 0;
    color: white;
    font-size: 13px;
    position: relative;
    z-index: 9999;
}

/* 🔥 MAIN LAYOUT */
.top-header-container{
    display: grid !important;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}

/* LEFT */
.top-contact-info{
    display: flex;
    gap: 12px;
    align-items: center;
    justify-self: start;
}

/* CENTER LOGO */
.top-logo{
    justify-self: center;
    display: flex;
    align-items: center;
}

.top-logo img{
    height: 58px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* RIGHT */
.top-social-links{
    display: flex;
    gap: 8px;
    align-items: center;
    justify-self: end;
}

.top-social-link i{
    color: #ffffff !important;
}

.top-social-link:hover i{
    color: #3b82f6 !important;
}

/* CONTACT ITEM */
.top-contact-item{
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.top-contact-item i{
    font-size: 12px;
    color: #fbbf24;
}

.top-contact-item a,
.top-contact-item span{
    color: white;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}

/* SOCIAL */
.top-social-link{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.top-social-link:hover{
    transform: scale(1.1);
    background: rgba(255,255,255,0.25);
}

@media (max-width: 768px){

    .top-header-container{
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }

    .top-contact-info{
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-logo{
        order: -1; /* logo üste gelir */
    }

    .top-social-links{
        justify-content: center;
    }
}

/* Main Header */
.main-header {
background: white;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
position: sticky;
z-index: 9998;
}

.header-content {
max-width: 1400px;
margin: 0 auto;
padding: 20px;
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
gap: 20px;
}

.mobile-menu-btn {
  display: none;
}
.mobile-nav {
  display: none;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;

    width: fit-content;
    max-width: 350px;

    margin: 0 auto;

    pointer-events: auto;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;

    background: linear-gradient(135deg, #1e40af, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    margin: 0;
    padding: 0;

    display: inline-block; /* önemli */
}

.logo:hover h1 {
transform: scale(1.05);
}

.logo p {
font-size: 12px;
color: #6b7280;
font-weight: 500;
letter-spacing: 1px;
}

.nav-left, .nav-right {
display: flex;
gap: 22px;
align-items: center;
min-width: 0;
}

.nav-right {
justify-content: flex-end;
}

.nav-left {
justify-content: flex-start;
}

.nav-left .nav-link,
.nav-right .nav-link,
.mobile-nav .nav-link {
display: inline-flex;
align-items: center;
gap: 6px;
white-space: nowrap;
}

.nav-left .nav-link i.material-icons,
.nav-right .nav-link i.material-icons,
.mobile-nav .nav-link i.material-icons {
font-family: 'Material Icons' !important;
font-weight: normal;
font-style: normal;
font-size: 18px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
}

.nav-item {
color: #374151;
text-decoration: none;
font-weight: 600;
font-size: 15px;
padding: 10px 0;
position: relative;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover {
color: #1e40af;
transform: translateY(-2px);
}

.nav-item::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(135deg, #1e40af, #dc2626);
transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item:hover::after {
width: 100%;
}

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Hero Slider Section */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .slider-container {
            position: relative;
            height: 100%;
            width: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Background images are now set directly in HTML */

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
        }

        .slide-content h1 {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 900;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: slideInDown 1s ease-out;
        }

        .slide-content h2 {
            font-size: clamp(18px, 3vw, 24px);
            font-weight: 600;
            margin-bottom: 15px;
            opacity: 0.9;
            animation: slideInUp 1s ease-out 0.2s both;
        }

        .slide-content p {
            font-size: clamp(14px, 2vw, 18px);
            margin-bottom: 30px;
            opacity: 0.8;
            animation: slideInUp 1s ease-out 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 30px;
            animation: slideInUp 1s ease-out 0.6s both;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .btn-primary {
            background: #dc2626;
            color: white;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
        }

        .btn-primary:hover {
            background: #b91c1c;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
        }

        .btn-secondary {
            background: #000000;
            color: white;
            border-color: white;
        }

        .btn-secondary:hover {
            background: white;
            color: #1e40af;
            transform: translateY(-2px);
        }

        .emergency-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            color: white;
            padding: 18px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
            animation: pulse 2s infinite;
        }

        .emergency-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 30px;
            z-index: 10;
        }

        .prev-btn, .next-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .prev-btn:hover, .next-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .slider-dots {
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* Slide Animations */
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }


        /* Detailed Services Section */
        .detailed-services {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .detailed-services-grid2 {
            display: grid;
            gap: 30px;
            margin-top: 60px;
        }

        .detailed-services-grid {
            display: grid;
            gap: 30px;
            margin-top: 60px;
        }

        .detailed-service-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #f3f4f6;
        }

        .detailed-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }

        .service-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f3f4f6;
        }

        .service-header i {
            font-size: 32px;
            color: #1e40af;
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-header h3 {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin: 0;
        }

        .service-content p {
            color: #6b7280;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .service-content ul {
            list-style: none;
            padding: 0;
            margin-top: 15px;
        }

        .service-content li {
            color: #6b7280;
            padding: 8px 0;
            border-bottom: 1px solid #f3f4f6;
            position: relative;
            padding-left: 20px;
        }

        .service-content li:before {
            content: 'âœ“';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
        }

        .service-content li:last-child {
            border-bottom: none;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: white;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

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

        .section-title {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 18px;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            gap: 40px;
            margin-bottom: 80px;
        }

        .service-card {
            background: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            border: 1px solid #f3f4f6;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #1e40af, #dc2626);
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: translateX(0);
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 80px rgba(0,0,0,0.15);
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 32px;
            color: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card h3 {
            font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .service-card p {
            color: #6b7280;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .service-image {
            width: 100%;
            height: 200px;
            border-radius: 16px;
            margin-bottom: 20px;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-image video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

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

        /* About Section */
        .about {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .about-content {

            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-text h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 24px;
        }

        .about-text p {
            color: #6b7280;
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #10b981, #059669);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
        }

        .about-image {
            width: 100%;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
            border-radius: 24px;
        }

        /* Areas Section */
        .areas {
            padding: 100px 0;
            background: white;
        }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-top: 60px;
        }

        .area-item {
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            color: white;
            padding: 32px 24px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .area-item::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;
        }

        .area-item:hover::before {
            left: 100%;
        }

        .area-item:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 50px rgba(30, 64, 175, 0.4);
        }

        .area-item:hover i {
            transform: scale(1.2) rotate(10deg);
        }

        .area-item i {
            font-size: 32px;
            margin-bottom: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .area-item h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }


        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
            color: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .contact-info h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            margin-bottom: 32px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            padding: 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 16px;
            backdrop-filter: blur(10px);
        }

        .contact-item i {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .contact-item a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .contact-form:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 80px rgba(0,0,0,0.15);
        }

        .contact-form h3 {
            color: #1a1a1a;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: #fafafa;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1e40af;
            box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
            background: white;
            transform: translateY(-2px);
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
        }

        /* Footer */
        .footer {
            background: #0f172a;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #fbbf24;
        }

        .footer-section p,
        .footer-section li {
            color: #cbd5e1;
            line-height: 1.8;
            margin-bottom: 8px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-links a {
            color: white;
            text-decoration: none; 
            font-weight: bold; 
        }
        
        .footer-links p {
            color: white;
            font-weight: bold;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .footer-section a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: #fbbf24;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-section a:hover::before {
            width: 100%;
        }

        .footer-section a:hover {
            color: #fbbf24;
            transform: translateX(5px);
        }

        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 30px;
            text-align: center;
            color: #94a3b8;
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            text-decoration: none;
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: bounce 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(135deg, #1e40af, #dc2626);
            z-index: 10000;
            transition: width 0.1s ease;
        }

        .fab-container {
            position: fixed;
            bottom: 100px; 
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
        }

        .fab {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        

        .fab::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;
        }

        .fab:hover::before {
            left: 100%;
        }

        .fab:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
        }

        .fab.phone-fab {
            background: linear-gradient(135deg, #dc2626, #ef4444);
        }

        .fab.phone-fab:hover {
            box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
        }

        .fab.arrow-fab {
            background: linear-gradient(135deg, #1e40af, #3b82f6);
        }

        .fab.whatsapp-fab {
            background: #25d366;
            font-size: 28px;
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
            animation: bounce 2s infinite;
        }

        /* Stats Section */
        .stats {
            padding: 80px 0;
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            padding: 30px;
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.15);
        }

        .stat-number {
            font-size: 48px;
            font-weight: 900;
            color: #fbbf24;
            margin-bottom: 10px;
            display: block;
        }

        .stat-label {
            font-size: 18px;
            font-weight: 600;
        }

        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }


.cta-section::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            animation: float 15s ease-in-out infinite;
        }

.cta-content {
    position: relative;
    z-index: 2;
        }

        .cta-content h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .cta-content p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

.cta-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;
        }

.cta-btn:hover::before {
            left: 100%;
        }

.cta-btn.primary {
    background: black;
    color: #dc2626;
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,255,255,0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #dc2626;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,255,255,0.2);
}

.cta-btn i {
    font-size: 20px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* 404 Error Page */
.error-page {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 80vh;
            display: flex;
            align-items: center;
}

.error-content {
            text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.error-animation {
    position: relative;
    margin-bottom: 40px;
}

.error-number {
    font-size: clamp(120px, 20vw, 200px);
            font-weight: 900;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    animation: errorPulse 2s ease-in-out infinite;
}

.error-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: errorFloat 3s ease-in-out infinite;
}

.error-icon i {
    font-size: 40px;
    color: #dc2626;
}

.error-text h1 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
    color: #1a1a1a;
            margin-bottom: 20px;
        }

.error-text p {
            font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
            margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
        }

.error-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
    margin-bottom: 60px;
            flex-wrap: wrap;
        }

.error-btn {
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 10px;
    position: relative;
    overflow: hidden;
}

.error-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;
}

.error-btn:hover::before {
    left: 100%;
}

.error-btn.primary {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
            color: white;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
        }

.error-btn.primary:hover {
            transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
}

.error-btn.secondary {
    background: transparent;
    color: #1e40af;
    border: 2px solid #1e40af;
}

.error-btn.secondary:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.2);
}

.error-btn i {
    font-size: 20px;
}

.error-suggestions {
            background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            border: 1px solid #f3f4f6;
        }

.error-suggestions h3 {
    font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
    margin-bottom: 24px;
}

.suggestion-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.suggestion-links a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
    overflow: hidden;
        }

.suggestion-links a::before {
    content: '';
            position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
    transition: left 0.6s ease;
}

.suggestion-links a:hover::before {
    left: 100%;
}

.suggestion-links a:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.2);
}

@keyframes errorPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes errorFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }

        .faq-item {
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }

        .faq-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .faq-question {
            padding: 25px 30px;
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
        }

        .faq-icon {
            display: flex;
            align-items: center;
            margin-right: 15px;
        }

        .faq-icon i {
            font-size: 24px;
            margin-right: 10px;
        }

        .faq-question h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            flex: 1;
        }

        .expand-icon {
            font-size: 24px;
            transition: transform 0.3s ease;
        }

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

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 2000px;
        }

        .answer-content {
            padding: 30px;
        }

        .answer-content p {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .benefit-item {
            background: #f8fafc;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 15px;
            border-left: 4px solid #3b82f6;
        }

        .benefit-item h4 {
            color: #1e40af;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 10px 0;
            display: flex;
            align-items: center;
        }

        .benefit-item h4 i {
            margin-right: 8px;
            font-size: 20px;
        }

        .benefit-item p {
            color: #6b7280;
            line-height: 1.6;
            margin: 0;
            font-size: 14px;
        }


        /* Google Maps Section */
        .maps-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .maps-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
            pointer-events: none;
        }

        .map-container {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 
                0 25px 80px rgba(0,0,0,0.15),
                0 10px 30px rgba(30, 64, 175, 0.1),
                inset 0 1px 0 rgba(255,255,255,0.8);
            margin-top: 40px;
            background: white;
            padding: 8px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .map-container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #1e40af, #3b82f6, #60a5fa, #93c5fd);
            border-radius: 27px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .map-container:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 
                0 35px 100px rgba(0,0,0,0.2),
                0 15px 40px rgba(30, 64, 175, 0.15),
                inset 0 1px 0 rgba(255,255,255,0.9);
        }

        .map-container:hover::before {
            opacity: 1;
        }

        .map-container iframe {
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
        }

        .map-container:hover iframe {
            filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
        }

        /* Map Info Overlay */
        .map-info {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 20px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            z-index: 10;
            transition: all 0.3s ease;
        }

        .map-info h4 {
            margin: 0 0 5px 0;
            color: #1e40af;
            font-weight: 700;
            font-size: 16px;
        }

        .map-info p {
            margin: 0;
            color: #6b7280;
            font-size: 14px;
        }

        .map-container:hover .map-info {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }

        /* Map Loading Animation */
        .map-container::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 40px;
            margin: -20px 0 0 -20px;
            border: 3px solid #f3f4f6;
            border-top: 3px solid #1e40af;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            z-index: 5;
        }

        .map-container.loaded::after {
            display: none;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive Map */
        @media (max-width: 768px) {
            .map-container {
                margin: 20px 10px;
                padding: 5px;
            }
            
            .map-info {
                top: 10px;
                left: 10px;
                padding: 10px 15px;
            }
            
            .map-info h4 {
                font-size: 14px;
            }
            
            .map-info p {
                font-size: 12px;
            }
        }

        .service-category {
            background: #f0f9ff;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 15px;
            border-left: 4px solid #0ea5e9;
        }

        .service-category h4 {
            color: #0369a1;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 10px 0;
            display: flex;
            align-items: center;
        }

        .service-category h4 i {
            margin-right: 8px;
            font-size: 20px;
        }

        .service-category p {
            color: #6b7280;
            line-height: 1.6;
            margin: 0;
            font-size: 14px;
        }

        .services-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .service-group {
            background: #f8fafc;
            border-radius: 10px;
            padding: 20px;
            border-left: 4px solid #10b981;
        }

        .service-group h4 {
            color: #047857;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 15px 0;
            display: flex;
            align-items: center;
        }

        .service-group h4 i {
            margin-right: 8px;
            font-size: 20px;
        }

        .service-group ul {
            margin: 0;
            padding-left: 20px;
        }

        .service-group li {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 5px;
            font-size: 14px;
        }

        .response-time {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .time-item {
            background: #fef3c7;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            border-left: 4px solid #f59e0b;
        }

        .time-item i {
            font-size: 32px;
            color: #d97706;
            margin-bottom: 10px;
        }

        .time-item h4 {
            color: #92400e;
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 5px 0;
        }

        .time-item p {
            color: #92400e;
            font-size: 14px;
            margin: 0;
        }


@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    .mobile-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        padding: 12px 20px;
        z-index: 9999;
    }
    .mobile-nav.active {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }


    .detailed-services-grid {
        gap: 20px;
    }
    
    .detailed-services-grid2 {
        gap: 20px;
    }

    .detailed-service-card {
        padding: 20px;
    }

    .top-social-link i {
            font-size: 14px;
            }

            .header-content {
                display: flex;
                flex-direction: column;
                gap: 20px;
                align-items: center;
                position: relative;
            }

            .nav-left, .nav-right {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
                position: static;
                right: auto;
                top: auto;
                transform: none;
            }

            .logo {
                order: -1;
                text-align: center;
            }

            .logo .mobile-menu-btn {
                margin-top: 12px;
            }

    .hero-slider {
        height: 70vh;
            .services-grid2 {
                gap: 30px;
            }
            
            .services-grid {
                gap: 30px;
            }

            .service-card {
                padding: 30px 20px;
            }

            .service-card:hover {
                transform: translateY(-5px) scale(1.01);
            }

            .about-content {
                gap: 40px;
            }

            .about-features {
            }


        /* Areas Section */
        .areas {
            padding: 100px 0;
            background: white;
        }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-top: 60px;
        }

        .area-item {
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            color: white;
            padding: 32px 24px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .area-item::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;
        }

        .area-item:hover::before {
            left: 100%;
        }

        .area-item:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 50px rgba(30, 64, 175, 0.4);
        }

        .area-item:hover i {
            transform: scale(1.2) rotate(10deg);
        }

        .area-item i {
            font-size: 32px;
            margin-bottom: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .area-item h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }


            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-form:hover {
                transform: translateY(-2px);
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .area-item:hover {
                transform: translateY(-3px) scale(1.02);
            }

            .fab-container {
                bottom: 80px;
                right: 20px;
            }

            .fab {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

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

            .stat-number {
                font-size: 36px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .cta-content h2 {
                font-size: 24px;
            }
            
            .cta-content p {
                font-size: 16px;
            }
            
            .error-page {
                padding: 80px 0;
            }
            
            .error-number {
                font-size: 100px;
            }
            
            .error-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .error-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .suggestion-links {
                flex-direction: column;
                align-items: center;
            }
            
            .suggestion-links a {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }

            /* FAQ Mobile Styles */
            .faq-container {
                max-width: 100%;
                padding: 0 20px;
            }

            .faq-item {
                margin-bottom: 15px;
            }

            .faq-question {
                padding: 20px;
            }

            .faq-question h3 {
                font-size: 16px;
            }

            .answer-content {
                padding: 20px;
            }

            .services-list {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .response-time {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .benefit-item,
            .service-category,
            .service-group,
            .time-item {
                padding: 15px;
            }
        }

        @media (max-width: 480px) {
            .service-card {
                padding: 24px 16px;
            }

            .contact-form {
                padding: 24px;
            }

            .areas-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .cta-section {
                padding: 60px 0;
            }
            
            .cta-content h2 {
                font-size: 20px;
            }
            
            .cta-content p {
                font-size: 14px;
            }
            
            .cta-btn {
                padding: 12px 24px;
                font-size: 14px;
            }
            
            .error-page {
                padding: 60px 0;
            }
            
            .error-number {
                font-size: 80px;
            }
            
            .error-text h1 {
                font-size: 20px;
            }
            
            .error-text p {
                font-size: 14px;
            }
            
            .error-suggestions {
                padding: 24px;
            }
            
            .error-suggestions h3 {
                font-size: 18px;
            }
        }
}

.services-cta {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-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;
}

.services-cta .cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.services-cta .cta-content h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.services-cta .cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.services-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.services-cta .btn-primary {
    background: #fff;
    color: #1e40af;
    border: 2px solid #fff;
}

.services-cta .btn-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.services-cta .btn i {
    font-size: 1.2rem;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::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;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Overview Styles */
.services-overview {
    padding: 80px 0;
    background: #f8fafc;
}

.services-overview .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-overview .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 1rem;
}

.services-overview .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .services-cta .cta-content p {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .services-overview .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-cta .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .services-overview .section-title {
        font-size: 1.8rem;
    }
}

/* Message Notifications */
.message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.message.show {
    transform: translateX(0);
}

.message-success {
    border-left: 4px solid #10b981;
    color: #065f46;
}

.message-error {
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

.message-info {
    border-left: 4px solid #3b82f6;
    color: #1e40af;
}

.message i {
    font-size: 20px;
}

.message-success i {
    color: #10b981;
}

.message-error i {
    color: #ef4444;
}

.message-info i {
    color: #3b82f6;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Form Improvements */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ef4444;
}

.form-group.error .error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

/* Button Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* iki buton için ortak text yapısı */
.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

/* alt satır (telefon numarası) */
.btn-text br + * {
    font-size: 14px;
    opacity: 0.9;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;

    padding: 18px 36px;
    border-radius: 50px;

    text-decoration: none;
    font-weight: 700;
    font-size: 18px;

    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);

    transition: all 0.3s ease;
    animation: pulseWhatsapp 2s infinite;
}

/* Hover */
.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.45);
}

/* Pulse animasyonu */
@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Emergency button positioning at top of slider */
.emergency-top {
  
    top: 0;
    left: 0;
    right: 0;

    z-index: 999999;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;

    padding: 10px;
    background: transparent; /* istersen later koyarız */
}

/* Responsive Message */
@media (max-width: 768px) {
    .message {
        top: 20px;
        right: 10px;
        left: 20px;
        max-width: none;
    }
    
     .emergency-top {
        flex-direction: column;   /* sadece yön değiştir */
        gap: 10px;
        padding: 8px;
    }

    .emergency-btn,
    .whatsapp-btn {
        width: 92vw;
        max-width: 420px;

        padding: 14px 18px;
        font-size: 15px;

        justify-content: center;
        text-align: center;
    }

    .emergency-btn .material-icons {
        font-size: 20px !important;   /* ikon büyüdü */
    }


    .whatsapp-btn i {
        font-size: 20px;
    }
    
}

/* Hizmetler iÃ§in resim alanÄ± stilleri */
.service-image-container {
    position: relative;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.service-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(30,64,175,0.08);
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.service-image-upload {
    width: 400px;
    height: 240px;
    border: 2px dashed #667eea;
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s;
    position: relative;
}
.service-image-upload:hover {
    border-color: #1e40af;
    background: #e0e7ff;
}
.upload-placeholder {
    text-align: center;
    color: #667eea;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.upload-placeholder i {
    font-size: 48px;
    margin-bottom: 8px;
}
.upload-placeholder span {
    font-size: 16px;
    font-weight: 600;
}
.upload-placeholder small {
    font-size: 13px;
    color: #6b7280;
}
.image-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30,64,175,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    border-radius: 12px;
}

body.editor-mode .service-image .image-overlay,
body.editor-mode .blog-image .image-overlay {
    opacity: 1;
    pointer-events: all;
}

.service-image:hover .image-overlay,
.service-image:focus-within .image-overlay {
    opacity: 1;
    pointer-events: all;
}
.change-image-btn {
    background: linear-gradient(135deg, #667eea, #1e40af);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(30,64,175,0.20);
    transition: background 0.2s, transform 0.2s;
    min-width: 120px;
    justify-content: center;
}
.change-image-btn:hover {
    background: linear-gradient(135deg, #1e40af, #667eea);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(30,64,175,0.30);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.services-grid .service-card {
    flex: 0 1 320px;
    width: auto;
}

.services-grid2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.services-grid2 .service-card {
    flex: 0 1 320px;
    width: auto;
}

.videos-grid2 {
    display: grid;
    grid-template-columns: repeat(3, minmax(320px, 1fr));
    gap: 20px;
    width: 100%;
}

.videos-grid2 .service-card {
    width: 100%;
}

.form-group {
    width: 100%;
    max-width: 400px; /* istersen geniÅŸlik ayarla */
    margin: 10px auto;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #007bff;
    border-radius: 8px;
    background-color: white;
    color: #333;
    appearance: none; /* varsayÄ±lan arrow gizle */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1L6 6L11 1' stroke='%23007bff' stroke-width='2'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px 8px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-control:hover {
    border-color: #0056b3;
}

.form-control:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    background-color: #f0f8ff;
}

.form-control:disabled,
.form-control[disabled] {
    background-color: #f3f4f6;
    border-color: #d1d5db;
    color: #6b7280;
    cursor: not-allowed;
}

.form-control option {
    color: #333;
    background-color: white;
}

.slide-content h1,
.slide-content h2,
.slide-content p {
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* koyu gÃ¶lge */
    border: 1px solid rgba(255, 255, 255, 0.3); /* ince beyaz kenarlÄ±k */
    padding: 5px 10px; /* kenarlÄ±kla metin arasÄ±nda boÅŸluk */
    border-radius: 6px; /* kenarlÄ±k kÃ¶ÅŸelerini yumuÅŸatÄ±r */
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.3); /* arka plan opaklÄ±ÄŸÄ± */
    color: white;
}

/* Mobil cihazlar iÃ§in */
@media (max-width: 1200px) {
    .videos-grid2 {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 24px 20px;
        max-width: 100%;
    }

    .slide-content h1 {
        font-size: 24px;
    }

    .slide-content h2 {
        font-size: 20px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons a {
        margin-bottom: 10px;
        width: 100%;
        max-width: 250px;
    }

    .services-grid {
        flex-direction: column;
        align-items: stretch;
    }
    .services-grid .service-card {
        flex: 0 0 100%;
        width: 100%;
    }
    .services-grid2 {
        flex-direction: column;
        align-items: stretch;
    }
    .services-grid2 .service-card {
        width: 100%;
        flex: 0 0 100%;
    }
    .videos-grid2 {
        grid-template-columns: 1fr;
    }
}