        /* Force scroll to top */
        html {
            scroll-behavior: auto !important;
        }
        
        :root {
            --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --accent-color: #3b82f6;
            --dark-color: #1f2937;
            --light-gray: #f8fafc;
            --border-color: #e2e8f0;
            --text-color: #334155;
            --text-light: #64748b;
            --white: #ffffff;
            --success-color: #10b981;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--white);
        }

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

        /* Header */
        .header {
            background: var(--white);
            box-shadow: var(--shadow);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }

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

        .nav a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            transition: color 0.3s ease;
        }

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

        .header-phone {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1.1rem;
        }

        .header-phone::before {
            content: "📞";
            font-size: 1rem;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-color);
            cursor: pointer;
        }

        .menu-toggle::after {
            content: "☰";
            font-size: 1.5rem;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
            background-size: 400% 400%;
            animation: gradientShift 8s ease-in-out infinite;
            color: var(--white);
            padding: 8rem 0 6rem;
            margin-top: 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
                radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
                radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.12) 1.5px, transparent 1.5px),
                radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
                radial-gradient(circle at 10% 70%, rgba(255, 255, 255, 0.1) 2px, transparent 2px);
            background-size: 200px 200px, 150px 150px, 300px 300px, 250px 250px, 180px 180px;
            animation: floatingDots 20s linear infinite;
            pointer-events: none;
        }

        @keyframes floatingDots {
            0% {
                transform: translateY(0px) translateX(0px);
            }
            25% {
                transform: translateY(-10px) translateX(5px);
            }
            50% {
                transform: translateY(-5px) translateX(-5px);
            }
            75% {
                transform: translateY(-15px) translateX(3px);
            }
            100% {
                transform: translateY(0px) translateX(0px);
            }
        }

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

        @keyframes slideInFromTop {
            0% {
                opacity: 0;
                transform: translateY(-50px);
            }
            100% {
                opacity: 1;
                transform: translateY(-2px);
            }
        }

        @keyframes fadeInUp {
            0% {
                opacity: 0;
                transform: translateY(30px);
            }
            100% {
                opacity: 0.9;
                transform: translateY(-1px);
            }
        }

        @keyframes popIn {
            0% {
                opacity: 0;
                transform: translateY(-2px) scale(0.8);
            }
            50% {
                transform: translateY(-2px) scale(1.05);
            }
            100% {
                opacity: 1;
                transform: translateY(-2px) scale(1);
            }
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 
                    0 8px 20px rgba(0, 0, 0, 0.15),
                    0 4px 10px rgba(0, 0, 0, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.8),
                    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
            }
            50% {
                box-shadow: 
                    0 12px 30px rgba(0, 0, 0, 0.2),
                    0 6px 15px rgba(0, 0, 0, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.9),
                    inset 0 -1px 0 rgba(0, 0, 0, 0.05),
                    0 0 0 4px rgba(37, 99, 235, 0.1);
            }
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 
                0 3px 6px rgba(0, 0, 0, 0.4),
                0 6px 12px rgba(0, 0, 0, 0.3),
                0 1px 0 rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
            opacity: 0;
            animation: slideInFromTop 1s ease-out 0.3s forwards;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 
                0 2px 4px rgba(0, 0, 0, 0.3),
                0 4px 8px rgba(0, 0, 0, 0.2);
            transform: translateY(-1px);
            animation: fadeInUp 1s ease-out 0.8s forwards;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            color: var(--primary-color);
            text-decoration: none;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 
                0 8px 20px rgba(0, 0, 0, 0.15),
                0 4px 10px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8),
                inset 0 -1px 0 rgba(0, 0, 0, 0.05);
            transform: translateY(-2px);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            opacity: 0;
            animation: popIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.3s forwards, 
                       pulse 3s ease-in-out 2.5s infinite;
        }

        .cta-button:hover {
            transform: translateY(-4px);
            background: linear-gradient(145deg, #ffffff, #f8f8f8);
            box-shadow: 
                0 12px 30px rgba(0, 0, 0, 0.2),
                0 6px 15px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                inset 0 -1px 0 rgba(0, 0, 0, 0.05);
        }

        /* Section Styles */
        .section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 3rem;
            text-shadow: 
                0 2px 4px rgba(0, 0, 0, 0.1),
                0 4px 8px rgba(0, 0, 0, 0.05),
                0 1px 0 rgba(255, 255, 255, 0.8);
            transform: translateY(-1px);
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Why Us Section */
        .why-us {
            background: var(--light-gray);
        }

        .highlighted-message {
            background: linear-gradient(145deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 2rem 3rem;
            border-radius: 16px;
            text-align: center;
            margin: 0 auto 3rem;
            max-width: 900px;
            box-shadow: 
                0 12px 30px rgba(0, 0, 0, 0.2),
                0 6px 15px rgba(0, 0, 0, 0.15),
                inset 0 2px 0 rgba(255, 255, 255, 0.2),
                inset 0 -2px 0 rgba(0, 0, 0, 0.1);
            position: relative;
            transform: translateY(-3px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .highlighted-message:hover {
            transform: translateY(-5px);
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.25),
                0 8px 20px rgba(0, 0, 0, 0.2),
                inset 0 2px 0 rgba(255, 255, 255, 0.3),
                inset 0 -2px 0 rgba(0, 0, 0, 0.1);
        }

        .highlighted-message::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 30px;
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.3);
            font-weight: 300;
        }

        .highlighted-message p {
            font-size: 1.2rem;
            line-height: 1.6;
            margin: 0;
            font-weight: 400;
            text-shadow: 
                0 2px 4px rgba(0, 0, 0, 0.3),
                0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .feature-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 
                0 8px 20px rgba(0, 0, 0, 0.1),
                0 4px 10px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8),
                inset 0 -1px 0 rgba(0, 0, 0, 0.02);
            text-align: center;
            transition: all 0.3s ease;
            transform: translateY(-2px);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 
                0 12px 25px rgba(0, 0, 0, 0.15),
                0 6px 15px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                inset 0 -1px 0 rgba(0, 0, 0, 0.02);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(145deg, var(--primary-color), var(--accent-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 8px 20px rgba(0, 0, 0, 0.15),
                0 4px 10px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            position: relative;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }

        .feature-icon:hover {
            transform: translateY(-4px);
            box-shadow: 
                0 12px 25px rgba(0, 0, 0, 0.2),
                0 6px 15px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.5),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        }

        .feature-icon::before {
            content: "";
        }

        .feature-card:nth-child(1) .feature-icon::after {
            content: "★";
            font-size: 2.5rem;
            color: white;
            font-weight: 300;
        }

        .feature-card:nth-child(2) .feature-icon::after {
            content: "✓";
            font-size: 2.5rem;
            color: white;
            font-weight: 300;
        }

        .feature-card:nth-child(3) .feature-icon::after {
            content: "◉";
            font-size: 2.5rem;
            color: white;
            font-weight: 300;
        }

        .feature-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* How We Work Section */
        .process-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
        }

        .process-section .section-title {
            color: white;
            text-shadow: 
                0 2px 4px rgba(0, 0, 0, 0.3),
                0 4px 8px rgba(0, 0, 0, 0.2),
                0 1px 0 rgba(255, 255, 255, 0.1);
            position: relative;
            transform: translateY(-1px);
        }

        .process-section .section-subtitle {
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 
                0 1px 2px rgba(0, 0, 0, 0.2),
                0 2px 4px rgba(0, 0, 0, 0.1);
        }

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

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 70px;
            height: 70px;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.4);
            box-shadow: 
                0 8px 20px rgba(0, 0, 0, 0.2),
                0 4px 10px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.5),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            position: relative;
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }

        .step-number:hover {
            transform: translateY(-4px);
            box-shadow: 
                0 12px 25px rgba(0, 0, 0, 0.25),
                0 6px 15px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.6),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        }

        .process-step h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: white;
            text-shadow: 
                0 1px 2px rgba(0, 0, 0, 0.3),
                0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .process-step p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Services Section */
        .services {
            background: var(--light-gray);
        }

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

        .service-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(145deg, var(--primary-color), var(--accent-color));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            margin-bottom: 1rem;
            position: relative;
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 6px 15px rgba(0, 0, 0, 0.15),
                0 3px 8px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }

        .service-icon:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 8px 20px rgba(0, 0, 0, 0.2),
                0 4px 10px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.5),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        }

        .service-card:nth-child(1) .service-icon::after {
            content: "⚬";
            font-size: 2rem;
            color: white;
            font-weight: 300;
        }

        .service-card:nth-child(2) .service-icon::after {
            content: "◊";
            font-size: 2rem;
            color: white;
            font-weight: 300;
        }

        .service-card:nth-child(3) .service-icon::after {
            content: "+";
            font-size: 2.5rem;
            color: white;
            font-weight: 300;
        }

        .service-card:nth-child(4) .service-icon::after {
            content: "≈";
            font-size: 2rem;
            color: white;
            font-weight: 300;
        }

        .service-card:nth-child(5) .service-icon::after {
            content: "↑";
            font-size: 2.5rem;
            color: white;
            font-weight: 300;
        }

        .service-card:nth-child(6) .service-icon::after {
            content: "◦";
            font-size: 2rem;
            color: white;
            font-weight: 300;
        }

        .service-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Testimonials Section */
        .testimonials-slider {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 4rem;
            color: var(--primary-color);
            opacity: 0.3;
        }

        .testimonial-text {
            margin-bottom: 1.5rem;
            font-style: italic;
            color: var(--text-color);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(145deg, #64b5f6 0%, #42a5f5 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 600;
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 6px 15px rgba(0, 0, 0, 0.15),
                0 3px 8px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            position: relative;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }

        .author-avatar:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 8px 20px rgba(0, 0, 0, 0.2),
                0 4px 10px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.5),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        }

        .author-info h4 {
            font-weight: 600;
            color: var(--dark-color);
        }

        .author-info p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Local Business Section */
        .local-business {
            background: var(--light-gray);
        }

        .local-content {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .local-text h3 {
            font-size: 1.5rem;
            color: var(--dark-color);
            margin-bottom: 2rem;
            font-weight: 600;
        }

        .local-benefits {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }

        .local-benefits li {
            padding: 0.75rem 0;
            font-size: 1.1rem;
            line-height: 1.6;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-color);
        }

        .local-benefits li:last-child {
            border-bottom: none;
        }

        .local-cta {
            background: var(--white);
            padding: 1.5rem;
            border-radius: 12px;
            border-left: 4px solid var(--primary-color);
            box-shadow: var(--shadow);
        }

        .local-cta p {
            margin-bottom: 0.5rem;
            color: var(--text-color);
        }

        .local-cta p:last-child {
            margin-bottom: 0;
        }

        .map-container {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 
                0 8px 20px rgba(0, 0, 0, 0.1),
                0 4px 10px rgba(0, 0, 0, 0.08);
            border: 2px solid var(--primary-color);
            background: var(--white);
        }

        .map-container iframe {
            width: 100%;
            height: 520px;
            border: none;
            display: block;
        }

        .map-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(37, 99, 235, 0.95), rgba(37, 99, 235, 0.8));
            color: white;
            padding: 1rem;
            text-align: center;
        }

        .map-overlay p {
            margin: 0;
            font-weight: 500;
            line-height: 1.4;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        /* Contact Section - NOWA */
        .blue-contact {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 3rem 0;
        }

        .blue-contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .blue-contact-card {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 1.5rem 1.5rem;
            text-align: center;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            color: white;
        }

        .blue-contact-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .blue-contact-icon {
            width: 50px;
            height: 50px;
            font-size: 1.5rem;
            margin: 0 auto 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            background: linear-gradient(145deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
            border-radius: 50%;
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.4);
            box-shadow: 
                0 6px 15px rgba(0, 0, 0, 0.15),
                0 3px 8px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.5),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
            position: relative;
            transform: translateY(-1px);
            transition: all 0.3s ease;
        }

        .blue-contact-icon:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 8px 20px rgba(0, 0, 0, 0.2),
                0 4px 10px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.6),
                inset 0 -1px 0 rgba(0, 0, 0, 0.1);
        }

        .blue-contact-card:nth-child(1) .blue-contact-icon::after {
            content: "⌂";
            font-size: 1.5rem;
            color: white;
            font-weight: 300;
        }

        .blue-contact-card:nth-child(2) .blue-contact-icon::after {
            content: "☎";
            font-size: 1.5rem;
            color: white;
            font-weight: 300;
        }

        .blue-contact-card:nth-child(3) .blue-contact-icon::after {
            content: "✉";
            font-size: 1.5rem;
            color: white;
            font-weight: 300;
        }

        .blue-contact-text {
            font-weight: 400;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
            line-height: 1.4;
            color: white;
        }

        .blue-contact-text a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            display: block;
        }

        .blue-contact-text a:hover {
            text-decoration: underline;
        }

        .blue-contact-text div {
            margin-bottom: 0.2rem;
            font-weight: 300;
        }

        /* Modal Styles */
        details {
            position: relative;
        }

        summary {
            list-style: none;
            cursor: pointer;
        }

        summary.cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            color: var(--primary-color);
            text-decoration: none;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 
                0 8px 20px rgba(0, 0, 0, 0.15),
                0 4px 10px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8),
                inset 0 -1px 0 rgba(0, 0, 0, 0.05);
            transform: translateY(-2px);
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            opacity: 0;
            animation: popIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1.3s forwards, 
                       pulse 3s ease-in-out 2.5s infinite;
        }

        summary.cta-button:hover {
            transform: translateY(-4px);
            background: linear-gradient(145deg, #ffffff, #f8f8f8);
            box-shadow: 
                0 15px 35px rgba(0, 0, 0, 0.25),
                0 8px 20px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                inset 0 -1px 0 rgba(0, 0, 0, 0.05);
        }

        summary::-webkit-details-marker {
            display: none;
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            z-index: 2000;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .modal-content {
            background-color: var(--white);
            border-radius: 16px;
            max-width: 600px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            animation: modalSlideIn 0.3s ease;
        }

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

        .modal-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: var(--white);
            padding: 2rem;
            border-radius: 16px 16px 0 0;
        }

        .modal-header h2 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .modal-header p {
            margin: 0.5rem 0 0 0;
            opacity: 0.9;
            font-size: 0.95rem;
        }

        .modal-body {
            padding: 2rem;
        }

        .modal-form {
            display: grid;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .modal-form .form-group {
            margin-bottom: 0;
        }

        .modal-form label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--dark-color);
            font-size: 0.9rem;
        }

        .modal-form input,
        .modal-form textarea,
        .select-wrapper {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .select-wrapper {
            position: relative;
            padding: 0;
            border: none;
        }

        .select-wrapper::after {
            content: "▼";
            position: absolute;
            right: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            pointer-events: none;
            font-size: 0.8rem;
        }

        .modal-form select {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            border: none;
            padding: 1rem 0.75rem;
            font-weight: 500;
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            cursor: pointer;
            width: 100%;
            border-radius: 8px;
        }

        .modal-form select option {
            background: white;
            color: var(--text-color);
            padding: 0.5rem;
        }

        .modal-form input:focus,
        .modal-form textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .modal-form select:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
        }

        .modal-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        .modal-form input[type="date"] {
            cursor: pointer;
            position: relative;
        }

        .modal-form input[type="date"]::-webkit-calendar-picker-indicator {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: auto;
            height: auto;
            background: transparent;
            cursor: pointer;
            opacity: 0;
        }

        .modal-form input[type="date"]::-webkit-inner-spin-button,
        .modal-form input[type="date"]::-webkit-clear-button {
            display: none;
            -webkit-appearance: none;
        }

        .modal-submit {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .modal-submit:hover {
            background: var(--secondary-color);
            transform: translateY(-1px);
        }

        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            text-align: left;
            font-size: 0.9rem;
            line-height: 1.5;
            cursor: pointer;
        }

        .checkbox-label input[type="checkbox"] {
            width: auto;
            min-width: 18px;
            height: 18px;
            margin: 0;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .checkbox-text {
            flex: 1;
            color: var(--text-color);
        }

        .required {
            color: var(--primary-color);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 25%, #1f2937 75%, #111827 100%);
            color: var(--white);
            padding: 3rem 0 1rem;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(29, 78, 216, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            font-weight: 600;
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            font-size: 1.2rem;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            line-height: 1.6;
            font-weight: 400;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        .footer-section a:hover {
            color: #60a5fa;
            text-shadow: 0 0 8px rgba(96, 165, 250, 0.4);
            transition: all 0.3s ease;
        }

        .footer-bottom {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 400;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
            position: relative;
            z-index: 1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 1rem 0;
                box-shadow: var(--shadow);
            }

            .nav.active {
                display: flex;
            }

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

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

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

            .blue-contact-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                max-width: none;
            }

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

            .process-steps {
                grid-template-columns: 1fr;
            }

            .testimonials-slider {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .modal-content {
                margin: 5% 10px;
                max-width: none;
                width: calc(100% - 20px);
            }

            .modal-header,
            .modal-body {
                padding: 1.5rem;
            }

            .checkbox-label {
                text-align: left;
                font-size: 0.85rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .local-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .local-benefits li {
                font-size: 1rem;
            }

            .highlighted-message {
                padding: 1.5rem 2rem;
                margin-bottom: 2rem;
            }

            .highlighted-message p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .hero {
                padding: 6rem 0 4rem;
            }

            .section {
                padding: 3rem 0;
            }

            .hero h1 {
                font-size: 1.75rem;
            }

            .cta-button,
            summary.cta-button {
                padding: 0.75rem 1.5rem;
            }
        }

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

        .animate-on-scroll {
            opacity: 0;
            animation: fadeInUp 0.6s ease forwards;
        }