/* CSS Document */

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

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

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

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

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

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

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

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

        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

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

        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --secondary: #10b981;
            --background: #0f172a;
            --surface: #1e293b;
            --text: #e2e8f0;
            --text-secondary: #94a3b8;
            --accent: #f472b6;
            --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--background);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            transition: all 0.3s ease;
        }

        /* Enhanced button styles */
        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
            z-index: -1;
        }

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

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        /* Glowing effect for primary buttons */
        .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 5px 15px rgba(102,126,234,0.3);
        }

        .btn-primary:hover {
            box-shadow: 0 8px 25px rgba(102,126,234,0.4), 0 0 20px rgba(102,126,234,0.3);
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1rem 2rem;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 0;
            white-space: nowrap;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

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

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: white;
            transform: translateY(-1px);
        }

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

        .cta-button {
            background: var(--primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: white;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

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

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 60px;
            left: 0;
            right: 0;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-top: 1px solid rgba(99, 102, 241, 0.2);
            animation: slideDown 0.3s ease;
        }

        .mobile-nav.active {
            display: block;
        }

        .mobile-nav a {
            display: block;
            color: white;
            text-decoration: none;
            padding: 1rem 0;
            font-size: 1.1rem;
            border-bottom: 1px solid rgba(99, 102, 241, 0.1);
            transition: all 0.3s ease;
        }

        .mobile-nav a:hover {
            color: var(--primary);
            transform: translateX(10px);
        }

        .mobile-nav .cta-button {
            display: inline-block;
            margin-top: 1rem;
            width: 100%;
            text-align: center;
        }

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

        /* Hero Section - Modern 2025 Design */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 120px 40px 80px;
            margin-top: 0;
        }

        .hero-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            min-height: 600px;
        }

        .hero-text-section {
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: left;
        }

        .hero-image-section {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-image-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 600px;
            border-radius: 30px;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
        }

        .hero-image-container:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4);
        }

        .hero-handyman-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 28px;
            transition: all 0.4s ease;
        }

        .hero-image-container:hover .hero-handyman-image {
            transform: scale(1.05);
        }

        .hero-image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(99, 102, 241, 0.2) 0%, 
                rgba(168, 85, 247, 0.1) 50%,
                transparent 100%);
            border-radius: 28px;
            display: flex;
            align-items: flex-start;
            justify-content: flex-end;
            padding: 30px;
        }

        .hero-overlay-badge {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 12px 20px;
            border-radius: 25px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            color: white;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }

        .hero-overlay-badge i {
            color: #fbbf24;
        }

        .hero-image-decorations {
            position: absolute;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .hero-decoration-element {
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            animation: floatAnimation 4s ease-in-out infinite;
        }

        .hero-decoration-element.element-1 {
            top: 20%;
            left: -30px;
            animation-delay: 0s;
        }

        .hero-decoration-element.element-2 {
            bottom: 30%;
            right: -30px;
            animation-delay: 2s;
        }

        .hero-decoration-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-decoration-circle.circle-1 {
            width: 120px;
            height: 120px;
            top: 10%;
            right: -60px;
            animation: floatAnimation 6s ease-in-out infinite;
        }

        .hero-decoration-circle.circle-2 {
            width: 80px;
            height: 80px;
            bottom: 20%;
            left: -40px;
            animation: floatAnimation 5s ease-in-out infinite reverse;
        }

        .hero-decoration-shape {
            position: absolute;
            top: 50%;
            left: -50px;
            width: 100px;
            height: 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            border-radius: 10px;
            transform: rotate(-45deg);
            animation: floatAnimation 7s ease-in-out infinite;
        }

        .hero-experience-badge {
            position: absolute;
            bottom: 40px;
            left: 40px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            border: 2px solid rgba(255, 255, 255, 0.3);
            padding: 20px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .hero-experience-badge:hover {
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.2);
        }

        .experience-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .experience-number {
            font-size: 2rem;
            font-weight: 800;
            color: #fbbf24;
            margin-bottom: 5px;
            line-height: 1;
        }

        .experience-text {
            font-size: 0.9rem;
            font-weight: 600;
            color: white;
            opacity: 0.9;
            line-height: 1.2;
        }

        .hero-gradient-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(102, 126, 234, 0.9) 0%, 
                rgba(118, 75, 162, 0.9) 25%,
                rgba(255, 94, 77, 0.8) 50%,
                rgba(255, 154, 0, 0.8) 75%,
                rgba(102, 126, 234, 0.9) 100%);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            z-index: -2;
        }

        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 100px 100px, 150px 150px, 80px 80px;
            animation: particleFloat 20s linear infinite;
            z-index: -1;
        }

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

        @keyframes particleFloat {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-100px) rotate(360deg); }
        }

        .hero-content {
            max-width: 900px;
            padding: 2rem;
            z-index: 2;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .hero-badge i {
            color: #ffd700;
        }

        .hero-title {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .hero-title-main {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.1;
            background: linear-gradient(45deg, #fff, #f0f0f0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-title-accent {
            font-size: 3.2rem;
            font-weight: 800;
            line-height: 1;
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .hero-title-location {
            font-size: 1.6rem;
            font-weight: 600;
            opacity: 1;
            color: #ffffff;
            background: linear-gradient(45deg, #ffd700, #ffed4e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-description {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .hero-stat {
            text-align: center;
            background: rgba(255, 255, 255, 0.15);
            padding: 1rem 1.5rem;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            min-width: 120px;
        }

        .hero-stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #ffd700;
            margin-bottom: 0.25rem;
        }

        .hero-stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
            font-weight: 500;
        }

        .hero-cta-group {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .cta-primary {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
        }

        .cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
            background: linear-gradient(45deg, #ee5a24, #ff6b6b);
        }

        .cta-secondary {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .cta-secondary:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .hero-trust-indicators {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            opacity: 0.9;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            backdrop-filter: blur(5px);
        }

        .trust-item i {
            color: #4ade80;
            font-size: 1rem;
        }

        /* Hero Responsive Design */
        @media (max-width: 1200px) {
            .hero-content-grid {
                gap: 60px;
            }
            
            .hero-image-container {
                max-width: 450px;
                height: 550px;
            }
        }
        
        @media (max-width: 992px) {
            .hero {
                padding: 100px 30px 60px;
            }
            
            .hero-content-grid {
                grid-template-columns: 1fr;
                gap: 60px;
                text-align: center;
            }
            
            .hero-text-section {
                text-align: center;
                order: 2;
            }
            
            .hero-image-section {
                order: 1;
            }
            
            .hero-image-container {
                max-width: 400px;
                height: 500px;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 80px 20px 40px;
                min-height: auto;
            }
            
            .hero-content-grid {
                gap: 40px;
            }
            
            .hero-title-main {
                font-size: 2.2rem;
            }
            
            .hero-title-accent {
                font-size: 2.6rem;
            }
            
            .hero-title-location {
                font-size: 1.3rem;
            }
            
            .hero-description {
                font-size: 1.1rem;
            }
            
            .hero-stats {
                gap: 1rem;
            }
            
            .hero-stat {
                padding: 0.75rem 1rem;
                min-width: 100px;
            }
            
            .hero-stat-number {
                font-size: 1.5rem;
            }
            
            .hero-cta-group {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-primary, .cta-secondary {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }
            
            .hero-trust-indicators {
                gap: 1rem;
            }
            
            .trust-item {
                font-size: 0.8rem;
                padding: 0.4rem 0.8rem;
            }
            
            .hero-image-container {
                max-width: 350px;
                height: 450px;
            }
            
            .hero-decoration-element {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            
            .hero-decoration-circle.circle-1 {
                width: 100px;
                height: 100px;
            }
            
            .hero-decoration-circle.circle-2 {
                width: 70px;
                height: 70px;
            }
            
            .hero-experience-badge {
                bottom: 20px;
                left: 20px;
                padding: 15px;
            }
            
            .experience-number {
                font-size: 1.6rem;
            }
            
            .experience-text {
                font-size: 0.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero {
                padding: 60px 15px 30px;
            }
            
            .hero-title-main {
                font-size: 1.8rem;
            }
            
            .hero-title-accent {
                font-size: 2.2rem;
            }
            
            .hero-title-location {
                font-size: 1.1rem;
            }
            
            .hero-stats {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-trust-indicators {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-image-container {
                max-width: 300px;
                height: 400px;
            }
            
            .hero-decoration-element.element-1,
            .hero-decoration-element.element-2 {
                display: none;
            }
            
            .hero-decoration-circle.circle-1,
            .hero-decoration-circle.circle-2 {
                display: none;
            }
            
            .hero-decoration-shape {
                display: none;
            }
        }

        h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(to right, #ffffff, #94a3b8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

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

        /* Services Overview Section */
        .services-overview {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

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

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

        .services-header h2 {
            font-size: 3rem;
            color: #2c3e50;
            margin-bottom: 25px;
            font-weight: 700;
            line-height: 1.2;
        }

        .services-subtitle {
            font-size: 1.3rem;
            color: #6c757d;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* Main Services Grid */
        .main-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .main-service-card {
            background: white;
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 2px solid transparent;
            overflow: hidden;
        }

        .main-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(102,126,234,0.1), transparent);
            transition: left 0.6s;
            z-index: 0;
        }

        .main-service-card:hover::before {
            left: 100%;
        }

        .main-service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15), 0 0 30px rgba(102,126,234,0.2);
            border-color: #667eea;
        }

        .main-service-card > * {
            position: relative;
            z-index: 1;
        }

        .main-service-card.featured {
            border: 2px solid #667eea;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            transform: scale(1.05);
        }

        .main-service-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .featured-badge {
            position: absolute;
            top: 15px;
            left: 50%;
            transform: translateX(-50%);
            background: #ff6b6b;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(255,107,107,0.3);
            z-index: 10;
        }

        .service-icon-wrapper {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }

        .main-service-card.featured .service-icon-wrapper {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
        }

        .service-icon-wrapper:hover {
            transform: rotate(5deg) scale(1.1);
            animation: pulse 2s infinite;
        }

        .service-icon-wrapper i {
            font-size: 2.5rem;
            color: white;
        }

        .main-service-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 700;
            color: #2c3e50;
        }

        .main-service-card.featured h3 {
            color: white;
        }

        .service-description {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 30px;
            color: #6c757d;
        }

        .main-service-card.featured .service-description {
            color: rgba(255,255,255,0.9);
        }

        .service-features {
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px 0;
        }

        .feature-item i {
            width: 25px;
            height: 25px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 0.8rem;
            color: white;
        }

        .main-service-card.featured .feature-item i {
            background: rgba(255,255,255,0.2);
        }

        .feature-item span {
            font-weight: 500;
            color: #495057;
        }

        .main-service-card.featured .feature-item span {
            color: white;
        }

        .service-pricing {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 25px;
            padding: 20px 0;
            border-top: 1px solid #e9ecef;
        }

        .main-service-card.featured .service-pricing {
            border-top-color: rgba(255,255,255,0.2);
        }

        .price-label {
            font-size: 0.9rem;
            color: #6c757d;
            font-weight: 500;
        }

        .main-service-card.featured .price-label {
            color: rgba(255,255,255,0.8);
        }

        .price-value {
            font-size: 2rem;
            font-weight: 700;
            color: #667eea;
        }

        .main-service-card.featured .price-value {
            color: white;
        }

        .service-cta {
            display: inline-block;
            padding: 15px 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(102,126,234,0.3);
        }

        .service-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102,126,234,0.4);
            text-decoration: none;
            color: white;
        }

        .service-cta.primary {
            background: white;
            color: #667eea;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .service-cta.primary:hover {
            color: #667eea;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        /* Additional Services */
        .additional-services {
            margin-bottom: 60px;
        }

        .additional-services-title {
            text-align: center;
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 50px;
            font-weight: 700;
        }

        .additional-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .additional-service-item {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: all 0.3s ease;
        }

        .additional-service-item:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }

        .additional-service-item {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
            display: flex;
            align-items: flex-start;
            gap: 20px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .additional-service-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(102,126,234,0.05), transparent);
            transition: left 0.5s;
        }

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

        .service-icon-small {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-icon-small i {
            font-size: 1.5rem;
            color: white;
        }

        .service-content h4 {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .service-content p {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .service-price {
            font-weight: 700;
            color: #667eea;
            font-size: 1.1rem;
        }

        /* Service Guarantee */
        .service-guarantee {
            background: white;
            padding: 60px 40px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .guarantee-content h3 {
            text-align: center;
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 40px;
            font-weight: 700;
        }

        .guarantee-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .guarantee-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .guarantee-item i {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: white;
            flex-shrink: 0;
        }

        .guarantee-item h4 {
            font-size: 1.2rem;
            color: #2c3e50;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .guarantee-item p {
            color: #6c757d;
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Pricing Section */
        .pricing {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .service-areas-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .service-area-list {
            list-style: none;
            padding: 0;
        }
        
        .service-area-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid rgba(99, 102, 241, 0.1);
            color: var(--text-secondary);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .pricing-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .pricing-calculator {
            background: var(--surface);
            border-radius: 1rem;
            padding: 2rem;
            margin-bottom: 3rem;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .slider-container {
            margin-bottom: 2rem;
        }

        .slider-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .slider {
            width: 100%;
            height: 6px;
            background: rgba(99, 102, 241, 0.2);
            border-radius: 3px;
            outline: none;
            -webkit-appearance: none;
            position: relative;
        }

        .slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 20px;
            height: 20px;
            background: var(--primary);
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
        }

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

        .pricing-card {
            background: rgba(30, 41, 59, 0.5);
            border: 2px solid transparent;
            padding: 2rem;
            border-radius: 1rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card.popular {
            border-color: var(--primary);
        }

        .pricing-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: 1rem;
            right: -2rem;
            background: var(--primary);
            color: white;
            padding: 0.25rem 3rem;
            transform: rotate(45deg);
            font-size: 0.75rem;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .plan-name {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .plan-price span {
            font-size: 1rem;
            color: var(--text-secondary);
        }

        /* Enhanced Modern Contact Section 2025 */
        .contact {
            position: relative;
            padding: 0;
            overflow: hidden;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
        }

        .contact-hero-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .contact-background {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .contact-bg-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.15;
        }

        .contact-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(15, 23, 42, 0.95) 0%, 
                rgba(30, 41, 59, 0.9) 50%,
                rgba(51, 65, 85, 0.85) 100%);
        }

        .contact-container {
            position: relative;
            z-index: 2;
            max-width: 100%;
            width: 100%;
            margin: 0;
            padding: 120px 40px;
        }

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

        .contact-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(99, 102, 241, 0.15);
            color: #6366f1;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(99, 102, 241, 0.3);
            transition: all 0.3s ease;
        }

        .contact-badge:hover {
            background: rgba(99, 102, 241, 0.2);
            transform: translateY(-2px);
        }

        .contact-badge i {
            font-size: 1.1rem;
        }

        .contact-header h2 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #fff 0%, #6366f1 50%, #fbbf24 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .contact-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .contact-content-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 80px;
            margin-bottom: 80px;
        }

        .quick-contact-section {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 40px;
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.6s;
        }

        .contact-card:hover::before {
            left: 100%;
        }

        .contact-card:hover {
            transform: translateY(-8px) scale(1.02);
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(99, 102, 241, 0.4);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }

        .contact-card.primary-card {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.1));
            border: 2px solid rgba(99, 102, 241, 0.3);
            position: relative;
        }

        .card-decoration {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #6366f1, #a855f7);
            border-radius: 50%;
            opacity: 0.7;
            filter: blur(20px);
        }

        .contact-icon-modern {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .contact-card:hover .contact-icon-modern {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
        }

        .contact-icon-modern i {
            font-size: 2rem;
            color: white;
        }

        .card-content h3 {
            font-size: 1.6rem;
            color: white;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .contact-number {
            font-size: 2.2rem;
            color: #fbbf24;
            text-decoration: none;
            font-weight: 800;
            display: block;
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .contact-number:hover {
            color: #f59e0b;
            transform: scale(1.05);
        }

        .card-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            margin-bottom: 20px;
        }

        .contact-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 25px;
        }

        .tag {
            background: rgba(34, 197, 94, 0.2);
            color: #22c55e;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        .card-action {
            margin-top: auto;
        }

        .contact-btn-modern {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            padding: 14px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
        }

        .contact-btn-modern:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5);
            background: linear-gradient(135deg, #5855f7, #7c3aed);
        }

        .hours-display {
            color: rgba(255, 255, 255, 0.9);
        }

        .hour-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .day {
            font-weight: 600;
            color: white;
        }

        .time {
            color: #fbbf24;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .availability-status {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 15px;
            padding: 10px 15px;
            background: rgba(34, 197, 94, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(34, 197, 94, 0.2);
        }

        .online {
            color: #22c55e;
            animation: pulse 2s infinite;
        }

        .availability-status span {
            color: #22c55e;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .location-text {
            font-size: 1.2rem;
            color: white;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .service-zones {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .zone {
            background: rgba(99, 102, 241, 0.15);
            color: rgba(255, 255, 255, 0.8);
            padding: 6px 12px;
            border-radius: 12px;
            font-size: 0.85rem;
            font-weight: 500;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .contact-features-section {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            padding: 50px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .features-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .features-header h3 {
            color: white;
            font-size: 2rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .features-header p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .feature-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateX(10px);
        }

        .feature-icon-wrapper {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon-wrapper i {
            color: white;
            font-size: 1.3rem;
        }

        .feature-text h4 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .feature-text p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
        }

        .contact-cta-wrapper {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            padding: 60px 50px;
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.15);
            text-align: center;
        }

        .cta-content-modern {
            margin-bottom: 50px;
        }

        .cta-text h3 {
            color: white;
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .cta-text p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .cta-btn-primary,
        .cta-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            min-width: 220px;
            justify-content: center;
        }

        .cta-btn-primary {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
        }

        .cta-btn-primary:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 16px 40px rgba(245, 158, 11, 0.6);
        }

        .cta-btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-4px);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .trust-indicators-modern {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .trust-item-modern {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.1);
            padding: 20px 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .trust-item-modern i {
            font-size: 2rem;
            color: #fbbf24;
        }

        .trust-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .trust-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            line-height: 1;
        }

        .trust-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
        }

        /* Contact Section Responsive Design */
        @media (max-width: 1200px) {
            .contact-container {
                padding: 100px 30px;
            }
            
            .contact-content-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            
            .contact-features-section {
                padding: 40px 30px;
            }
        }

        @media (max-width: 768px) {
            .contact-container {
                padding: 80px 20px;
            }
            
            .contact-header h2 {
                font-size: 2.5rem;
            }
            
            .contact-card {
                padding: 30px 25px;
            }
            
            .contact-number {
                font-size: 1.8rem;
            }
            
            .contact-cta-wrapper {
                padding: 40px 25px;
            }
            
            .cta-text h3 {
                font-size: 2.2rem;
            }
            
            .cta-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-btn-primary,
            .cta-btn-secondary {
                width: 100%;
                max-width: 300px;
            }
            
            .trust-indicators-modern {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }
            
            .trust-item-modern {
                padding: 15px 25px;
            }
        }

        @media (max-width: 480px) {
            .contact-header h2 {
                font-size: 2rem;
            }
            
            .contact-subtitle {
                font-size: 1.1rem;
            }
            
            .contact-tags {
                justify-content: center;
            }
            
            .features-grid {
                gap: 20px;
            }
            
            .feature-card {
                padding: 20px;
                flex-direction: column;
                text-align: center;
            }
        }


        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            padding: 0.5rem 0;
            color: var(--text-secondary);
        }

        .plan-features li::before {
            content: '✓ ';
            color: var(--secondary);
            font-weight: bold;
        }

        /* Animated Background */
        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .shape {
            position: absolute;
            background: rgba(99, 102, 241, 0.1);
            filter: blur(40px);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }

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

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

        .shape:nth-child(3) {
            width: 250px;
            height: 250px;
            bottom: 10%;
            left: 30%;
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(30px, -30px) scale(1.1); }
            66% { transform: translate(-20px, 20px) scale(0.9); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            .nav-links { display: none; }
            .pricing-cards { grid-template-columns: 1fr; }
        }

        /* About Section */
        .about {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            right: -20%;
            width: 40%;
            height: 100%;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

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

        /* Image Section Styling */
        .about-image-section {
            position: relative;
        }

        .about-image-container {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
        }

        .about-image-container:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
        }

        .about-handyman-image {
            width: 100%;
            height: 600px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .about-image-container:hover .about-handyman-image {
            transform: scale(1.1);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, 
                rgba(99, 102, 241, 0.1) 0%, 
                rgba(168, 85, 247, 0.05) 50%,
                transparent 100%);
            display: flex;
            align-items: flex-end;
            padding: 30px;
        }

        .overlay-badge {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 15px 25px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .overlay-badge i {
            color: #fbbf24;
            font-size: 1.2rem;
        }

        .overlay-badge span {
            color: #1f2937;
            font-weight: 700;
            font-size: 1rem;
        }

        /* Decorative Elements */
        .image-decorations {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .decoration-circle {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            opacity: 0.7;
            filter: blur(20px);
            animation: float 6s ease-in-out infinite;
        }

        .circle-1 {
            width: 80px;
            height: 80px;
            top: 10%;
            right: 10%;
            animation-delay: 0s;
        }

        .circle-2 {
            width: 60px;
            height: 60px;
            bottom: 20%;
            left: 5%;
            animation-delay: 2s;
        }

        .decoration-square {
            position: absolute;
            width: 40px;
            height: 40px;
            top: 30%;
            left: -10px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            border-radius: 8px;
            opacity: 0.8;
            filter: blur(15px);
            animation: float 8s ease-in-out infinite;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        /* Content Section Styling */
        .about-text-section {
            padding-left: 20px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(99, 102, 241, 0.1);
            color: #6366f1;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .about-content h2 {
            font-size: 3.2rem;
            color: #1f2937;
            margin-bottom: 1.5rem;
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(135deg, #1f2937 0%, #6366f1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-subtitle {
            font-size: 1.3rem;
            color: #6b7280;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .about-text {
            margin-bottom: 3rem;
        }

        .about-text p {
            color: #4b5563;
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        /* Enhanced Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 3rem;
        }

        .stat-card {
            background: white;
            padding: 30px 25px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            gap: 20px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(99, 102, 241, 0.1);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(99,102,241,0.05), transparent);
            transition: left 0.6s;
        }

        .stat-card:hover::before {
            left: 100%;
        }

        .stat-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-color: rgba(99, 102, 241, 0.3);
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .stat-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .stat-content {
            flex: 1;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: #1f2937;
            line-height: 1;
            margin-bottom: 5px;
        }

        .stat-label {
            color: #6b7280;
            font-size: 0.95rem;
            font-weight: 500;
        }

        /* About CTA Buttons */
        .about-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .about-btn-primary,
        .about-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-btn-primary {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
        }

        .about-btn-primary:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5);
        }

        .about-btn-secondary {
            background: rgba(99, 102, 241, 0.1);
            color: #6366f1;
            border: 2px solid rgba(99, 102, 241, 0.2);
        }

        .about-btn-secondary:hover {
            background: rgba(99, 102, 241, 0.15);
            border-color: rgba(99, 102, 241, 0.4);
            transform: translateY(-3px);
        }

        /* About Section Responsive Design */
        @media (max-width: 1200px) {
            .about-content-wrapper {
                gap: 60px;
            }
            
            .about-container {
                padding: 0 30px;
            }
        }

        @media (max-width: 968px) {
            .about-content-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .about-image-section {
                order: 2;
            }
            
            .about-text-section {
                order: 1;
                padding-left: 0;
                text-align: center;
            }
            
            .about-handyman-image {
                height: 500px;
            }
        }

        @media (max-width: 768px) {
            .about {
                padding: 80px 0;
            }
            
            .about-container {
                padding: 0 20px;
            }
            
            .about-content h2 {
                font-size: 2.5rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .stat-card {
                padding: 25px 20px;
            }
            
            .about-cta {
                justify-content: center;
                flex-direction: column;
                align-items: center;
            }
            
            .about-btn-primary,
            .about-btn-secondary {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .about-content h2 {
                font-size: 2rem;
            }
            
            .about-subtitle {
                font-size: 1.1rem;
            }
            
            .about-handyman-image {
                height: 400px;
            }
            
            .stat-card {
                flex-direction: column;
                text-align: center;
                padding: 25px 15px;
            }
            
            .stat-icon {
                margin-bottom: 15px;
            }
        }

        /* Contact Section */
        .contact {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .contact-info-centered {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin: 3rem 0;
        }
        
        .contact-info-card {
            text-align: center;
            padding: 2rem;
            background: var(--surface);
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 250px;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }
        
        .contact-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .contact-text {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        @media (max-width: 768px) {
            .contact-info-centered {
                flex-direction: column;
                align-items: center;
                gap: 1.5rem;
            }
        }

        .contact-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .contact-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .contact-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }

        /* Contact Form Styling */
        .contact-form-wrapper {
            background: var(--surface);
            padding: 2.5rem;
            border-radius: 1rem;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

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

        .form-header h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .form-header p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

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

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

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

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem;
            background: rgba(15, 23, 42, 0.5);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 0.5rem;
            color: var(--text);
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(15, 23, 42, 0.8);
        }

        .form-group textarea {
            resize: vertical;
        }

        .submit-button {
            width: 100%;
            padding: 1rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 0.5rem;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 0.5rem;
        }

        .submit-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
        }

        /* Contact Info Styling */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .quick-contact {
            background: var(--surface);
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .quick-contact h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .contact-methods {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: rgba(15, 23, 42, 0.5);
            border-radius: 0.75rem;
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .contact-method:hover {
            background: rgba(99, 102, 241, 0.1);
            border-color: var(--primary);
            transform: translateX(5px) scale(1.02);
            box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
        }

        .method-icon {
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(99, 102, 241, 0.1);
            border-radius: 0.5rem;
        }

        .method-details {
            display: flex;
            flex-direction: column;
        }

        .method-details strong {
            color: var(--text);
            font-size: 0.95rem;
        }

        .method-details span {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        .office-locations {
            background: var(--surface);
            padding: 2rem;
            border-radius: 1rem;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .office-locations h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

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

        .location {
            padding: 1rem;
            background: rgba(15, 23, 42, 0.5);
            border-radius: 0.75rem;
            border-left: 3px solid var(--primary);
            transition: all 0.3s ease;
        }

        .location:hover {
            background: rgba(15, 23, 42, 0.7);
            transform: translateX(5px) scale(1.02);
            box-shadow: 0 5px 15px rgba(99, 102, 241, 0.1);
        }

        .location strong {
            color: var(--text);
            display: block;
            margin-bottom: 0.5rem;
        }

        .location p {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.5;
        }

        /* FAQ Section - Enhanced Modern Design */
        .faq {
            padding: 120px 40px;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            position: relative;
            overflow: hidden;
        }

        .faq::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 30%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .faq-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .faq h2 {
            text-align: center;
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #fff 0%, #6366f1 50%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }
        
        .faq-subtitle {
            text-align: center;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.3rem;
            margin-bottom: 4rem;
            line-height: 1.6;
        }
        
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .faq-item {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .faq-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            border-color: rgba(99, 102, 241, 0.3);
            background: rgba(255, 255, 255, 0.12);
        }
        
        .faq-question {
            padding: 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .faq-question::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
            transition: left 0.6s;
        }

        .faq-question:hover::before {
            left: 100%;
        }
        
        .faq-question h3 {
            margin: 0;
            font-size: 1.3rem;
            font-weight: 600;
            color: white;
            line-height: 1.4;
            position: relative;
            z-index: 1;
        }
        
        .faq-question::after {
            content: '+';
            font-size: 2rem;
            font-weight: 300;
            color: #6366f1;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            width: 40px;
            height: 40px;
            background: rgba(99, 102, 241, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(99, 102, 241, 0.2);
            position: relative;
            z-index: 1;
        }
        
        .faq-item.active .faq-question::after {
            content: '−';
            transform: rotate(180deg);
            background: rgba(99, 102, 241, 0.2);
            border-color: rgba(99, 102, 241, 0.4);
            color: #8b5cf6;
        }
        
        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(0, 0, 0, 0.1);
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .faq-answer p {
            margin: 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        /* Footer - Enhanced Modern Design */
        .footer {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            border-top: 1px solid rgba(99, 102, 241, 0.2);
            padding: 80px 40px 40px;
            margin-top: 0;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
            pointer-events: none;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .footer-content {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 3rem;
            margin-bottom: 4rem;
        }
        
        .footer-info {
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            padding: 40px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            max-width: 600px;
        }

        .footer-info:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(99, 102, 241, 0.2);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        }
        
        .footer-info h3 {
            margin-bottom: 2rem;
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #fff 0%, #6366f1 50%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.3;
        }
        
        .footer-info p {
            margin: 1rem 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 12px 0;
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .footer-info p:hover {
            background: rgba(255, 255, 255, 0.05);
            color: rgba(255, 255, 255, 0.95);
        }
        
        .footer-info i {
            font-size: 1.2rem;
            color: #6366f1;
            background: rgba(99, 102, 241, 0.1);
            padding: 8px;
            border-radius: 50%;
            min-width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-info a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .footer-info a:hover {
            color: #6366f1;
            text-decoration: underline;
        }

        .footer-bottom {
            display: flex;
            justify-content: center;
            align-items: center;
            padding-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .copyright {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 20px 40px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .copyright:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(99, 102, 241, 0.2);
        }

        .copyright p {
            margin: 0;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            font-weight: 500;
        }

        /* Process Section - Enhanced Modern Design */
        .process-section {
            padding: 120px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }

        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
                        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.03) 0%, transparent 50%),
                        radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.02) 0%, transparent 50%);
            pointer-events: none;
        }

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

        .section-header::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 2px;
        }

        .section-header h2 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #1f2937 0%, #6366f1 50%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .section-header p {
            font-size: 1.3rem;
            color: #6b7280;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .process-steps {
            margin-top: 80px;
            position: relative;
        }

        .process-step {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            margin-bottom: 40px;
            border: 2px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            overflow: hidden;
        }

        .process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
            transition: left 0.7s;
        }

        .process-step:hover::before {
            left: 100%;
        }

        .process-step:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 12px 24px rgba(99, 102, 241, 0.1);
            border-color: rgba(99, 102, 241, 0.2);
        }

        .step-number {
            display: none;
        }

        .step-icon {
            margin: 40px 0 30px;
            position: relative;
        }

        .step-icon i {
            font-size: 3.5rem;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.4s ease;
            filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.2));
        }

        .process-step:hover .step-icon i {
            transform: scale(1.15) rotate(5deg);
            filter: drop-shadow(0 8px 16px rgba(99, 102, 241, 0.3));
        }

        .process-step h4 {
            color: #1f2937;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .process-step p {
            color: #6b7280;
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .step-features {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .feature-tag {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
            transition: all 0.3s ease;
        }

        .feature-tag:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
        }

/* Timeline */
.process-timeline {
    margin-top: 80px;
}

.timeline-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.timeline-header {
    text-align: center;
    margin-bottom: 40px;
}

.timeline-header h3 {
    color: #2d3748;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-header p {
    color: #4a5568;
    font-size: 18px;
}

.timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    z-index: 1;
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.timeline-content h5 {
    color: #2d3748;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-content p {
    color: #4a5568;
    font-size: 14px;
}

/* Services Responsive Design */
        @media (max-width: 1200px) {
            .main-services-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 30px;
            }
            
            .additional-services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .services-overview {
                padding: 60px 0;
            }
            
            .services-header {
                margin-bottom: 50px;
            }
            
            .services-header h2 {
                font-size: 2.2rem;
            }
            
            .services-subtitle {
                font-size: 1.1rem;
            }
            
            .main-services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
                margin-bottom: 50px;
            }
            
            .main-service-card {
                padding: 30px 25px;
            }
            
            .main-service-card.featured {
                transform: none;
            }
            
            .main-service-card.featured:hover {
                transform: translateY(-5px);
            }
            
            .service-icon-wrapper {
                width: 80px;
                height: 80px;
            }
            
            .service-icon-wrapper i {
                font-size: 2rem;
            }
            
            .main-service-card h3 {
                font-size: 1.5rem;
            }
            
            .additional-services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .additional-service-item {
                padding: 25px;
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .service-guarantee {
                padding: 40px 25px;
            }
            
            .guarantee-items {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .guarantee-item {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .services-header h2 {
                font-size: 1.8rem;
                line-height: 1.3;
            }
            
            .services-subtitle {
                font-size: 1rem;
            }
            
            .main-service-card {
                padding: 25px 20px;
            }
            
            .service-icon-wrapper {
                width: 70px;
                height: 70px;
            }
            
            .service-icon-wrapper i {
                font-size: 1.8rem;
            }
            
            .main-service-card h3 {
                font-size: 1.3rem;
            }
            
            .service-description {
                font-size: 1rem;
            }
            
            .price-value {
                font-size: 1.5rem;
            }
            
            .service-cta {
                padding: 12px 25px;
                font-size: 0.9rem;
            }
            
            .additional-services-title {
                font-size: 1.8rem;
            }
            
            .additional-service-item {
                padding: 20px;
            }
            
            .service-content h4 {
                font-size: 1.1rem;
            }
            
            .service-guarantee {
                padding: 30px 20px;
            }
            
            .guarantee-content h3 {
                font-size: 1.8rem;
            }
        }

        /* Responsive Updates */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            .nav-links { display: none; }
            .mobile-menu-toggle { display: flex; }
            .pricing-cards { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .contact-content { grid-template-columns: 1fr; gap: 2rem; }
            .form-row { grid-template-columns: 1fr; }
            .footer-content { grid-template-columns: 1fr; gap: 2rem; }
            .footer-links { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 1rem; }
            
            /* Features Mobile */
            .feature-hero { 
                grid-template-columns: 1fr; 
                padding: 2rem;
                text-align: center;
            }
            .feature-hero-visual { display: none; }
            .features-two-col { grid-template-columns: 1fr; }
            .features-four-col { 
                grid-template-columns: 1fr; 
            }
            .feature-stats { justify-content: center; }
        }

/* Emergency Services Section */
.emergency-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.emergency-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="emergency-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ff6b6b" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23emergency-pattern)"/></svg>') repeat;
    pointer-events: none;
}

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

.emergency-header {
    text-align: center;
    margin-bottom: 60px;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(255, 107, 107, 0.3);
    animation: pulse 2s infinite;
}

.emergency-badge i {
    font-size: 16px;
}

.emergency-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.emergency-header p {
    font-size: 1.2rem;
    color: #cbd5e0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.emergency-features {
    margin-bottom: 60px;
}

.emergency-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.emergency-feature:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.emergency-feature h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.emergency-feature p {
    color: #cbd5e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.time-badge {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.1rem;
}

.time-label {
    color: #a0aec0;
    font-size: 0.9rem;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: #ff6b6b;
    min-width: 40px;
}

.contact-details h5 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.emergency-phone,
.emergency-email {
    color: #ff6b6b;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-phone:hover,
.emergency-email:hover {
    color: #ee5a52;
    text-decoration: underline;
}

.availability {
    color: #48bb78;
    font-size: 0.9rem;
    font-weight: 500;
}

.emergency-cta {
    text-align: center;
}

.btn-emergency {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    animation: pulse 2s infinite;
}

.btn-emergency:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    color: white;
    text-decoration: none;
}

.btn-emergency i {
    font-size: 1.1rem;
}

.emergency-note {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-top: 15px;
    font-style: italic;
}

/* Process Responsive Design */
@media (max-width: 768px) {
    .process-section {
        padding: 60px 0;
    }
    
    .process-step {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .step-number {
        display: none;
    }
    
    .step-icon i {
        font-size: 36px;
    }
    
    .process-step h4 {
        font-size: 20px;
    }
    
    .process-step p {
        font-size: 14px;
    }
    
    .timeline-container {
        padding: 30px 20px;
    }
    
    .timeline-header h3 {
        font-size: 24px;
    }
    
    .timeline-header p {
        font-size: 16px;
    }
    
    .timeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .timeline::before {
        width: 2px;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        flex: none;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 40px 0;
    }
    
    .process-step {
        padding: 25px 15px;
    }
    
    .step-icon i {
        font-size: 32px;
    }
    
    .process-step h4 {
        font-size: 18px;
    }
    
    .feature-tag {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .timeline-container {
        padding: 25px 15px;
    }
    
    .timeline-header h3 {
        font-size: 20px;
    }
    
    .timeline-content h5 {
        font-size: 14px;
    }
    
    .timeline-content p {
         font-size: 12px;
     }
 }

/* CTA Sections */
.services-cta {
    margin-top: 80px;
}

.cta-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>') repeat;
    pointer-events: none;
}

.cta-container h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-buttons-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta.primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-cta.primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.btn-cta.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    border: 2px solid transparent;
}

.btn-cta.secondary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: #667eea;
    text-decoration: none;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    opacity: 0.9;
}

.cta-feature i {
    color: #48bb78;
    font-size: 0.9rem;
}

/* Process CTA Banner */
.process-cta {
    margin-top: 60px;
}

.cta-banner {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-content h4 {
    color: #2d3748;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-content p {
    color: #4a5568;
    font-size: 1.1rem;
    margin: 0;
}

.btn-cta-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    white-space: nowrap;
}

.btn-cta-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    color: white;
    text-decoration: none;
}

.btn-cta-banner i {
    font-size: 1rem;
}

/* Service Area Map Section */
.service-map-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.service-map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="map-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23cbd5e0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23map-pattern)"/></svg>') repeat;
    pointer-events: none;
}

.map-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.interactive-map {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.interactive-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="usa-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M10,10 Q30,5 50,10 Q55,30 50,50 Q30,55 10,50 Q5,30 10,10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="200" height="200" fill="url(%23usa-pattern)"/></svg>') repeat;
    pointer-events: none;
}

.region-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.region-marker i {
    font-size: 2rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.marker-label {
    background: rgba(255, 255, 255, 0.9);
    color: #2d3748;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.region-marker:hover .marker-label {
    opacity: 1;
    transform: translateY(0);
}

.region-marker:hover i {
    transform: scale(1.2);
    color: #ffd700;
}

/* Marker Positions */
.california-marker {
    top: 60%;
    left: 15%;
}

.texas-marker {
    top: 70%;
    left: 45%;
}

.newyork-marker {
    top: 35%;
    left: 75%;
}

.florida-marker {
    top: 85%;
    left: 70%;
}

.location-info {
    position: relative;
    z-index: 2;
}

.location-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
    transform: translateX(20px);
}

.location-card.active {
    opacity: 1;
    transform: translateX(0);
    border-color: #667eea;
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
}

.location-card h4 {
    color: #2d3748;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-card h4 i {
    color: #667eea;
    font-size: 1.2rem;
}

.location-details p {
    color: #4a5568;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.location-details a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.location-details a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.location-details ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 15px 0;
}

.location-details li {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.location-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: bold;
}

.coverage-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.coverage-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Emergency Services Responsive Design */
@media (max-width: 768px) {
    .emergency-services {
        padding: 60px 0;
    }
    
    .emergency-header h2 {
        font-size: 2.2rem;
    }
    
    .emergency-header p {
        font-size: 1.1rem;
    }
    
    .emergency-feature {
        padding: 30px 20px;
        margin-bottom: 25px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .emergency-feature h4 {
        font-size: 1.3rem;
    }
    
    .emergency-contact {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .emergency-phone,
    .emergency-email {
        font-size: 1.1rem;
    }
    
    .btn-emergency {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .emergency-services {
        padding: 40px 0;
    }
    
    .emergency-badge {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .emergency-header h2 {
        font-size: 1.8rem;
    }
    
    .emergency-header p {
        font-size: 1rem;
    }
    
    .emergency-feature {
        padding: 25px 15px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .btn-emergency {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    /* CTA Responsive Design */
    .cta-container {
        padding: 40px 20px;
        margin: 0 15px;
    }
    
    .cta-container h3 {
        font-size: 2rem;
    }
    
    .cta-container p {
        font-size: 1.1rem;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
    }
    
    .cta-content h4 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn-cta-banner {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-container {
        padding: 30px 15px;
        margin: 0 10px;
    }
    
    .cta-container h3 {
        font-size: 1.8rem;
    }
    
    .cta-container p {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .cta-banner {
        padding: 25px 15px;
    }
    
    .cta-content h4 {
        font-size: 1.3rem;
    }
    
    .btn-cta-banner {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    /* Service Map Responsive Design */
    .service-map-section {
        padding: 60px 0;
    }
    
    .map-container {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .interactive-map {
        height: 300px;
    }
    
    .region-marker i {
        font-size: 1.5rem;
    }
    
    .marker-label {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .location-card {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .location-card h4 {
        font-size: 1.2rem;
    }
    
    .coverage-areas {
        gap: 6px;
    }
    
    .coverage-tag {
        font-size: 0.75rem;
        padding: 3px 8px;
    }
}

/* Enhanced Responsive Design for Process, FAQ, and Footer */
@media (max-width: 1200px) {
    .process-section {
        padding: 100px 30px;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .process-step {
        padding: 40px 30px;
    }
    
    .faq {
        padding: 100px 30px;
    }
    
    .faq h2 {
        font-size: 3rem;
    }
    
    .footer {
        padding: 60px 30px 30px;
    }
}

@media (max-width: 992px) {
    .process-section {
        padding: 80px 20px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .process-step {
        padding: 35px 25px;
        margin-bottom: 30px;
    }
    
    .step-number {
        display: none;
    }
    
    .step-icon i {
        font-size: 3rem;
    }
    
    .process-step h4 {
        font-size: 1.6rem;
    }
    
    .faq {
        padding: 80px 20px;
    }
    
    .faq h2 {
        font-size: 2.5rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.2rem;
    }
    
    .footer {
        padding: 50px 20px 25px;
    }
    
    .footer-info {
        padding: 30px;
    }
    
    .footer-info h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 60px 15px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .process-step {
        padding: 30px 20px;
        margin-bottom: 25px;
    }
    
    .step-number {
        display: none;
    }
    
    .step-icon i {
        font-size: 2.5rem;
    }
    
    .process-step h4 {
        font-size: 1.4rem;
    }
    
    .process-step p {
        font-size: 1rem;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .faq {
        padding: 60px 15px;
    }
    
    .faq h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .faq-list {
        gap: 1.5rem;
    }
    
    .faq-item {
        border-radius: 16px;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
        line-height: 1.4;
    }
    
    .faq-question::after {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1.25rem;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
    
    .footer {
        padding: 40px 15px 20px;
    }
    
    .footer-content {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .footer-info {
        padding: 25px;
        border-radius: 20px;
    }
    
    .footer-info h3 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-info p {
        font-size: 1rem;
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-bottom {
        padding-top: 2rem;
    }
    
    .copyright {
        padding: 15px 30px;
    }
}

@media (max-width: 480px) {
    .process-section {
        padding: 40px 10px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .process-step {
        padding: 25px 15px;
    }
    
    .step-number {
        display: none;
    }
    
    .step-icon i {
        font-size: 2rem;
    }
    
    .process-step h4 {
        font-size: 1.2rem;
    }
    
    .process-step p {
        font-size: 0.9rem;
    }
    
    .feature-tag {
        font-size: 0.65rem;
        padding: 5px 10px;
    }
    
    .faq {
        padding: 40px 10px;
    }
    
    .faq h2 {
        font-size: 1.8rem;
    }
    
    .faq-subtitle {
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1rem;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question::after {
        width: 30px;
        height: 30px;
        font-size: 1.3rem;
        align-self: center;
    }
    
    .faq-answer {
        padding: 0 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 1rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 30px 10px 15px;
    }
    
    .footer-info {
        padding: 20px;
        border-radius: 16px;
    }
    
    .footer-info h3 {
        font-size: 1.4rem;
    }
    
    .footer-info p {
        font-size: 0.9rem;
    }
    
    .footer-info i {
        min-width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .copyright {
        padding: 12px 20px;
        border-radius: 25px;
    }
    
    .copyright p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-map-section {
        padding: 40px 0;
    }
    
    .map-container {
        padding: 15px;
    }
    
    .interactive-map {
        height: 250px;
    }
    
    .region-marker i {
        font-size: 1.2rem;
    }
    
    .location-card {
        padding: 15px;
    }
    
    .location-card h4 {
        font-size: 1.1rem;
    }
    
    .location-details p {
        font-size: 0.9rem;
    }
    
    .location-details li {
        font-size: 0.85rem;
    }
}