/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Location Links Styling */
.location-link {
    color: #e53e3e;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.location-link:hover {
    color: #c53030;
    border-bottom-color: #c53030;
}

/* Special styling for location links in hero section (white text areas) */
.hero-text .location-link {
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.hero-text .location-link:hover {
    color: #f7fafc;
    border-bottom-color: #fff;
}

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

/* Header Styles */
.top-header {
    background: #1a365d;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: none;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 10px;
        font-size: 12px;
    }
    
    .contact-info span {
        white-space: normal;
        overflow: visible;
        text-overflow: none;
    }
    
    .top-header {
        padding: 15px 0;
    }
}

.phone-btn {
    background: #e53e3e;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: #c53030;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #e53e3e;
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-mobile-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 1.1rem;
    color: #cbd5e0;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.badge i {
    font-size: 1.5rem;
    color: #f7fafc;
}

.badge span {
    font-weight: 600;
    font-size: 0.9rem;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(229, 62, 62, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

/* Lead Form */
.hero-form {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
}

.form-container {
    padding: 40px 35px;
}

.form-container h3 {
    color: #1a365d;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-container p {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.lead-form .form-group {
    margin-bottom: 20px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.btn-form {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 10px;
}

.form-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: #666;
    font-size: 0.85rem;
}

.form-guarantee i {
    color: #38a169;
}

/* Statistics Section */
.stats-section {
    background: #f7fafc;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e53e3e;
    margin-bottom: 10px;
}

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

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

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

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a365d;
    margin-bottom: 20px;
}

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

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-icon {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #4a5568;
}

.service-card ul li i {
    color: #38a169;
    font-size: 0.9rem;
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 100px 0;
}

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

.feature-item {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-icon {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.review-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: #ffd700;
    font-size: 1.5rem;
}

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

.testimonial-card {
    background: #f8fafc;
    padding: 35px 30px;
    border-radius: 20px;
    border-left: 5px solid #e53e3e;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-avatar {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.customer-details h4 {
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 2px;
}

.customer-details p {
    color: #666;
    font-size: 0.9rem;
}

.rating {
    display: flex;
    gap: 3px;
}

.rating i {
    color: #ffd700;
    font-size: 1rem;
}

.testimonial-content p {
    color: #4a5568;
    line-height: 1.7;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 100px 0;
}

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

.contact-content.centered-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-content.centered-form .contact-form-container {
    max-width: 600px;
    width: 100%;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.2rem;
    color: #cbd5e0;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    font-size: 1.2rem;
    color: #e53e3e;
    min-width: 50px;
    text-align: center;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-item p {
    color: #cbd5e0;
    line-height: 1.6;
}

.emergency-notice {
    background: rgba(229, 62, 62, 0.1);
    border: 1px solid rgba(229, 62, 62, 0.3);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.emergency-notice i {
    color: #feb2b2;
    font-size: 1.5rem;
    margin-top: 3px;
}

.emergency-notice p {
    color: #fed7d7;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.contact-form-container h3 {
    color: #1a365d;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Ensure all form elements have consistent spacing */
.contact-form .form-group,
.contact-form .form-row {
    margin-bottom: 20px;
}

.contact-form .form-group:last-of-type {
    margin-bottom: 25px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    color: #333;
    box-sizing: border-box;
}

/* Service Address field styling */
.contact-form .form-group input[placeholder="Service Address*"] {
    border: 2px solid #e53e3e;
    background: #fff;
    font-weight: 500;
}

.contact-form .form-group input[placeholder="Service Address*"]:focus {
    border-color: #c53030;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

/* Service Address field highlighting */
.contact-form .form-group input[placeholder="Service Address*"] {
    border: 2px solid #e53e3e;
    background: #fff;
    font-weight: 500;
}

.contact-form .form-group input[placeholder="Service Address*"]:focus {
    border-color: #c53030;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
}

/* Footer */
.footer {
    background: #1a202c;
    color: #cbd5e0;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    line-height: 1.7;
    color: #a0aec0;
}

.footer-section h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #e53e3e;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #a0aec0;
}

.footer-contact i {
    color: #e53e3e;
    width: 20px;
}

/* Footer Contact Info */
.footer-contact-info {
    margin-top: 20px;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-contact-info i {
    color: #e53e3e;
    width: 16px;
    flex-shrink: 0;
}

/* Footer Contact Details */
.footer-contact-details {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border-left: 3px solid #e53e3e;
}

.footer-contact-item strong {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact-item strong::before {
    content: "📞";
    font-size: 0.8rem;
}

.footer-contact-item:nth-child(2) strong::before {
    content: "✉️";
}

.footer-contact-item:nth-child(3) strong::before {
    content: "📍";
}

.footer-contact-item:nth-child(4) strong::before {
    content: "🕒";
}

.footer-contact-item span {
    color: #cbd5e0;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-left: 20px;
}

.footer-contact-item.emergency-item {
    background: rgba(229, 62, 62, 0.1);
    border-left-color: #fff;
}

.footer-contact-item.emergency-item strong {
    color: #fed7d7;
}

.footer-contact-item.emergency-item span {
    color: #fed7d7;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #718096;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #718096;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e53e3e;
}

/* Additional Mobile Styles */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    .top-header {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text h2 {
        font-size: 1.3rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Focus styles for accessibility */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #e53e3e;
    outline-offset: 2px;
}

/* Animation classes */
.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Form error styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

/* Popup styles */
.popup-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px 0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 0;
}

.popup-header h3 {
    color: #1a365d;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-header h3 i {
    color: #e53e3e;
}

.popup-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close:hover {
    color: #e53e3e;
}

.popup-body {
    padding: 30px;
}

.popup-actions {
    margin-top: 20px;
    text-align: center;
}

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

/* Service Page Specific Styles */
.service-hero {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.service-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.highlight-item i {
    color: #e53e3e;
    font-size: 1.2rem;
}

/* Emergency Hero */
.emergency-hero {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.emergency-badge {
    background: rgba(255,255,255,0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.emergency-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.emergency-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.emergency-feature i {
    color: #fff3cd;
    font-size: 1.2rem;
}

.btn-emergency-large {
    background: #fff;
    color: #e53e3e;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.btn-emergency-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.emergency-note {
    margin-top: 20px;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

.emergency-cta {
    margin-top: 40px;
}

/* Service Content Layout */
.service-content {
    padding: 80px 0;
    background: #f8fafc;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-main {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-article h2 {
    color: #1a365d;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.service-article h3 {
    color: #1a365d;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
}

.service-article h4 {
    color: #1a365d;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 15px 0;
}

.service-article p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Content Lists */
.content-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.6;
}

.content-list li::before {
    content: "•";
    color: #e53e3e;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Process Steps */
.process-steps {
    margin: 30px 0;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 10px 0;
    color: #1a365d;
    font-size: 1.2rem;
}

.step-content p {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
}

/* Material Cards */
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.material-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #e53e3e;
}

.material-card h4 {
    color: #1a365d;
    margin: 0 0 10px 0;
}

.material-card p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

/* Inspection Types */
.inspection-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.inspection-card {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border-top: 4px solid #e53e3e;
    text-align: center;
}

.inspection-card i {
    font-size: 2.5rem;
    color: #e53e3e;
    margin-bottom: 15px;
}

.inspection-card h4 {
    color: #1a365d;
    margin: 0 0 15px 0;
}

.inspection-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Repair Types */
.repair-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.repair-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.repair-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.repair-card i {
    font-size: 2.5rem;
    color: #e53e3e;
    margin-bottom: 15px;
}

.repair-card h4 {
    color: #1a365d;
    margin: 0 0 15px 0;
}

.repair-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Alert Boxes */
.alert-box {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
    align-items: flex-start;
}

.emergency-alert {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 5px solid #e53e3e;
}

.emergency-alert i {
    color: #e53e3e;
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.emergency-alert h3 {
    color: #856404;
    margin: 0 0 8px 0;
    font-size: 1.2rem;
}

.emergency-alert p {
    color: #856404;
    margin: 0;
    line-height: 1.6;
}

/* Sidebar Styles */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.sidebar-card.emergency-card {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    text-align: center;
}

.sidebar-card h3 {
    color: #1a365d;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.sidebar-card.emergency-card h3 {
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-form input,
.sidebar-form select,
.sidebar-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sidebar-form input:focus,
.sidebar-form select:focus,
.sidebar-form textarea:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.btn-emergency {
    background: #fff;
    color: #e53e3e;
    padding: 15px 25px;
    font-weight: 700;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin: 15px 0;
}

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

.emergency-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

/* Navigation Active State */
.nav-links a.active {
    color: #e53e3e;
    font-weight: 600;
}

/* Emergency Button in Header */
.emergency-btn {
    background: #fff !important;
    color: #e53e3e !important;
    animation: pulse 2s infinite;
}

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

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.benefit-item {
    background: #f8fafc;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #e53e3e;
}

.benefit-item h4 {
    color: #1a365d;
    margin: 0 0 10px 0;
}

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

/* Warning Signs List */
.warning-signs {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.warning-signs li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 15px;
    background: #fff3cd;
    border-radius: 8px;
}

.warning-signs li i {
    color: #e53e3e;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Additional Lists */
.process-list {
    padding-left: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.process-list li {
    margin-bottom: 15px;
}

.inspection-timing {
    list-style: none;
    padding: 0;
}

.inspection-timing li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 3px solid #e53e3e;
}

.report-contents {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.report-contents li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 15px;
    background: #f0fff4;
    border-radius: 8px;
    border-left: 4px solid #38a169;
}

.report-contents li i {
    color: #38a169;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #4a5568;
}

.checklist li i {
    color: #38a169;
    font-size: 0.9rem;
}

/* Why Choose List */
.why-choose-list {
    list-style: none;
    padding: 0;
}

.why-choose-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #4a5568;
}

.why-choose-list li i {
    color: #38a169;
    font-size: 0.9rem;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    font-size: 0.9rem;
}

.contact-info-sidebar p {
    margin-bottom: 8px;
    color: #4a5568;
}

/* Area List */
.area-list {
    list-style: none;
    padding: 0;
}

.area-list li {
    padding: 5px 0;
    color: #a0aec0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.area-list li:last-child {
    border-bottom: none;
}

/* Emergency Contact Item */
.emergency-contact {
    border: 2px solid #e53e3e !important;
    background: rgba(229, 62, 62, 0.05) !important;
}

.emergency-contact i {
    color: #e53e3e !important;
    animation: pulse 2s infinite;
}

.emergency-contact h4 {
    color: #e53e3e !important;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-highlights,
    .emergency-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .materials-grid,
    .inspection-types,
    .repair-types,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero-content h1,
    .emergency-hero h1 {
        font-size: 2.2rem;
    }
    
    .content-main {
        padding: 25px;
    }
    
    .sidebar-card {
        padding: 25px 20px;
    }
    
    /* Footer Mobile Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }
    
    .footer-contact-details {
        gap: 12px;
    }
    
    .footer-contact-item {
        padding: 10px;
    }
    
    .footer-contact-item span {
        margin-left: 16px;
        font-size: 0.8rem;
    }
    
    /* Contact Form Mobile Responsive */
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .contact-form-container h3 {
        font-size: 1.5rem;
    }
}