        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #1f2937;
            scroll-behavior: smooth;
        }

        /* Enhanced Hero Background */
        .hero-bg {
            background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 25%, #3b82f6 50%, #60a5fa 75%, #93c5fd 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(29, 78, 216, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(147, 197, 253, 0.2) 0%, transparent 70%);
            animation: gradientShift 8s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

        .contact-form {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
        }

        /* Enhanced Service Cards */
        .service-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border-left: 4px solid #2563eb;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }

        .floating-icon {
            animation: float 3s ease-in-out infinite;
            display: inline-block;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-8px) rotate(2deg); }
        }

        /* Enhanced Button Styles */
        .btn-primary {
            background: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
            box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
            transform: translateY(-2px);
        }

        /* Navigation */
        nav {
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .logo img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }

        .logo-text h1 {
            font-size: 1.8rem;
            font-weight: 800;
            color: #1e3a8a;
        }

        .logo-text p {
            font-size: 0.75rem;
            color: #6b7280;
            font-weight: 600;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #374151;
            font-weight: 600;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .nav-links a:hover {
            color: #2563eb;
        }

        .search-box {
            position: relative;
        }

        .search-box input {
            padding: 10px 15px 10px 40px;
            border: 2px solid #e5e7eb;
            border-radius: 25px;
            width: 200px;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .search-box input:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .search-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
        }

        .mobile-menu {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu span {
            width: 25px;
            height: 3px;
            background: #374151;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Container and Layout */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 80px 0;
        }

        .text-center {
            text-align: center;
        }

        .grid {
            display: grid;
            gap: 30px;
        }

        .grid-2 {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .grid-3 {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .grid-4 {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        /* Hero Section */
        .hero {
            padding: 120px 0 80px;
            color: white;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-text .subtitle {
            font-size: 1.5rem;
            color: #bfdbfe;
            margin-bottom: 30px;
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #dbeafe;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .hero-features {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .feature-badge {
            background: rgba(59, 130, 246, 0.2);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .hero-image {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-image .placeholder {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        /* Stats Section */
        .stats {
            background: white;
            padding: 60px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: #2563eb;
            display: block;
        }

        .stat-label {
            color: #6b7280;
            font-weight: 600;
            margin-top: 10px;
        }

        /* Services Section */
        .services {
            background: #f9fafb;
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-badge {
            background: #dbeafe;
            color: #1e40af;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 700;
            display: inline-block;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #111827;
            margin-bottom: 20px;
        }

        .section-description {
            font-size: 1.2rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #2563eb;
        }

        .service-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #111827;
        }

        .service-description {
            color: #6b7280;
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
            margin-bottom: 20px;
        }

        .service-features li {
            color: #6b7280;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .service-features li::before {
            content: "• ";
            color: #2563eb;
            font-weight: bold;
        }

        .service-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .service-price {
            background: #dbeafe;
            color: #1e40af;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .service-link {
            color: #2563eb;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
        }

        .service-link:hover {
            color: #1d4ed8;
        }

        /* Testimonials */
        .testimonials {
            background: white;
            padding: 80px 0;
        }

        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 4rem;
            color: #2563eb;
            opacity: 0.2;
            font-family: serif;
        }

        .testimonial-rating {
            color: #fbbf24;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .testimonial-text {
            color: #6b7280;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #dbeafe;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: #2563eb;
        }

        .author-info h4 {
            font-weight: 700;
            color: #111827;
        }

        .author-info p {
            color: #6b7280;
            font-size: 0.9rem;
        }

        /* About Section */
        .about {
            background: #f9fafb;
            padding: 80px 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-features {
            margin-top: 40px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: #dbeafe;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #2563eb;
            flex-shrink: 0;
        }

        .feature-content h4 {
            font-weight: 700;
            color: #111827;
            margin-bottom: 8px;
        }

        .feature-content p {
            color: #6b7280;
        }

        .coverage-map {
            background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .map-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .map-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #111827;
        }

        .view-toggle {
            display: flex;
            gap: 10px;
        }

        .toggle-btn {
            padding: 8px 16px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .toggle-btn.active {
            background: #2563eb;
            color: white;
        }

        .toggle-btn:not(.active) {
            background: #e5e7eb;
            color: #6b7280;
        }

        .districts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 30px;
        }

        .district-card {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border-left: 4px solid #2563eb;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .district-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .district-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .district-emoji {
            font-size: 1.5rem;
        }

        .district-info h4 {
            font-weight: 700;
            color: #111827;
            font-size: 0.9rem;
        }

        .district-type {
            color: #2563eb;
            font-size: 0.75rem;
        }

        .district-stats {
            color: #6b7280;
            font-size: 0.75rem;
        }

        .coverage-summary {
            background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
        }

        .coverage-summary h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .coverage-summary p {
            color: #bfdbfe;
        }

        /* Gallery */
        .gallery {
            background: white;
            padding: 80px 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .gallery-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .gallery-image {
            height: 250px;
            background: linear-gradient(45deg, #e2e8f0 25%, transparent 25%), 
                        linear-gradient(-45deg, #e2e8f0 25%, transparent 25%), 
                        linear-gradient(45deg, transparent 75%, #e2e8f0 75%), 
                        linear-gradient(-45deg, transparent 75%, #e2e8f0 75%);
            background-size: 20px 20px;
            background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
            border: 2px dashed #94a3b8;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64748b;
            font-weight: 600;
            text-align: center;
            position: relative;
        }

        .gallery-content {
            padding: 25px;
        }

        .gallery-title {
            font-weight: 700;
            color: #111827;
            margin-bottom: 10px;
        }

        .gallery-description {
            color: #6b7280;
            font-size: 0.9rem;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-form-container {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .form-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-label {
            display: block;
            font-weight: 600;
            color: #374151;
            margin-bottom: 8px;
        }

        .form-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .form-input:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
            transform: translateY(-2px);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 18px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 12px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .form-note {
            text-align: center;
            color: #6b7280;
            font-size: 0.9rem;
            font-weight: 600;
            margin-top: 15px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        .info-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 25px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 25px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .info-icon.blue { background: #dbeafe; }
        .info-icon.green { background: #dcfce7; }
        .info-icon.purple { background: #f3e8ff; }
        .info-icon.yellow { background: #fef3c7; }

        .info-content h4 {
            font-weight: 700;
            color: #111827;
            margin-bottom: 5px;
        }

        .info-content p {
            color: #6b7280;
            white-space: pre-line;
        }

        .emergency-card {
            background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
            color: white;
            text-align: center;
        }

        .emergency-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .emergency-subtitle {
            margin-bottom: 20px;
            font-weight: 600;
        }

        .emergency-phone {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 15px;
            transition: color 0.3s ease;
        }

        .emergency-phone:hover {
            color: #bfdbfe;
        }

        .emergency-note {
            color: #bfdbfe;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .emergency-badges {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .emergency-badge {
            background: rgba(59, 130, 246, 0.5);
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 700;
        }

        /* Footer */
        .footer {
            background: #111827;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .footer-brand img {
            width: 40px;
            height: 40px;
            border-radius: 8px;
        }

        .footer-brand-text h3 {
            font-size: 1.5rem;
            font-weight: 800;
        }

        .footer-brand-text p {
            color: #9ca3af;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .footer-description {
            color: #d1d5db;
            margin-bottom: 25px;
            max-width: 400px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
        }

        .social-link.facebook { background: #1877f2; }
        .social-link.instagram { background: #e4405f; }
        .social-link.linkedin { background: #0077b5; }
        .social-link.email { background: #ea4335; }
        .social-link.whatsapp { background: #25d366; }

        .social-link:hover {
            transform: scale(1.1);
        }

        .footer-section h4 {
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            font-weight: 600;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-services {
            list-style: none;
        }

        .footer-services li {
            color: #d1d5db;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .footer-bottom {
            border-top: 1px solid #374151;
            padding-top: 30px;
            text-align: center;
            color: #d1d5db;
            font-weight: 600;
        }

        /* Sticky Buttons */
        .sticky-contact {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 16px 20px;
            border-radius: 50px;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
            animation: pulse 2s infinite;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sticky-contact:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .whatsapp-btn {
            position: fixed;
            bottom: 90px;
            right: 20px;
            z-index: 1000;
            background: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            text-decoration: none;
            font-size: 24px;
            animation: bounce 2s infinite;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        /* Exit Intent Popup */
        .exit-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
        }

        .exit-popup.show {
            display: flex;
        }

        .popup-content {
            background: white;
            padding: 40px;
            border-radius: 20px;
            max-width: 500px;
            margin: 20px;
            text-align: center;
            position: relative;
            animation: popupSlide 0.3s ease-out;
        }

        @keyframes popupSlide {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .close-popup {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: #6b7280;
        }

        .close-popup:hover {
            color: #374151;
        }

        .popup-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .popup-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 15px;
        }

        .popup-description {
            color: #6b7280;
            margin-bottom: 30px;
        }

        .popup-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .popup-btn-primary {
            width: 100%;
            padding: 15px;
            font-weight: 700;
            border-radius: 12px;
            text-decoration: none;
            text-align: center;
        }

        .popup-btn-secondary {
            width: 100%;
            padding: 15px;
            border: 2px solid #2563eb;
            color: #2563eb;
            background: white;
            font-weight: 700;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .popup-btn-secondary:hover {
            background: #2563eb;
            color: white;
        }

        /* Loading Animation */
        .loading {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .loading.loaded {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu {
                display: flex;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-buttons {
                justify-content: center;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .contact-content {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .districts-grid {
                grid-template-columns: 1fr 1fr;
            }

            .emergency-badges {
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .sticky-contact {
                bottom: 10px;
                right: 10px;
                padding: 12px 16px;
                font-size: 12px;
            }

            .whatsapp-btn {
                bottom: 70px;
                right: 10px;
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }