.custom-link {
      text-decoration: none; color: black;
    }
  .masthead, .hero-section, .main-hero, .sector-hero {
     margin-top: -25px;
  }
/* General banner styling */
.cookie-consent-banner {
display: none;
position: fixed;
bottom: 20px;
left: 20px;
right: 20px;
max-width: 600px;
margin: 0 auto;
background-color: rgba(30, 30, 30, 0.95);
color: #e0e0e0;
border-radius: 12px;
padding: 20px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
z-index: 1000;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
animation: slideUp 0.5s ease-out;
}

/* Slide-up animation for smooth appearance */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Heading styling */
.cookie-consent-banner h3 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

/* Paragraph styling */
.cookie-consent-banner p {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #d0d0d0;
}

/* Button base styling */
.cookie-consent-button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Button hover effect */
.cookie-consent-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Button active effect */
.cookie-consent-button:active {
    transform: translateY(0);
    opacity: 0.8;
}

/* Success button (Accept All) */
.cookie-consent-button.btn-success {
    background-color: #2ecc71;
    color: white;
}

/* Outline button (Save Settings) */
.cookie-consent-button.btn-outline {
    background-color: transparent;
    border: 2px solid #2ecc71;
    color: #2ecc71;
}

/* Grayscale button (Reject) */
.cookie-consent-button.btn-grayscale {
    background-color: #4a4a4a;
    color: #e0e0e0;
}

/* Options container */
.cookie-consent-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

/* Checkbox labels */
.cookie-consent-options label {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #d0d0d0;
    cursor: pointer;
}

/* Checkbox inputs */
.cookie-consent-options input {
    margin-right: 8px;
    accent-color: #2ecc71;
}

