 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #2d3748;
            background: #ffffff;
            overflow-x: hidden;
        }

        /* Navigation */
        .nav-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px;
            background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 100%);
            backdrop-filter: blur(20px);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 60px;
            padding: 12px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
            transition: all 0.3s ease;
        }

        .nav-wrapper.scrolled nav {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 8px 60px rgba(0, 0, 0, 0.15);
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: #1a202c;
            letter-spacing: -0.02em;
        }

        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 25px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #2d3748;
            background: rgba(45, 55, 72, 0.08);
            transform: translateY(-1px);
        }

        .cta-button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 14px 28px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
        }

        /* Hero Section */
        .hero {
            padding: 120px 20px 80px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(-30px, -30px) rotate(120deg); }
            66% { transform: translate(30px, -20px) rotate(240deg); }
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-content {
            z-index: 2;
            position: relative;
        }

        .hero-badge {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
            animation: slideInUp 0.8s ease-out;
        }

        .hero h1 {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 800;
            color: #1a202c;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -0.025em;
            animation: slideInUp 0.8s ease-out 0.2s both;
        }

        .hero p {
            font-size: 20px;
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 40px;
            animation: slideInUp 0.8s ease-out 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            animation: slideInUp 0.8s ease-out 0.6s both;
        }

        .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
        }

        .btn-secondary {
            background: white;
            color: #2d3748;
            padding: 16px 32px;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary:hover {
            background: #f7fafc;
            border-color: #cbd5e0;
            transform: translateY(-2px);
        }

        .trust-badges {
            display: flex;
            gap: 30px;
            margin-top: 50px;
            animation: slideInUp 0.8s ease-out 0.8s both;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #4a5568;
            font-size: 14px;
        }

        .trust-icon {
            width: 24px;
            height: 24px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
        }

        .hero-visual {
            position: relative;
            height: 500px;
            border-radius: 24px;
            overflow: hidden;
            animation: slideInRight 0.8s ease-out 0.4s both;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            border-radius: 24px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* .hero-image::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            border: 3px solid rgba(255, 255, 255, 0.3);
        }

        .hero-image::after {
            content: '✨';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 48px;
            animation: pulse 2s ease-in-out infinite;
        } */

        /* Services Section */
        .services {
            padding: 100px 20px;
            background: #ffffff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 16px;
        }

        .section-header h2 {
            font-size: clamp(32px, 4vw, 42px);
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .section-header p {
            font-size: 18px;
            color: #4a5568;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 40px 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-color: rgba(102, 126, 234, 0.2);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 24px;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotateY(180deg);
        }

        .service-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 12px;
        }

        .service-card p {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-price {
            font-size: 18px;
            font-weight: 700;
            color: #667eea;
        }

        /* Process Section */
        .process {
            padding: 100px 20px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 30px;
            right: -20px;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #667eea, transparent);
            z-index: 1;
        }

        .process-step:last-child::after {
            display: none;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .step-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 8px;
        }

        .step-desc {
            color: #4a5568;
            font-size: 14px;
        }

        /* About Section - Why Choose Us */
        .about {
            padding: 100px 20px;
            background: #ffffff;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-top: 60px;
        }

        .about-content h3 {
            font-size: 28px;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 20px;
        }

        .about-content p {
            color: #4a5568;
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .why-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .why-feature {
            background: #f8fafc;
            padding: 25px;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .why-feature:hover {
            background: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .why-icon {
            font-size: 28px;
            margin-bottom: 12px;
        }

        .why-title {
            font-size: 16px;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 8px;
        }

        .why-desc {
            font-size: 14px;
            color: #4a5568;
            line-height: 1.5;
        }

        .about-visual {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            height: 450px;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
        }

        .about-visual::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"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></svg>'); */
        }

        .about-visual::after {
            content: '🏠';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 80px;
            animation: pulse 3s ease-in-out infinite;
        }

        /* Guarantee Section */
        .guarantee {
            padding: 80px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
        }

        .guarantee-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .guarantee h2 {
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 800;
            margin-bottom: 20px;
        }

        .guarantee p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .guarantee-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .guarantee-feature {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px 20px;
            border-radius: 16px;
            backdrop-filter: blur(10px);
        }

        .guarantee-icon {
            font-size: 32px;
            margin-bottom: 16px;
        }

        .guarantee-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .guarantee-desc {
            font-size: 14px;
            opacity: 0.8;
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 20px;
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .testimonial {
            background: #f8fafc;
            padding: 30px;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .testimonial:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .testimonial-stars {
            color: #fbbf24;
            font-size: 18px;
            margin-bottom: 16px;
        }

        .testimonial-text {
            font-style: italic;
            color: #4a5568;
            margin-bottom: 20px;
        }

        .testimonial-author {
            font-weight: 600;
            color: #1a202c;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 20px;
            background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
            color: white;
            text-align: center;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-section h2 {
            font-size: clamp(32px, 4vw, 42px);
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .cta-section .btn-primary {
            background: linear-gradient(135deg, #667eea, #764ba2);
            font-size: 18px;
            padding: 18px 36px;
        }

        /* Footer */
        footer {
            background: #1a202c;
            color: white;
            padding: 80px 20px 40px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 2fr ;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-brand h3 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .footer-brand p {
            color: #a0aec0;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .footer-contact {
            background: #2d3748;
            padding: 20px;
            border-radius: 16px;
            border: 1px solid #4a5568;
        }

        .footer-links h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 12px;
        }

        .footer-links ul li a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #4a5568;
            padding-top: 40px;
            text-align: center;
            color: #a0aec0;
        }

        /* Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.1); }
        }


        /* service page all design---------------------- */

           /* Page Header */
        .page-header {
            padding: 140px 20px 80px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(-30px, -30px) rotate(120deg); }
            66% { transform: translate(30px, -20px) rotate(240deg); }
        }

        .page-header-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .breadcrumb {
            color: #667eea;
            font-size: 14px;
            margin-bottom: 16px;
            font-weight: 500;
        }

        .breadcrumb a {
            color: #667eea;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .page-title {
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 20px;
            letter-spacing: -0.025em;
        }

        .page-subtitle {
            font-size: 20px;
            color: #4a5568;
            margin-bottom: 40px;
        }

        /* Quick Contact Bar */
        .quick-contact {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 16px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .quick-contact-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }

        .contact-item a {
            color: white;
            text-decoration: none;
        }

          /* Service Areas */
        .service-areas {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 16px;
        }

        .section-title {
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .area-card {
            background: white;
            padding: 30px 25px;
            border-radius: 16px;
            border: 1px solid #e2e8f0;
            text-align: center;
            transition: all 0.3s ease;
        }

        .area-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border-color: rgba(102, 126, 234, 0.2);
        }

        .area-icon {
            font-size: 24px;
            margin-bottom: 16px;
        }

        .area-name {
            font-size: 18px;
            font-weight: 600;
            color: #1a202c;
            margin-bottom: 8px;
        }

        .area-desc {
            color: #4a5568;
            font-size: 14px;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 20px;
            background: white;
        }

        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(102, 126, 234, 0.2);
        }

        .faq-question {
            background: #f8fafc;
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #1a202c;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #f1f5f9;
        }

        .faq-toggle {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 0 30px 25px;
            max-height: 200px;
        }

        .faq-answer p {
            color: #4a5568;
            line-height: 1.6;
        }

        /* service detail Section----------------------------- */

          /* Service Hero */
        .service-hero {
            padding: 40px 20px 80px;
            background: #f8fafc;
        }

        .service-hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .service-hero-content {
            animation: slideInUp 0.8s ease-out;
        }

        .service-badge {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
        }

        .service-hero h1 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            color: #1a202c;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -0.025em;
        }

        .service-hero-desc {
            font-size: 18px;
            color: #4a5568;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .service-highlights {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }

        .highlight-item {
            background: white;
            padding: 15px 20px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 500;
        }

        .highlight-icon {
            color: #667eea;
        }

        .service-hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
        }

        .btn-secondary {
            background: white;
            color: #2d3748;
            padding: 16px 32px;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary:hover {
            background: #f7fafc;
            border-color: #cbd5e0;
            transform: translateY(-2px);
        }

        .service-hero-visual {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            height: 400px;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
            animation: slideInRight 0.8s ease-out 0.2s both;
        }

        .service-hero-visual::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"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
        }

        .service-hero-visual::after {
            content: '🏠';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 80px;
            animation: pulse 3s ease-in-out infinite;
        }

        /* Service Details Grid */
        .service-details {
            padding: 100px 20px;
            background: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .details-grid {
            display: grid;
            grid-template-columns: 2fr ;
            gap: 80px;
        }

        /* Main Content */
        .main-content {
            animation: slideInUp 0.8s ease-out 0.3s both;
        }

        .content-section {
            margin-bottom: 60px;
        }

        .content-section h2 {
            font-size: 28px;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .content-section p {
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .checklist {
            list-style: none;
            margin: 30px 0;
        }

        .checklist li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid #f1f5f9;
        }

        .checklist li:last-child {
            border-bottom: none;
        }

        .check-icon {
            color: #48bb78;
            font-weight: bold;
            margin-top: 2px;
        }

        .frequency-options {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .frequency-card {
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .frequency-card:hover {
            border-color: #667eea;
            background: white;
            transform: translateY(-2px);
        }

        .frequency-card.popular {
            border-color: #667eea;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            position: relative;
        }

        .frequency-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
        }

        .frequency-title {
            font-size: 18px;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 8px;
        }

        .frequency-price {
            font-size: 24px;
            font-weight: 800;
            color: #667eea;
            margin-bottom: 8px;
        }

        .frequency-desc {
            font-size: 14px;
            color: #4a5568;
        }

       

        .contact-info {
            text-align: center;
        }

        .phone-number {
            font-size: 24px;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
        }

        .phone-number:hover {
            color: #764ba2;
        }

        .contact-hours {
            font-size: 14px;
            color: #4a5568;
            margin-bottom: 20px;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 0;
            color: #4a5568;
            font-size: 14px;
        }

        .feature-icon {
            color: #48bb78;
            font-size: 16px;
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 20px;
            background: #f8fafc;
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-tag {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 16px;
        }

        .section-header h2 {
            font-size: 32px;
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .faq-item {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #1a202c;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #f8fafc;
        }

        .faq-icon {
            transition: transform 0.3s ease;
            color: #667eea;
        }

        .faq-answer {
            padding: 0 30px 25px;
            color: #4a5568;
            line-height: 1.6;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }


        /*contact page----------------------*/

          /* Contact Hero */
        .contact-hero {
            padding: 40px 20px 80px;
            background: #f8fafc;
        }

        .contact-hero-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .contact-badge {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
            animation: slideInUp 0.8s ease-out;
        }

        .contact-hero h1 {
            font-size: clamp(32px, 4vw, 48px);
            font-weight: 800;
            color: #1a202c;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -0.025em;
            animation: slideInUp 0.8s ease-out 0.2s both;
        }

        .contact-hero-desc {
            font-size: 18px;
            color: #4a5568;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: slideInUp 0.8s ease-out 0.4s both;
        }

        .quick-contact-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            animation: slideInUp 0.8s ease-out 0.6s both;
        }

        .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
        }

        .btn-secondary {
            background: white;
            color: #2d3748;
            padding: 16px 32px;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-secondary:hover {
            background: #f7fafc;
            border-color: #cbd5e0;
            transform: translateY(-2px);
        }

        /* Contact Methods */
        .contact-methods {
            padding: 80px 20px;
            background: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 16px;
        }

        .section-header h2 {
            font-size: clamp(28px, 4vw, 36px);
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .section-header p {
            font-size: 18px;
            color: #4a5568;
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .contact-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .contact-card:hover::before {
            transform: scaleX(1);
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
            border-color: rgba(102, 126, 234, 0.2);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto 24px;
            transition: transform 0.3s ease;
        }

        .contact-card:hover .contact-icon {
            transform: scale(1.1) rotateY(180deg);
        }

        .contact-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 12px;
        }

        .contact-card p {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .contact-info {
            font-size: 18px;
            font-weight: 600;
            color: #667eea;
        }

        .contact-info a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: #764ba2;
        }

        /* Contact Form Section */
        .contact-form-section {
            padding: 80px 20px;
            background: #f8fafc;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr ;
            gap: 80px;
            align-items: start;
        }

        .form-content {
            animation: slideInUp 0.8s ease-out 0.3s both;
        }

        .form-content h2 {
            font-size: 32px;
            font-weight: 800;
            color: #1a202c;
            margin-bottom: 20px;
            letter-spacing: -0.02em;
        }

        .form-content p {
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 30px;
        }

        .contact-form {
            background: white;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            animation: slideInRight 0.8s ease-out 0.5s both;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 8px;
            font-size: 14px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 16px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #ffffff;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 24px;
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
            margin-top: 4px;
        }

        .checkbox-group label {
            margin-bottom: 0;
            font-weight: 400;
            font-size: 14px;
            line-height: 1.5;
        }

        .submit-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 18px 36px;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

          /* Emergency Contact */
        .emergency-contact {
            padding: 60px 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
        }

        .emergency-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .emergency-contact h2 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .emergency-contact p {
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .emergency-phone {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 20px;
            display: block;
            color: white;
            text-decoration: none;
        }

        .emergency-phone:hover {
            transform: scale(1.05);
        }

        /* Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }



        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-visual {
                height: 300px;
            }

            .trust-badges {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .process-step::after {
                display: none;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .why-features {
                grid-template-columns: 1fr;
            }

            .guarantee-features {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        /* Scroll reveal */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }