/* Hero Section */
        .breadcrumb {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.15);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
            transition: opacity 0.3s ease;
        }

        .breadcrumb a:hover {
            opacity: 0.8;
        }

        /* Services Grid Section */
        .services-grid-section {
            background: white;
            padding: 100px 20px;
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, #30409e 0%, #bc2d39 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .section-header h2 {
            font-size: 3rem;
            color: #30409e;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.8;
        }

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

        .service-detail-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            border: 2px solid transparent;

            transform: translateY(30px);
        }

        .service-detail-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
            border-color: #bc2d39;
        }

        .service-card-header {
            background: linear-gradient(135deg, #30409e 0%, #bc2d39 100%);
            padding: 40px 30px;
            color: white;
            text-align: center;
        }

        .service-card-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            backdrop-filter: blur(10px);
        }

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

        .service-card-header h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .service-card-header p {
            font-size: 1rem;
            opacity: 0.95;
        }

        .service-card-body {
            padding: 35px 30px;
        }

        .service-features {
            list-style: none;
            margin-bottom: 25px;
        }

        .service-features li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 1.05rem;
            color: #555;
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .service-features li svg {
            width: 20px;
            height: 20px;
            stroke: #30409e;
            flex-shrink: 0;
            margin-top: 3px;
        }

        .service-card-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #bc2d39;
            font-weight: 700;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }

        .service-card-link:hover {
            gap: 15px;
        }

        .service-card-link svg {
            width: 20px;
            height: 20px;
            stroke: #bc2d39;
        }

        /* Why Choose Section */
        .why-choose-section {
            background: #f8f9fa;
            padding: 100px 20px;
        }

        .why-choose-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .why-choose-content {

            transform: translateX(-50px);
        }

        .why-choose-content h2 {
            font-size: 2.8rem;
            color: #30409e;
            margin-bottom: 25px;
            font-weight: 800;
            line-height: 1.3;
        }

        .why-choose-content p {
            font-size: 1.15rem;
            color: #555;
            margin-bottom: 30px;
            line-height: 1.9;
        }

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

        .benefit-item {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .benefit-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #30409e 0%, #bc2d39 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .benefit-icon svg {
            width: 28px;
            height: 28px;
            stroke: white;
        }

        .benefit-item h4 {
            font-size: 1.2rem;
            color: #30409e;
            font-weight: 700;
        }

        .benefit-item p {
            font-size: 0.95rem;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        .why-choose-stats {

            transform: translateX(50px);
        }

        .stats-card {
            background: white;
            padding: 50px 40px;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
        }

        .stat-item {
            text-align: center;
            padding: 30px 20px;
            border-bottom: 2px solid #f0f0f0;
        }

        .stat-item:last-child {
            border-bottom: none;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #30409e 0%, #bc2d39 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            display: block;
        }

        .stat-label {
            font-size: 1.1rem;
            color: #666;
            font-weight: 600;
        }

        /* Process Section */
        .process-section {
            background: linear-gradient(135deg, #30409e 0%, #1e2a6b 100%);
            padding: 100px 20px;
            color: white;
        }

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

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

        .process-step {
            text-align: center;

            transform: translateY(30px);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            font-weight: 800;
            backdrop-filter: blur(10px);
            border: 3px solid rgba(255, 255, 255, 0.3);
        }

        .process-step h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .process-step p {
            font-size: 1.05rem;
            opacity: 0.95;
            line-height: 1.7;
        }

        /* Emergency Banner */
        .emergency-banner {
            background: #bc2d39;
            padding: 60px 20px;
            text-align: center;
            color: white;
        }

        .emergency-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .emergency-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
        }

        .emergency-icon svg {
            width: 45px;
            height: 45px;
            stroke: white;
        }

        .emergency-content h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .emergency-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .emergency-phone {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            display: block;
            letter-spacing: 2px;
        }

        /* CTA Section */
        .cta-section {
            background: white;
            padding: 100px 20px;
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            background: linear-gradient(135deg, #30409e 0%, #bc2d39 100%);
            padding: 70px 50px;
            border-radius: 30px;
            color: white;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .cta-container h2 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            font-weight: 800;
        }

        .cta-container p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            opacity: 0.95;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-white {
            background: white;
            color: #30409e;
            padding: 18px 45px;
            border: none;
            border-radius: 50px;
            font-size: 1.15rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: white;
            padding: 18px 45px;
            border: 2px solid white;
            border-radius: 50px;
            font-size: 1.15rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-outline:hover {
            background: white;
            color: #30409e;
            transform: translateY(-3px);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .why-choose-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

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

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

            .section-header h2 {
                font-size: 2.2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-white,
            .btn-outline {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .emergency-phone {
                font-size: 1.8rem;
            }

            .cta-container {
                padding: 50px 30px;
            }

            .cta-container h2 {
                font-size: 2rem;
            }
        }