/* Disabled checkbox styling */
.cookie-consent-options input:disabled + span {
    color: #888;
    cursor: not-allowed;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .cookie-consent-banner {
        bottom: 80px; /* Increased to clear the fixed-bottom phone button */
        left: 10px;
        right: 10px;
        padding: 15px;
        z-index: 2000; /* Ensure it’s above the phone button */
    }

    .cookie-consent-button {
        padding: 8px 15px;
        font-size: 13px;
    }

    .cookie-consent-options label {
        font-size: 12px;
    }
}









 /* Custom styling pentru dropdown-uri */
        .dropdown-menu {
            border: none;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            border-radius: 0.5rem;
            padding: 0.5rem 0;
        }
        
        .dropdown-item {
            padding: 0.5rem 1.25rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .dropdown-item:hover {
            background-color: #ffc107;
            color: #000;
            transform: translateX(5px);
        }
        
        /* Styling pentru phone button pe desktop */
        .phone-desktop {
            background: linear-gradient(135deg, #28a745, #20c997);
            border: none;
            box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
            transition: all 0.3s ease;
        }
        
        .phone-desktop:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
            background: linear-gradient(135deg, #20c997, #28a745);
        }
        
        /* Styling pentru WhatsApp button pe mobile */
        .whatsapp-mobile {
            background: linear-gradient(135deg, #25D366, #128C7E);
            border: none;
            box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
        }
        
        .whatsapp-mobile:hover {
            background: linear-gradient(135deg, #128C7E, #25D366);
            transform: translateY(-2px);
        }
        
        /* Navbar brand styling */
        .navbar-brand {
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        /* Nav links styling */
        .nav-link {
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: #000 !important;
        }
        
        /* Dropdown toggle arrow styling */
        .dropdown-toggle::after {
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }
        
        .dropdown-toggle.show::after {
            transform: rotate(180deg);
        }
        
        /* Mobile menu improvements */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background-color: #ffc107;
                margin-top: 1rem;
                border-radius: 0.5rem;
                padding: 1rem;
                box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
                max-height: calc(100vh - 120px);
                overflow-y: auto;
                overflow-x: hidden;
            }
            
            /* Smooth scrolling pentru navbar collapse */
            .navbar-collapse {
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
            }
            
            /* Custom scrollbar pentru webkit browsers */
            .navbar-collapse::-webkit-scrollbar {
                width: 4px;
            }
            
            .navbar-collapse::-webkit-scrollbar-track {
                background: rgba(255, 255, 255, 0.1);
                border-radius: 2px;
            }
            
            .navbar-collapse::-webkit-scrollbar-thumb {
                background: rgba(0, 0, 0, 0.2);
                border-radius: 2px;
            }
            
            .navbar-collapse::-webkit-scrollbar-thumb:hover {
                background: rgba(0, 0, 0, 0.3);
            }
            
            /* Linkuri principale mobile - mai mari pentru touch */
            .nav-link {
                padding: 1rem 0.75rem !important;
                font-size: 1.1rem !important;
                font-weight: 600 !important;
                min-height: 48px;
                display: flex;
                align-items: center;
                border-radius: 0.375rem;
                margin-bottom: 0.25rem;
                transition: all 0.3s ease;
            }
            
            .nav-link:hover {
                background-color: rgba(255, 255, 255, 0.2);
                transform: translateX(8px);
            }
            
            /* Dropdown toggle mobile */
            .dropdown-toggle {
                padding: 1rem 0.75rem !important;
                min-height: 48px;
            }
            
            /* Dropdown menu mobile */
            .dropdown-menu {
                background-color: #fff3cd;
                border-left: 3px solid #ffc107;
                margin-left: 1rem;
                margin-top: 0.5rem;
                margin-bottom: 0.5rem;
                border-radius: 0.5rem;
                box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
                position: static !important;
                transform: none !important;
                border: none;
                max-width: none;
            }
            
            /* Dropdown items mobile - mai mari pentru touch */
            .dropdown-item {
                padding: 0.875rem 1.25rem !important;
                font-size: 1rem !important;
                min-height: 44px;
                display: flex;
                align-items: center;
            }
            
            .dropdown-item:hover {
                background-color: #ffc107;
                transform: translateX(8px);
            }
            
            /* Buton WhatsApp mobile - mai mare */
            .whatsapp-mobile {
                padding: 1rem 1.5rem !important;
                font-size: 1.1rem !important;
                min-height: 48px;
                margin-top: 0.5rem;
                width: 100%;
                justify-content: center;
            }
            
            /* Spacing suplimentar pentru ultimul element */
            .navbar-nav .nav-item:last-child {
                margin-bottom: 1rem;
            }
        }
        
        /* Test container styling */
        body {
            padding-top: 100px;
            background-color: #f8f9fa;
        }
        
        .test-content {
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }






 .hero-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 3rem 0 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 193, 7, 0.1) 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        /* Typography Hierarchy */
        .hero-badge {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 0.5rem 1.25rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
        }
        
        .hero-headline {
            font-family: 'Newsreader', serif;
            font-size: 3.5rem;
            font-weight: 600;
            line-height: 1.1;
            color: #212529;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtext {
            font-size: 1.25rem;
            line-height: 1.5;
            color: #6c757d;
            margin-bottom: 2rem;
            font-weight: 400;
        }
        
        /* CTA Section */
        .cta-container {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 193, 7, 0.2);
            margin-bottom: 2rem;
        }
        
        .cta-headline {
            font-size: 1.5rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .phone-cta {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 1.25rem 2rem;
            border-radius: 0.75rem;
            font-size: 2rem;
            font-weight: 700;
            text-decoration: none;
            display: block;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
            margin-bottom: 1rem;
            position: relative;
            overflow: hidden;
        }
        
        .phone-cta::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;
        }
        
        .phone-cta:hover::before {
            left: 100%;
        }
        
        .phone-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
            color: white;
            text-decoration: none;
        }
        
        .phone-cta i {
            margin-right: 0.75rem;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        .quality-text {
            text-align: center;
            color: #28a745;
            font-weight: 600;
            font-size: 0.9rem;
            background: rgba(40, 167, 69, 0.1);
            padding: 0.5rem;
            border-radius: 0.5rem;
        }
        
        /* Trust Indicators */
        .trust-indicators {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1.5rem;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .trust-item {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: #28a745;
            font-weight: 500;
        }
        
        .trust-item i {
            margin-right: 0.5rem;
            color: #28a745;
        }
        
        /* Image Styling */
        .hero-image {
            position: relative;
        }
        
        .hero-image img {
            border-radius: 1rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }
        
        .hero-image:hover img {
            transform: scale(1.02);
        }
        
        .image-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: #ffc107;
            color: #212529;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            font-size: 0.8rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        }
        
        /* Responsive Design */
        @media (max-width: 991.98px) {
            .hero-headline {
                font-size: 2.5rem;
                text-align: center;
            }
            
            .hero-subtext {
                text-align: center;
                font-size: 1.1rem;
            }
            
            .phone-cta {
                font-size: 1.75rem;
            }
            
            .trust-indicators {
                justify-content: center;
                text-align: center;
            }
            
            .trust-item {
                flex-basis: 100%;
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section {
                padding: 2rem 0 1rem;
            }
            
            .hero-headline {
                font-size: 2rem;
            }
            
            .phone-cta {
                font-size: 1.5rem;
                padding: 1rem 1.5rem;
            }
            
            .cta-container {
                padding: 1.5rem;
            }
        }
        
        /* Additional visual enhancements */
        .floating-elements {
            position: absolute;
            top: 20%;
            right: 10%;
            z-index: 1;
        }
        
        .floating-icon {
            background: rgba(255, 193, 7, 0.1);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            animation: float 3s ease-in-out infinite;
        }
        
        .floating-icon:nth-child(2) {
            animation-delay: 1s;
            margin-left: 2rem;
        }
        
        .floating-icon:nth-child(3) {
            animation-delay: 2s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        
        .floating-icon i {
            color: #ffc107;
            font-size: 1.5rem;
        }



  /* Services Section Styling */
        .services-section {
            padding: 4rem 0;
            background: #f8f9fa;
        }
        
        .mission-section {
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
            padding: 3rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .mission-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 30% 20%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
            z-index: 1;
        }
        
        .section-content {
            position: relative;
            z-index: 2;
        }
        
        /* Typography */
        .section-badge {
            background: linear-gradient(135deg, #ffc107, #ffca2c);
            color: #212529;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            margin-bottom: 2rem;
            box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
        }
        
        .section-title {
            font-family: 'Newsreader', serif;
            font-size: 2.8rem;
            font-weight: 600;
            line-height: 1.2;
            color: #212529;
            margin-bottom: 1.5rem;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #6c757d;
            margin-bottom: 2rem;
        }
        
        /* Mission Statement */
        .mission-statement {
            background: white;
            border-radius: 1rem;
            padding: 2.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border-left: 4px solid #ffc107;
            margin-bottom: 3rem;
        }
        
        .mission-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #495057;
            margin-bottom: 1.5rem;
        }
        
        .mission-text:last-child {
            margin-bottom: 0;
        }
        
        .mission-highlight {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
            padding: 1.5rem;
            border-radius: 0.75rem;
            border-left: 3px solid #ffc107;
            margin: 1.5rem 0;
        }
        
        /* Services Grid */
        .services-grid {
            margin-top: 3rem;
        }
        
        .service-category {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 193, 7, 0.1);
        }
        
        .service-category:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
        }
        
        .service-category-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }
        
        .service-icon {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.2rem;
        }
        
        .service-category-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: #212529;
            margin: 0;
        }
        
        .service-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .service-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
            padding: 0.75rem;
            border-radius: 0.5rem;
            transition: background-color 0.3s ease;
        }
        
        .service-item:hover {
            background-color: rgba(255, 193, 7, 0.05);
        }
        
        .service-item i {
            color: #28a745;
            margin-right: 0.75rem;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }
        
        .service-item-content {
            flex: 1;
        }
        
        .service-item-title {
            font-weight: 600;
            color: #212529;
            margin-bottom: 0.25rem;
        }
        
        .service-item-desc {
            font-size: 0.9rem;
            color: #6c757d;
            line-height: 1.4;
        }
        
        /* Coverage Area */
        .coverage-section {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            border-radius: 1rem;
            padding: 2.5rem;
            margin-top: 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .coverage-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            z-index: 1;
        }
        
        .coverage-content {
            position: relative;
            z-index: 2;
        }
        
        .coverage-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .coverage-text {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }
        
        .coverage-cta {
            background: white;
            color: #28a745;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .coverage-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            color: #28a745;
            text-decoration: none;
        }
        
        /* Image Styling */
        .info-image {
            position: relative;
            margin-bottom: 2rem;
        }
        
        .info-image img {
            border-radius: 1rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }
        
        .info-image:hover img {
            transform: scale(1.02);
        }
        
        .experience-badge {
            position: absolute;
            bottom: 15px;
            left: 15px;
            background: rgba(255, 193, 7, 0.95);
            color: #212529;
            padding: 0.75rem 1.25rem;
            border-radius: 0.5rem;
            font-weight: 600;
            font-size: 0.9rem;
            backdrop-filter: blur(10px);
        }
        
        /* Stats Section */
        .stats-container {
            display: flex;
            justify-content: space-around;
            margin: 2rem 0;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .stat-item {
            text-align: center;
            padding: 1rem;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #28a745;
            display: block;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #6c757d;
            font-weight: 500;
        }
        
        /* Responsive Design */
        @media (max-width: 991.98px) {
            .section-title {
                font-size: 2.2rem;
                text-align: center;
            }
            
            .mission-statement {
                padding: 2rem;
            }
            
            .coverage-section {
                padding: 2rem;
            }
            
            .stats-container {
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .services-section {
                padding: 3rem 0;
            }
            
            .mission-section {
                padding: 2rem 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .service-category {
                padding: 1.5rem;
            }
            
            .mission-statement {
                padding: 1.5rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }

 .mobile-bottom-bar {
            box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.15);
            background-color: #ffc107;
            padding: 0.5rem 0;
        }
        
        .whatsapp-btn {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border: none;
            border-radius: 12px;
            padding: 0.7rem;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(18, 140, 126, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            color: white !important;
            text-decoration: none;
        }
        
        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(18, 140, 126, 0.4);
            color: white;
        }
        
        .phone-link {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 0.7rem;
            color: #333;
            text-decoration: none;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            width: 100%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .phone-link:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            color: #333;
        }
        
        .bi-whatsapp {
            color: white;
            font-size: 1.5rem;
        }
        
        .bi-telephone-fill {
            font-size: 1.5rem;
            margin-right: 0.5rem;
        }
        
        @media (max-width: 576px) {
            .display-6 {
                font-size: 1.2rem;
            }
            
            .bi-telephone-fill, .bi-whatsapp {
                font-size: 1.3rem;
            }
        }
        
        /* Animație de pulsare pentru a atrage atenția */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }

  /* Pricing Section Main */
        .pricing-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 4rem 0;
            position: relative;
        }
        
        .pricing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 70% 30%, rgba(255, 193, 7, 0.03) 0%, transparent 60%);
            z-index: 1;
        }
        
        .section-content {
            position: relative;
            z-index: 2;
        }
        
        /* Typography */
        .section-badge {
            background: linear-gradient(135deg, #ffc107, #ffca2c);
            color: #212529;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            margin-bottom: 2rem;
            box-shadow: 0 2px 8px rgba(255, 193, 7, 0.3);
        }
        
        .section-title {
            font-family: 'Newsreader', serif;
            font-size: 2.8rem;
            font-weight: 600;
            line-height: 1.2;
            color: #212529;
            margin-bottom: 1.5rem;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #6c757d;
            margin-bottom: 3rem;
        }
        
        /* Trust Statement */
        .trust-statement {
            background: white;
            border-radius: 1rem;
            padding: 2.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border-left: 4px solid #28a745;
            margin-bottom: 3rem;
        }
        
        .trust-highlight {
            background: linear-gradient(135deg, rgba(40, 167, 69, 0.1), rgba(40, 167, 69, 0.05));
            padding: 1.5rem;
            border-radius: 0.75rem;
            border-left: 3px solid #28a745;
            margin: 1.5rem 0;
            text-align: center;
        }
        
        .trust-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #495057;
            margin-bottom: 1.5rem;
        }
        
        .trust-features {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .trust-feature {
            display: flex;
            align-items: center;
            color: #28a745;
            font-weight: 600;
        }
        
        .trust-feature i {
            margin-right: 0.5rem;
            font-size: 1.2rem;
        }
        
        /* Pricing Cards */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        
        .pricing-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(255, 193, 7, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #ffc107, #ffca2c);
        }
        
        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }
        
        .card-header {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .card-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 0.5rem;
        }
        
        .card-subtitle {
            color: #6c757d;
            font-size: 0.9rem;
        }
        
        .price-display {
            text-align: center;
            margin: 1.5rem 0;
        }
        
        .price-current {
            font-size: 2.5rem;
            font-weight: 700;
            color: #28a745;
            display: block;
        }
        
        .price-old {
            font-size: 1.2rem;
            color: #dc3545;
            text-decoration: line-through;
            margin-left: 1rem;
        }
        
        .price-note {
            font-size: 0.85rem;
            color: #6c757d;
            margin-top: 0.5rem;
        }
        
        .discount-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, #dc3545, #c82333);
            color: white;
            padding: 0.4rem 0.8rem;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .savings-highlight {
            background: rgba(220, 53, 69, 0.1);
            color: #dc3545;
            padding: 0.75rem;
            border-radius: 0.5rem;
            text-align: center;
            font-weight: 600;
            margin-top: 1rem;
        }
        
        /* Process Section */
        .process-section {
            background: linear-gradient(135deg, #28a745, #20c997);
            border-radius: 1.5rem;
            padding: 3rem;
            margin: 3rem 0;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .process-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            z-index: 1;
        }
        
        .process-content {
            position: relative;
            z-index: 2;
        }
        
        .process-title {
            font-size: 2rem;
            font-weight: 600;
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .process-step {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            backdrop-filter: blur(10px);
        }
        
        .step-icon {
            background: white;
            color: #28a745;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 1rem;
        }
        
        .step-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }
        
        .step-description {
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.4;
        }
        
        /* CTA Section */
        .final-cta {
            background: white;
            border-radius: 1rem;
            padding: 2.5rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 2px solid #ffc107;
            margin-top: 3rem;
        }
        
        .cta-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 1rem;
        }
        
        .cta-subtitle {
            font-size: 1.1rem;
            color: #6c757d;
            margin-bottom: 2rem;
        }
        
        .cta-button {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 1.25rem 2.5rem;
            border-radius: 0.75rem;
            font-size: 1.3rem;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
            color: white;
            text-decoration: none;
        }
        
        .cta-button i {
            margin-right: 0.75rem;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        
        /* Responsive Design */
        @media (max-width: 991.98px) {
            .section-title {
                font-size: 2.2rem;
                text-align: center;
            }
            
            .trust-statement {
                padding: 2rem;
            }
            
            .process-section {
                padding: 2rem;
            }
            
            .trust-features {
                justify-content: center;
            }
            
            .trust-feature {
                flex-basis: 100%;
                justify-content: center;
                margin-bottom: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .pricing-section {
                padding: 3rem 0;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .pricing-card {
                padding: 1.5rem;
            }
            
            .price-current {
                font-size: 2rem;
            }
            
            .process-section {
                padding: 1.5rem;
            }
            
            .process-title {
                font-size: 1.5rem;
            }
            
            .final-cta {
                padding: 2rem;
            }
            
            .cta-button {
                padding: 1rem 2rem;
                font-size: 1.1rem;
            }
        }

 .sector-hero {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 3rem 0 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .sector-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255, 193, 7, 0.05) 0%, rgba(255, 193, 7, 0.1) 100%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        /* Location Badge */
        .location-badge {
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: white;
            padding: 0.5rem 1.25rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
            animation: pulse-badge 2s infinite;
        }
        
        @keyframes pulse-badge {
            0%, 100% { box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3); }
            50% { box-shadow: 0 4px 12px rgba(220, 53, 69, 0.5); }
        }
        
        /* Typography Hierarchy */
        .hero-headline {
            font-family: 'Newsreader', serif;
            font-size: 3.2rem;
            font-weight: 600;
            line-height: 1.1;
            color: #212529;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtext {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #495057;
            margin-bottom: 2rem;
            font-weight: 400;
        }
        
        .sector-highlight {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 193, 7, 0.05));
            padding: 1.25rem;
            border-radius: 0.75rem;
            border-left: 4px solid #ffc107;
            margin: 1.5rem 0;
        }
        
        /* Local Expertise Section */
        .local-expertise {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(220, 53, 69, 0.2);
            margin-bottom: 2rem;
            position: relative;
        }
        
        .local-expertise::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #dc3545, #c82333);
            border-radius: 1rem 1rem 0 0;
        }
        
        .expertise-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .expertise-icon {
            background: linear-gradient(135deg, #dc3545, #c82333);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1rem;
        }
        
        /* Emergency CTA */
        .emergency-cta {
            background: linear-gradient(135deg, #25D366, #128C7E);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            color: white;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .emergency-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shine 3s infinite;
        }
        
        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .emergency-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }
      .emergency-title2 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }
        
        .phone-cta-large {
            background: white;
            color: #dc3545;
            padding: 1.25rem 2rem;
            border-radius: 0.75rem;
            font-size: 2.2rem;
            font-weight: 700;
            text-decoration: none;
            display: block;
            margin: 1rem 0;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .phone-cta-large:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            color: #dc3545;
            text-decoration: none;
        }
        
        .phone-cta-large i {
            margin-right: 0.75rem;
            animation: ring 2s infinite;
        }
        
        @keyframes ring {
            0%, 100% { transform: rotate(0deg); }
            10%, 30% { transform: rotate(-10deg); }
            20% { transform: rotate(10deg); }
        }
        
        .emergency-note {
            font-size: 0.95rem;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }
        
        /* Service Highlights */
        .service-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .service-highlight {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.75rem;
            border-radius: 0.5rem;
            font-size: 0.9rem;
            backdrop-filter: blur(5px);
        }
        
        .service-highlight i {
            color: #ffc107;
            margin-right: 0.5rem;
            font-size: 1rem;
        }
        
        /* Image Styling */
        .hero-image {
            position: relative;
        }
        
        .hero-image img {
            border-radius: 1rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
        }
        
        .hero-image:hover img {
            transform: scale(1.02);
        }
        
        .sector-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            background: linear-gradient(135deg, #ffc107, #ffca2c);
            color: #212529;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 3px 10px rgba(255, 193, 7, 0.4);
            transform: rotate(5deg);
        }
        
        /* Local Areas */
        .local-areas {
            background: rgba(40, 167, 69, 0.1);
            border-radius: 0.75rem;
            padding: 1.5rem;
            margin-top: 1.5rem;
            border-left: 4px solid #28a745;
        }
        
        .areas-title {
            font-weight: 600;
            color: #28a745;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .areas-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 0.5rem;
            font-size: 0.9rem;
            color: #495057;
        }
        
        .area-item {
            display: flex;
            align-items: center;
        }
        
        .area-item i {
            color: #28a745;
            margin-right: 0.5rem;
            font-size: 0.8rem;
        }
        
        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 15%;
            right: 5%;
            z-index: 1;
        }
        
        .floating-icon {
            background: rgba(220, 53, 69, 0.1);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            animation: float 3s ease-in-out infinite;
        }
        
        .floating-icon:nth-child(2) {
            animation-delay: 1s;
            margin-left: 1.5rem;
        }
        
        .floating-icon:nth-child(3) {
            animation-delay: 2s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
        }
        
        .floating-icon i {
            color: #dc3545;
            font-size: 1.2rem;
        }
        
        /* Responsive Design */
        @media (max-width: 991.98px) {
            .hero-headline {
                font-size: 2.3rem;
                text-align: center;
            }
            
            .hero-subtext {
                text-align: center;
                font-size: 1.1rem;
            }
            
            .phone-cta-large {
                font-size: 1.8rem;
            }
            
            .local-expertise {
                padding: 1.5rem;
            }
            
            .emergency-cta {
                padding: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .sector-hero {
                padding: 2rem 0 1rem;
            }
            
            .hero-headline {
                font-size: 1.9rem;
            }
            
            .phone-cta-large {
                font-size: 1.5rem;
                padding: 1rem 1.5rem;
            }
            
            .local-expertise {
                padding: 1.25rem;
            }
            
            .emergency-cta {
                padding: 1.25rem;
            }
        }

  .main-hero {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 4rem 0 3rem;
            position: relative;
            overflow: hidden;
        }
        
        .main-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: radial-gradient(ellipse at 70% 30%, rgba(0, 123, 255, 0.03) 0%, transparent 70%);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        /* Typography Hierarchy */
        .authority-badge {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            margin-bottom: 1.5rem;
            box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
        }
        
        .hero-headline {
            font-family: 'Newsreader', serif;
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            color: #212529;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtext {
            font-size: 1.3rem;
            line-height: 1.5;
            color: #495057;
            margin-bottom: 2.5rem;
            font-weight: 500;
        }
        
        /* Emergency CTA Container */
        .emergency-container {
            background: white;
            border-radius: 1.25rem;
            padding: 2.5rem;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 193, 7, 0.3);
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .emergency-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(135deg, #dc3545, #ffc107);
        }
        
        .emergency-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #fefdfbfc;
            text-align: center;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
         .emergency-title2 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #080102ff;
            text-align: center;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .emergency-icon {
            background: linear-gradient(135deg, #dc3545, #c82333);
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            animation: pulse-emergency 2s infinite;
        }
        
        @keyframes pulse-emergency {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
        }
        
        .phone-cta-primary {
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 1.5rem 2.5rem;
            border-radius: 1rem;
            font-size: 2.3rem;
            font-weight: 800;
            text-decoration: none;
            display: block;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
            margin-bottom: 1rem;
            position: relative;
            overflow: hidden;
        }
        
        .phone-cta-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s;
        }
        
        .phone-cta-primary:hover::before {
            left: 100%;
        }
        
        .phone-cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(40, 167, 69, 0.5);
            color: white;
            text-decoration: none;
        }
        
        .phone-cta-primary i {
            margin-right: 1rem;
            animation: ring-animation 2s infinite;
        }
        
        @keyframes ring-animation {
            0%, 100% { transform: rotate(0deg); }
            10%, 30% { transform: rotate(-15deg); }
            20% { transform: rotate(10deg); }
        }
        
        .emergency-note {
            text-align: center;
            color: #6c757d;
            font-size: 0.95rem;
            font-weight: 500;
            background: rgba(40, 167, 69, 0.05);
            padding: 0.75rem;
            border-radius: 0.5rem;
        }
        
        /* Trust Indicators */
        .trust-grid2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .trust-item2 {
            background: rgba(0, 123, 255, 0.05);
            padding: 1.5rem;
            border-radius: 1rem;
            text-align: center;
            border: 1px solid rgba(0, 123, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .trust-item2:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.1);
        }
        
        .trust-icon2 {
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.2rem;
        }
        
        .trust-title2 {
            font-weight: 600;
            color: #212529;
            margin-bottom: 0.5rem;
        }
        
        .trust-desc2 {
            font-size: 0.9rem;
            color: #6c757d;
            line-height: 1.4;
        }
        
        /* Services Preview */
        .services-preview {
            background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 193, 7, 0.05));
            border-radius: 1rem;
            padding: 2rem;
            margin-top: 2rem;
            border-left: 4px solid #ffc107;
        }
        
        .services-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
        }
        
        .services-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 0.75rem;
            font-size: 0.95rem;
            color: #495057;
        }
        
        .service-item {
            display: flex;
            align-items: center;
        }
        
        .service-item i {
            color: #ffc107;
            margin-right: 0.75rem;
            font-size: 1rem;
        }
        
        /* Image Section */
        .hero-images {
            position: relative;
        }
        
        .main-image {
            border-radius: 1.25rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease;
            width: 100%;
            margin-bottom: 1.5rem;
        }
        
        .main-image:hover {
            transform: scale(1.02);
        }
        
        .certification-badge {
            position: absolute;
            top: -15px;
            right: -15px;
            background: linear-gradient(135deg, #28a745, #20c997);
            color: white;
            padding: 1rem 1.25rem;
            border-radius: 1rem;
            font-weight: 700;
            font-size: 0.85rem;
            box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
            transform: rotate(8deg);
            animation: float-badge 3s ease-in-out infinite;
        }
        
        @keyframes float-badge {
            0%, 100% { transform: rotate(8deg) translateY(0px); }
            50% { transform: rotate(8deg) translateY(-5px); }
        }
        
        .secondary-image {
            border-radius: 1rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
            width: 100%;
        }
        
        /* Secondary CTA Section */
        .secondary-cta {
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            padding: 3rem 2rem;
            text-align: center;
            margin-top: 0rem;
            margin-bottom: 0rem;
            position: relative;
            overflow: hidden;
        }
        
        .secondary-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            z-index: 1;
        }
        
        .secondary-cta-content {
            position: relative;
            z-index: 2;
        }
        
        .secondary-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .secondary-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .cta-button {
            background: white;
            color: #007bff;
            padding: 1.25rem 2rem;
            border-radius: 0.75rem;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            min-width: 200px;
            justify-content: center;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
            color: #007bff;
            text-decoration: none;
        }
        
        .cta-button i {
            margin-right: 0.75rem;
            font-size: 1.2rem;
        }
        
        /* Responsive Design */
        @media (max-width: 991.98px) {
            .hero-headline {
                font-size: 2.5rem;
                text-align: center;
            }
            
            .hero-subtext {
                text-align: center;
                font-size: 1.1rem;
            }
            
            .phone-cta-primary {
                font-size: 1.9rem;
            }
            
            .emergency-container {
                padding: 2rem;
            }
            
            .secondary-cta {
                padding: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 576px) {
            .main-hero {
                padding: 3rem 0 2rem;
            }
            
            .hero-headline {
                font-size: 2rem;
            }
            
            .phone-cta-primary {
                font-size: 1.6rem;
                padding: 1.25rem 2rem;
            }
            
            .emergency-container {
                padding: 1.5rem;
            }
            
            .services-preview {
                padding: 1.5rem;
            }
            
            .secondary-cta {
                padding: 1.5rem;
                margin-top: 3rem;
            }
            
            .secondary-title {
                font-size: 1.6rem;
            }
        }