       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #1e3a5f;
            --primary-cyan: #17a2b8;
            --accent-blue: #2563eb;
            --light-cyan: #67e8f9;
            --white: #ffffff;
            --light-bg: #f0f9ff;
            --dark-text: #1e293b;
            --gray: #64748b;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--white);
            color: var(--dark-text);
            overflow-x: hidden;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 50%, #e0f2fe 100%);
            background-size: 400% 400%;
            animation: gradientShift 20s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Floating Shapes */
        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: floatShape 25s infinite;
        }

        .shape:nth-child(1) {
            width: 300px;
            height: 300px;
            background: var(--primary-cyan);
            top: 10%;
            left: -150px;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            width: 200px;
            height: 200px;
            background: var(--accent-blue);
            top: 60%;
            right: -100px;
            animation-delay: 5s;
        }

        .shape:nth-child(3) {
            width: 250px;
            height: 250px;
            background: var(--primary-dark);
            bottom: 10%;
            left: 20%;
            animation-delay: 10s;
        }

        @keyframes floatShape {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            25% {
                transform: translate(50px, -50px) rotate(90deg);
            }
            50% {
                transform: translate(0, -100px) rotate(180deg);
            }
            75% {
                transform: translate(-50px, -50px) rotate(270deg);
            }
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 4px 40px rgba(0, 0, 0, 0.15);
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            letter-spacing: -2px;
            z-index: 1001;
            position: relative;
        }

        .logo .haba {
            color: var(--primary-dark);
            display: inline-block;
            animation: logoFloat 3s ease-in-out infinite;
        }

        .logo .log {
            color: var(--primary-cyan);
            display: inline-block;
            animation: logoFloat 3s ease-in-out infinite;
            animation-delay: 0.2s;
        }

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

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-cyan), var(--accent-blue));
            transition: width 0.3s ease;
            border-radius: 3px;
        }

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

        .nav-links a:hover {
            color: var(--primary-cyan);
            transform: translateY(-2px);
        }

        /* Hamburger */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            cursor: pointer;
            z-index: 1002;
            width: 46px;
            height: 46px;
            position: relative;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--primary-dark);
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            border-radius: 3px;
            display: block;
        }

        /* X-Icon Animation */
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg);
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -14px;
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: scale(0);
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg);
            position: absolute;
            top: 50%;
            left: 50%;
            margin-left: -14px;
        }

        /* Mobile Logo */
        .mobile-logo {
            display: none;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            padding: 2rem;
            margin-top: 100px;
        }

        .hero-content {
            text-align: center;
            max-width: 1200px;
        }

        .hero-title {
            font-size: clamp(3rem, 10vw, 7rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-cyan), var(--accent-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleFloat 4s ease-in-out infinite;
        }

        @keyframes titleFloat {
            0%, 100% {
                transform: translateY(0) scale(1);
            }
            50% {
                transform: translateY(-10px) scale(1.02);
            }
        }

        .hero-tagline {
            font-size: clamp(1.1rem, 3vw, 2rem);
            margin-bottom: 1rem;
            color: var(--primary-dark);
            font-weight: 600;
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
            animation-delay: 0.3s;
        }

        .hero-subtitle {
            font-size: clamp(0.9rem, 2vw, 1.3rem);
            margin-bottom: 3rem;
            color: var(--gray);
            opacity: 0;
            animation: fadeInUp 1s ease forwards;
            animation-delay: 0.6s;
            padding: 0 1rem;
        }

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

        .cta-button {
            display: inline-block;
            padding: 1.5rem 4rem;
            background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
            color: var(--white);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px rgba(23, 162, 184, 0.3);
            animation: buttonPulse 2s ease-in-out infinite;
        }

        @keyframes buttonPulse {
            0%, 100% {
                box-shadow: 0 10px 40px rgba(23, 162, 184, 0.3);
            }
            50% {
                box-shadow: 0 15px 50px rgba(23, 162, 184, 0.5);
            }
        }

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

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

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 60px rgba(23, 162, 184, 0.5);
        }

        /* Stats Section */
        .stats {
            padding: 20rem 2rem;
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
        }

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

        .section-title {
            text-align: center;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: -2px;
        }

      .section-title2 {
            text-align: center;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 900;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-cyan));
            -webkit-background-clip: text;
            text-transform: uppercase;
            letter-spacing: -2px;
		    color: white;
        }

        .section-subtitle {
            text-align: center;
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: var(--gray);
            margin-bottom: 4rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .stat-card {
            background: var(--white);
            border-radius: 30px;
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-cyan), var(--accent-blue));
        }

        .stat-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(23, 162, 184, 0.1), transparent);
            transform: translate(-50%, -50%);
            transition: all 0.5s ease;
        }

        .stat-card:hover::after {
            width: 300%;
            height: 300%;
        }

        .stat-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 20px 60px rgba(23, 162, 184, 0.2);
        }

        .stat-number {
            font-size: clamp(3rem, 7vw, 5rem);
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            z-index: 1;
            margin-bottom: 1rem;
            line-height: 1;
        }

        .stat-label {
            font-size: 1.2rem;
            color: var(--primary-dark);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            z-index: 1;
        }

        /* Services Section */
        .services {
            padding: 6rem 2rem;
            position: relative;
            z-index: 2;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .service-card {
            background: var(--white);
            border-radius: 30px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(23, 162, 184, 0.05), rgba(37, 99, 235, 0.05));
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-20px) rotateX(5deg);
            box-shadow: 0 25px 70px rgba(23, 162, 184, 0.25);
        }

        .service-icon {
            width: 100px;
            height: 100px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(23, 162, 184, 0.3);
            transition: all 0.5s ease;
            animation: iconBounce 3s ease-in-out infinite;
        }

        @keyframes iconBounce {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-10px) rotate(5deg);
            }
            75% {
                transform: translateY(-5px) rotate(-5deg);
            }
        }

        .service-card:hover .service-icon {
            transform: scale(1.15) rotate(360deg);
            box-shadow: 0 15px 40px rgba(23, 162, 184, 0.5);
        }

        .service-icon svg {
            width: 50px;
            height: 50px;
            stroke: var(--white);
            stroke-width: 2;
        }

        .service-title {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: var(--primary-dark);
            text-transform: uppercase;
        }

        .service-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--gray);
        }

        /* Services Intro Text */
        .services-intro {
            max-width: 950px;
            margin: 0 auto 4rem;
            text-align: center;
            padding: 0 1rem;
        }

        .intro-highlight {
            font-size: 1.25rem;
            line-height: 1.9;
            color: var(--primary-dark);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .intro-text {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--gray);
            font-weight: 500;
        }

        /* Detailed Services Grid */
        .services-grid-detailed {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card-detailed {
            background: var(--white);
            border-radius: 35px;
            padding: 3.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
            border: 3px solid transparent;
        }

        .service-card-detailed::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(23, 162, 184, 0.05), rgba(37, 99, 235, 0.05));
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .service-card-detailed:hover {
            transform: translateY(-20px);
            box-shadow: 0 30px 80px rgba(23, 162, 184, 0.25);
            border-color: var(--primary-cyan);
        }

        .service-card-detailed:hover::before {
            opacity: 1;
        }

        /* Large Service Icon */
        .service-icon-large {
            width: 130px;
            height: 130px;
            margin: 0 auto 2.5rem;
            background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
            border-radius: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 50px rgba(23, 162, 184, 0.4);
            transition: all 0.6s ease;
            animation: iconFloat 4s ease-in-out infinite;
            position: relative;
            z-index: 1;
        }

        @keyframes iconFloat {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-15px) rotate(8deg);
            }
        }

        .service-card-detailed:hover .service-icon-large {
            transform: scale(1.15) rotate(360deg);
            box-shadow: 0 25px 60px rgba(23, 162, 184, 0.6);
        }

        .service-icon-large svg {
            width: 65px;
            height: 65px;
            stroke: var(--white);
            stroke-width: 2.5;
        }

        /* Service Title Detailed */
        .service-title-detailed {
            font-size: 2.2rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            color: var(--primary-dark);
            text-transform: uppercase;
            letter-spacing: -0.5px;
            text-align: center;
            position: relative;
            z-index: 1;
        }

        /* Service Description Detailed */
        .service-description-detailed {
            font-size: 1.15rem;
            line-height: 1.9;
            color: var(--gray);
            text-align: center;
            margin-bottom: 2.5rem;
            font-weight: 500;
            position: relative;
            z-index: 1;
        }

        /* Service Features */
        .service-features {
            margin-top: 2.5rem;
            padding-top: 2.5rem;
            border-top: 3px solid rgba(23, 162, 184, 0.15);
            display: flex;
            flex-direction: column;
            gap: 1.8rem;
            position: relative;
            z-index: 1;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            padding: 1.2rem;
            background: rgba(240, 249, 255, 0.6);
            border-radius: 18px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .feature-item:hover {
            background: rgba(240, 249, 255, 1);
            transform: translateX(10px);
            border-color: var(--primary-cyan);
            box-shadow: 0 8px 25px rgba(23, 162, 184, 0.15);
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(23, 162, 184, 0.3);
            transition: all 0.3s ease;
        }

        .feature-item:hover .feature-icon {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 8px 20px rgba(23, 162, 184, 0.5);
        }

        .feature-icon svg {
            width: 26px;
            height: 26px;
            stroke: var(--white);
            stroke-width: 2.5;
        }

        .feature-text {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            flex: 1;
        }

        .feature-text strong {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-dark);
            line-height: 1.3;
        }

        .feature-text span {
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.5;
            font-weight: 500;
        }

        /* Info Section */
        .info-section {
            padding: 20rem 2rem;
            position: relative;
            z-index: 2;
            background: linear-gradient(135deg, #2d5986 0%, #1ea8ba 100%);
            color: var(--white);
        }

        .info-section .section-title {
            color: var(--white);
            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
            font-weight: 900;
        }

        .info-section .section-subtitle {
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            font-weight: 600;
        }

        .info-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .info-box {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 2.5rem;
            border: 2px solid rgba(255, 255, 255, 0.4);
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .info-box:hover {
            background: rgba(255, 255, 255, 0.35);
            transform: translateY(-10px);
            border-color: rgba(255, 255, 255, 0.6);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
        }

        .info-box h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 900;
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .info-box p {
            line-height: 1.8;
            color: var(--white);
            font-size: 1.05rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
            font-weight: 500;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 2rem;
            position: relative;
            z-index: 2;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
        }

        .contact-form {
            max-width: 800px;
            margin: 3rem auto;
            background: var(--white);
            padding: 3rem;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--primary-dark);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: var(--light-bg);
            border: 2px solid transparent;
            border-radius: 15px;
            color: var(--dark-text);
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-cyan);
            box-shadow: 0 0 0 4px rgba(23, 162, 184, 0.1);
            background: var(--white);
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        .submit-button {
            width: 100%;
            padding: 1.5rem;
            background: linear-gradient(135deg, var(--primary-cyan), var(--accent-blue));
            border: none;
            border-radius: 15px;
            color: var(--white);
            font-size: 1.2rem;
            font-weight: 700;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(23, 162, 184, 0.3);
        }

        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(23, 162, 184, 0.5);
        }

        /* Footer */
        footer {
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            z-index: 2;
            background: var(--primary-dark);
            color: var(--white);
        }

        .footer-logo {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }

        .footer-logo .haba {
            color: var(--white);
        }

        .footer-logo .log {
            color: var(--primary-cyan);
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin: 2rem 0;
            flex-wrap: wrap;
            list-style: none;
        }

        .footer-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
            opacity: 0.8;
        }

        .footer-links a:hover {
            color: var(--primary-cyan);
            opacity: 1;
        }

        /* Mobile Responsive */
        @media (max-width: 992px) {
            .menu-toggle {
                display: flex;
            }

            /* Fullscreen Mobile Menu */
            .nav-links {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2.5rem;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-100%);
                transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
                z-index: 1001;
            }

            .nav-links.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .mobile-logo {
                display: block;
                position: absolute;
                top: 1.5rem;
                left: 2rem;
                font-size: 2rem;
                font-weight: 900;
                letter-spacing: -1px;
            }

            .mobile-logo .haba {
                color: var(--primary-dark);
            }

            .mobile-logo .log {
                color: var(--primary-cyan);
            }

            .nav-links li {
                opacity: 0;
                transform: translateY(20px);
                transition: all 0.3s ease;
            }

            .nav-links.active li {
                opacity: 1;
                transform: translateY(0);
            }

            .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
            .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
            .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
            .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
            .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }

            .nav-links a {
                font-size: 2rem;
                padding: 1rem;
            }

            .nav-links a::after {
                display: none;
            }

            .nav-links a:hover {
                transform: scale(1.1);
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 1rem 1.5rem;
            }

            .logo {
                font-size: 1.8rem;
            }

            .mobile-logo {
                font-size: 1.8rem;
                top: 1.2rem;
                left: 1.5rem;
            }

            .nav-links a {
                font-size: 1.8rem;
            }

            .hero {
                padding: 2rem 1.5rem;
            }

            .hero-title {
                font-size: clamp(2.5rem, 10vw, 4rem);
                margin-bottom: 1.5rem;
            }

            .hero-tagline {
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }

            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 2.5rem;
            }

            .cta-button {
                font-size: 1.1rem;
                padding: 1.3rem 3rem;
            }

            .section-title {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }

            .section-subtitle {
                font-size: 1.1rem;
                margin-bottom: 3rem;
            }

            .stats,
            .services,
            .info-section,
            .contact {
                padding: 4rem 1.5rem;
            }

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

            .services-grid,
            .services-grid-detailed,
            .info-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .intro-highlight {
                font-size: 1.1rem;
            }

            .intro-text {
                font-size: 1rem;
            }

            .service-card-detailed {
                padding: 2.5rem;
                border-radius: 25px;
            }

            .service-icon-large {
                width: 110px;
                height: 110px;
                border-radius: 25px;
            }

            .service-icon-large svg {
                width: 55px;
                height: 55px;
            }

            .service-title-detailed {
                font-size: 1.8rem;
            }

            .service-description-detailed {
                font-size: 1.05rem;
            }

            .feature-item {
                padding: 1rem;
                gap: 1.2rem;
            }

            .feature-icon {
                width: 45px;
                height: 45px;
            }

            .feature-icon svg {
                width: 24px;
                height: 24px;
            }

            .feature-text strong {
                font-size: 1rem;
            }

            .feature-text span {
                font-size: 0.9rem;
            }

            .stat-card {
                padding: 2rem 1.5rem;
            }

            .stat-number {
                font-size: 3rem;
            }

            .stat-label {
                font-size: 1.1rem;
            }

            .service-card {
                padding: 2.5rem;
            }

            .service-title {
                font-size: 1.6rem;
            }

            .service-description {
                font-size: 1rem;
            }

            .info-box h3 {
                font-size: 1.6rem;
            }

            .info-box p {
                font-size: 1rem;
            }

            .form-group label {
                font-size: 0.85rem;
            }

            .form-group input,
            .form-group textarea {
                font-size: 0.95rem;
            }

            .submit-button {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            nav {
                padding: 0.8rem 1rem;
            }

            .logo {
                font-size: 1.5rem;
            }

            .mobile-logo {
                font-size: 1.5rem;
                top: 1rem;
                left: 1rem;
            }

            .menu-toggle {
                width: 42px;
                height: 42px;
            }

            .menu-toggle span {
                width: 26px;
            }

            .menu-toggle.active span:nth-child(1),
            .menu-toggle.active span:nth-child(3) {
                margin-left: -13px;
            }

            .nav-links a {
                font-size: 1.5rem;
            }

            .hero {
                padding: 2rem 1rem;
                margin-top: 80px;
            }

            .hero-title {
                font-size: 2.2rem;
                margin-bottom: 1rem;
            }

            .hero-tagline {
                font-size: 1.1rem;
                margin-bottom: 0.8rem;
            }

            .hero-subtitle {
                font-size: 0.9rem;
                margin-bottom: 2rem;
                padding: 0 0.5rem;
            }

            .cta-button {
                width: 100%;
                max-width: 320px;
                padding: 1.2rem 2rem;
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
                margin-bottom: 0.8rem;
            }

            .section-subtitle {
                font-size: 0.95rem;
                margin-bottom: 2.5rem;
            }

            .stats,
            .services,
            .info-section,
            .contact {
                padding: 3rem 1rem;
            }

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

            .stat-card {
                padding: 2rem 1rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .stat-label {
                font-size: 1rem;
            }

            .service-card {
                padding: 2rem;
            }

            .service-icon {
                width: 80px;
                height: 80px;
            }

            .service-icon svg {
                width: 40px;
                height: 40px;
            }

            .service-title {
                font-size: 1.4rem;
            }

            .service-description {
                font-size: 0.95rem;
                line-height: 1.7;
            }

            .info-box {
                padding: 2rem;
            }

            .info-box h3 {
                font-size: 1.4rem;
                margin-bottom: 0.8rem;
            }

            .info-box p {
                font-size: 0.95rem;
                line-height: 1.7;
            }

            .contact-form {
                padding: 2rem;
            }

            .form-group label {
                font-size: 0.8rem;
                margin-bottom: 0.4rem;
            }

            .form-group input,
            .form-group textarea {
                font-size: 0.9rem;
                padding: 0.9rem;
            }

            .submit-button {
                font-size: 1rem;
                padding: 1.3rem;
            }

            .footer-logo {
                font-size: 2rem;
            }

            .footer-links a {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 360px) {
            .logo {
                font-size: 1.3rem;
            }

            .mobile-logo {
                font-size: 1.3rem;
            }

            .nav-links a {
                font-size: 1.3rem;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-tagline {
                font-size: 1rem;
            }

            .hero-subtitle {
                font-size: 0.85rem;
            }

            .cta-button {
                font-size: 0.95rem;
                padding: 1.1rem 1.8rem;
            }

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

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

            .stats {
                padding: 2.5rem 0.8rem;
            }

            .stats-grid {
                gap: 1rem;
            }

            .stat-card {
                padding: 1.8rem 1rem;
                border-radius: 20px;
            }

            .stat-number {
                font-size: 2.2rem;
            }

            .stat-label {
                font-size: 0.95rem;
            }

            .service-title {
                font-size: 1.3rem;
            }

            .service-description {
                font-size: 0.9rem;
            }

            .service-title-detailed {
                font-size: 1.5rem;
            }

            .service-description-detailed {
                font-size: 0.95rem;
            }

            .service-icon-large {
                width: 90px;
                height: 90px;
            }

            .service-icon-large svg {
                width: 45px;
                height: 45px;
            }

            .intro-highlight {
                font-size: 1rem;
            }

            .intro-text {
                font-size: 0.9rem;
            }

            .service-card-detailed {
                padding: 2rem;
            }

            .service-features {
                gap: 1.3rem;
            }

            .feature-item {
                padding: 0.9rem;
                gap: 1rem;
                flex-direction: column;
                text-align: center;
            }

            .feature-icon {
                width: 50px;
                height: 50px;
                margin: 0 auto;
            }

            .feature-text strong {
                font-size: 0.95rem;
            }

            .feature-text span {
                font-size: 0.85rem;
            }

            .info-box h3 {
                font-size: 1.3rem;
            }

            .info-box p {
                font-size: 0.9rem;
            }

            .form-group label {
                font-size: 0.75rem;
            }

            .form-group input,
            .form-group textarea {
                font-size: 0.85rem;
                padding: 0.8rem;
            }

            .submit-button {
                font-size: 0.95rem;
            }
        }

        /* Touch optimizations */
        @media (hover: none) and (pointer: coarse) {
            .cta-button,
            .submit-button,
            .nav-links a {
                -webkit-tap-highlight-color: transparent;
            }

            .stat-card:hover,
            .service-card:hover {
                transform: none;
            }

            .stat-card:active {
                transform: scale(0.98);
            }

            .service-card:active {
                transform: scale(0.98);
            }

            .service-icon {
                animation: none;
            }
        }

        /* Prevent horizontal scroll */
        html, body {
            max-width: 100%;
            overflow-x: hidden;
        }

        /* Scroll Animations */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loader Animation */
        @keyframes spin {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }