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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Header and Navigation */
.header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid #dbeafe;
    height: 80px;
    overflow: visible;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    height: 80px;
    position: relative;
    overflow: visible;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-brand h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3a8a;
}

.nav-brand a {
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    position: relative;
}

.nav-links .nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: visible;
    flex-direction: row;
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    max-height: none;
    height: auto;
}

.nav-menu li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2563eb;
    background: #2563eb1A;
}


/* Remove any gaps - overlap slightly */
.dropdown {
    position: relative;
    overflow: visible;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 10001;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #ffffff !important;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    display: none !important;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    min-width: 180px;
    z-index: 10000 !important;
    overflow: hidden;
    padding: 8px 0;
    max-height: 250px;
    overflow-y: auto;
    white-space: nowrap;
    margin-top: -1px;
    padding-top: 9px;
}

/* Ensure dropdown is hidden by default */
.dropdown-menu {
    visibility: hidden !important;
    display: none !important;
}

/* Show dropdown with .show class (controlled by JavaScript) */
.dropdown.show .dropdown-menu,
.dropdown-menu.show {
    visibility: visible !important;
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Fallback CSS hover for basic functionality */
.dropdown:hover .dropdown-menu {
    visibility: visible !important;
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Prevent mobile sections from showing on desktop */
.mobile-only {
    display: none !important;
}

@media (min-width: 768px) {
    .contact-cards {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2rem !important;
    }
    
    .about-content-wrapper {
        grid-template-columns: 2fr 1fr !important;
        align-items: start !important;
        gap: 4rem !important;
    }
    
    .about-features {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .content-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 4rem !important;
    }
    
    .about-content {
        grid-template-columns: calc(40% - 20px) calc(60% + 20px) !important;
        align-items: center !important;
        gap: 4rem !important;
    }
    
    .about-text {
        text-align: left !important;
    }
    
    .about-stats-wrapper {
        display: flex !important;
        justify-content: center !important;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

.dropdown-menu li {
    padding: 0;
    background: #ffffff;
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    color: #374151 !important;
    text-decoration: none;
    border-radius: 0;
    background: #ffffff;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    border: none;
}

.dropdown-menu a:hover {
    background: #2563eb1A !important;
    color: #2563eb !important;
    transform: translateX(2px);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #2563eb;
}

/* Hide mobile-only sections on desktop */
.mobile-only {
    display: none;
}

.phone-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    font-size: 1rem;
}

.phone-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: white;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
    z-index: 1;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
}

.hero-stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-badge {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge.emergency {
    background: rgba(239, 68, 68, 0.9);
}

.hero-badge.available {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    color: #bfdbfe;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.hero-stat {
    padding: 1rem;
}

.hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: #bfdbfe;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-primary {
    background: white;
    color: #2563eb;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.cta-primary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
    background: #1d4ed8;
    color: white;
    border: 2px solid #60a5fa;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* CTA Button Variants */
.cta-call {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.cta-call:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #2563eb66;
}

.cta-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.cta-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.cta-custom {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.cta-custom:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Section CTAs */
.section-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.section-cta p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

/* Contact Main CTA */
.contact-main-cta {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-main-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 500;
}

/* Trust Indicators Section */
.trust-indicators {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #60a5fa;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 6px 15px #2563eb40;
}

.trust-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #1a202c;
}

.trust-text p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1f2937;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: -2rem auto 4rem auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #60a5fa;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 20px #2563eb4D;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #1a202c;
}

.feature-description {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: calc(30% - 20px) calc(70% + 20px);
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 2.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    color: #4a5568;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About Section Flipped Layout */
.about-flipped {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-flipped .about-content {
    grid-template-columns: calc(70% + 20px) calc(30% - 20px);
}

.services-list {
    list-style: none;
    margin-top: 2rem;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.services-list i {
    color: #2563eb;
    font-weight: bold;
}

/* SEO Sections */
.seo-sections {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

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

.seo-section {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.seo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.seo-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a202c;
    position: relative;
}

.seo-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 2px;
}

.seo-content {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.15rem;
}

/* SEO Section with Image */
.seo-section-with-image {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.seo-image {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.seo-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.seo-image img:hover {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, #2563eb0A 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, #1d4ed80A 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.testimonial-card {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.95) 100%);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    text-align: center;
    position: relative;
    margin: 2rem;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: #2563eb;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.testimonials-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-cta p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: none;
    text-align: left;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
}

.faq-question.active {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 500px;
}

.faq-answer p {
    padding: 2rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), transparent);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact .section-title {
    color: white;
    -webkit-text-fill-color: white;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

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

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item p {
    opacity: 0.9;
}

.contact-item a {
    color: white;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Location Map Section */
.location-map {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.location-map .section-title {
    color: #1a202c;
}

.map-container {
    margin: 3rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: saturate(1.1) contrast(1.05);
}

.map-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.map-address {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.map-address i {
    font-size: 1.5rem;
    color: #2563eb;
    background: #2563eb1A;
    padding: 0.75rem;
    border-radius: 50%;
}

.map-address p {
    font-size: 1.1rem;
    color: #4a5568;
    margin: 0;
    font-weight: 500;
}

.directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px #2563eb4D;
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #2563eb66;
    text-decoration: none;
    color: white;
}

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

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a202c, #2d3748);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-main h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white !important;
}

.footer-main p {
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: #cbd5e0;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-info h4,
.footer-areas h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

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

.footer-info li {
    color: #cbd5e0;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.footer-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.footer-areas p {
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    text-align: center;
    color: #cbd5e0;
}

.disclaimer-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #4a5568;
}

.disclaimer-text {
    font-size: 0.875rem;
    color: #a0aec0;
    line-height: 1.5;
    max-width: 800px;
    margin: 0 auto;
}

/* Service Areas Section */
.service-areas {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.area-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #60a5fa;
}

.area-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1rem;
    color: white;
    box-shadow: 0 4px 15px #2563eb40;
}

.area-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
}

.area-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.cta-trust {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Floating Phone Button */
.floating-phone-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 1rem;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 25px #2563eb66;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 60px;
    justify-content: center;
}

.floating-phone-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px #2563eb80;
    text-decoration: none;
    color: white;
}

.phone-text {
    display: none;
}

@media (min-width: 768px) {
    .phone-text {
        display: inline;
    }
    
    .floating-phone-btn {
        border-radius: 25px;
        padding: 0.75rem 1.5rem;
    }
}

/* Testimonials Rating */
.testimonials-rating {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.overall-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-direction: row;
}

.rating-stars {
    display: flex !important;
    gap: 0.25rem;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.testimonials-rating p {
    color: #6b7280;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Remove sticky header on mobile and tablets */
    .header {
        position: static;
    }
    
    /* Touch-friendly navigation */
    .nav-links a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 992px) and (min-width: 769px) {
    /* Hero CTA buttons - keep 3 columns on tablets */
    .hero-cta-buttons {
        grid-template-columns: 1fr 1fr 1fr !important;
        max-width: 800px !important;
        gap: 0.8rem !important;
    }
}

@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
        padding: 1rem;
    }
    
    /* Hero Section Mobile Responsiveness */
    .hero {
        padding: 3rem 1rem !important;
        text-align: center !important;
    }
    
    .hero-content {
        padding: 0 !important;
        max-width: 100% !important;
    }
    
    .hero-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
        min-height: auto !important;
    }
    
    .hero-main {
        max-width: 100% !important;
        text-align: center !important;
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-service,
    .hero-location {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
        max-width: 100% !important;
    }
    
    /* Hero features - stack vertically on mobile */
    .hero-features {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-feature {
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
        padding: 0.75rem 1rem !important;
    }
    
    .hero-stats-card {
        margin: 0 auto !important;
        max-width: 350px !important;
        padding: 1.5rem !important;
    }
    
    /* Hero CTA buttons responsive - single column on mobile */
    .hero-cta-buttons {
        grid-template-columns: 1fr !important;
        max-width: 100% !important;
        gap: 1rem !important;
        padding: 0 1rem !important;
        justify-items: center !important;
    }
    
    /* Fix CTA button centering */
    .hero-cta,
    .cta-buttons {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    .cta-button,
    .cta-primary {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 1rem 1.5rem !important;
        font-size: 1rem !important;
        border-radius: 12px !important;
    }
    
    /* About Section Mobile Responsiveness */
    .about-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        padding: 0 1rem !important;
    }
    
    /* About section grid fixes */
    .about-content > div[style*="grid-template-columns"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    /* About text section */
    .about-text {
        max-width: 100% !important;
        padding: 0 1.5rem !important;
    }
    
    .about-text h2 {
        font-size: 1.75rem !important;
        text-align: center !important;
    }
    
    .about-text p {
        font-size: 1rem !important;
        text-align: center !important;
        max-width: 350px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* About features grid - make responsive */
    .about-text > div[style*="grid-template-columns: repeat(2, 1fr)"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .about-feature p {
        margin-left: 0 !important;
        text-align: center !important;
    }
    
    /* About stats box mobile adjustments */
    .about-stats {
        margin-top: 0 !important;
        padding: 1.5rem !important;
        align-self: stretch !important;
        width: 100% !important;
    }
    
    /* Features Section Mobile Responsiveness */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    .feature-card {
        padding: 2rem 1.5rem !important;
        margin: 0 auto !important;
        max-width: 350px !important;
    }
    
    .feature-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    .feature-title {
        font-size: 1.2rem !important;
    }
    
    /* Section titles mobile responsive */
    .section-title {
        font-size: 1.75rem !important;
        text-align: center !important;
        padding: 0 1rem !important;
    }
    
    /* Service area cards mobile responsive */
    .service-area-card {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
        padding: 2rem 1.5rem !important;
        min-height: 200px !important;
    }
    
    .service-area-card h3 {
        font-size: 1.2rem !important;
        text-align: center !important;
    }
    
    .service-area-card p {
        font-size: 1rem !important;
        text-align: center !important;
    }
    
    .service-area-card .cta-button {
        width: 100% !important;
        max-width: 200px !important;
        margin: 0 auto !important;
        padding: 0.8rem 1.2rem !important;
    }
    
    /* Footer Mobile Responsiveness */
    .footer-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Footer sections mobile adjustments */
    .footer-main h3 {
        font-size: 1.4rem !important;
    }
    
    .footer-services h4,
    .footer-areas h4,
    .footer-info h4 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .mobile-menu-btn {
        display: block;
        order: 2;
    }
    
    .nav-contact {
        order: 3;
        margin-left: auto;
    }
    
    .nav-links {
        order: 4;
        width: 100%;
        display: none;
        margin-top: 1rem;
    }
    
    .nav-links.active {
        display: block;
    }
    
    .nav-links .nav-menu {
        flex-direction: column;
        gap: 0;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 0;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #e2e8f0;
    }
    
    .nav-menu > li:first-child {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }
    
    .nav-menu > li:last-child {
        border-bottom: none;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        border-radius: 0;
    }
    
    /* Mobile menu section headers */
    .mobile-section-header {
        background: #f8fafc;
        color: #4a5568;
        font-weight: 600;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 0.75rem 1.5rem;
        border-bottom: 2px solid #e2e8f0;
        margin: 0;
    }
    
    .mobile-section-items {
        background: white;
    }
    
    .mobile-section-items li {
        border-left: 3px solid transparent;
    }
    
    .mobile-section-items a {
        padding-left: 2rem;
        color: #718096;
        font-size: 0.95rem;
    }
    
    .mobile-section-items a:hover {
        background: #f7fafc;
        border-left-color: #2563eb;
        color: #2563eb;
    }
    
    .mobile-menu-spacer {
        height: 0.75rem;
        background: #f1f5f9;
        border-top: 1px solid #e2e8f0;
        border-bottom: 1px solid #e2e8f0;
    }
    
    /* Hide desktop dropdown functionality in mobile, show mobile sections */
    .dropdown .dropdown-menu {
        display: none !important;
    }
    
    .dropdown-toggle::after {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
    
    /* Mobile section styling */
    .mobile-section-header {
        background: #f8fafc !important;
        color: #4a5568 !important;
        font-weight: 600 !important;
        font-size: 0.875rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        padding: 0.75rem 1.5rem !important;
        border-bottom: 2px solid #e2e8f0 !important;
        margin: 0 !important;
    }
    
    .mobile-section-items a {
        color: #718096 !important;
        font-size: 0.95rem !important;
        padding: 0.75rem 2rem !important;
        display: block !important;
        text-decoration: none !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }
    
    .mobile-section-items a:hover {
        background: #f7fafc !important;
        color: #3182ce !important;
    }
    
    .nav-brand h1 {
        font-size: 1.5rem;
    }
    
    .phone-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 4rem 0 3rem;
        text-align: center;
    }
    
    .hero-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center;
    }
    
    .hero-stats-card {
        margin: 0 auto;
        max-width: 350px;
    }
    
    /* Force stars to be horizontal on mobile */
    .hero-stats-card div[style*="display: flex"] {
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    /* Mobile-specific hero styles */
    .hero h2 {
        font-size: 1.3rem !important;
    }
    
    .hero p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .hero div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }
    
    .hero a[style*="display: inline-flex"] {
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
    }
    
    /* Additional mobile section adjustments */
    .section-header h2 {
        font-size: 2rem !important;
    }
    
    .about-description {
        font-size: 1rem !important;
        padding: 0 1rem !important;
        text-align: left !important;
    }
    
    /* Feature point cards mobile */
    .feature-point {
        padding: 0.75rem !important;
    }
    
    .feature-point h4 {
        font-size: 0.9rem !important;
    }
    
    .feature-point p {
        font-size: 0.75rem !important;
    }
    
    /* Footer contact spacing on mobile */
    .footer-contact p {
        margin-bottom: 0.75rem !important;
        font-size: 0.9rem !important;
    }
    
    /* Footer social icons mobile */
    .footer-social h4 {
        font-size: 1.1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .social-icons {
        flex-direction: row !important;
        justify-content: center !important;
        gap: 1rem !important;
    }
    
    /* General Mobile Layout Fixes */
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem !important;
        margin-bottom: 2.5rem !important;
        text-align: center !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .feature-card {
        padding: 2rem 1.5rem !important;
    }
    
    .feature-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.5rem !important;
    }
    
    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .about-text {
        text-align: center !important;
    }
    
    .about h2 {
        font-size: 2.2rem !important;
    }
    
    .about-stats {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .about-image img {
        height: 250px !important;
        max-width: 100% !important;
    }
    
    /* Contact Section Mobile */
    .contact-info,
    .contact-cards {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .contact-card {
        margin: 0 auto !important;
        max-width: 350px !important;
    }
    
    .contact-card a {
        white-space: normal !important;
        word-break: break-all !important;
        text-align: center !important;
    }
    
    .map-info {
        flex-direction: column !important;
        text-align: center !important;
        gap: 1rem !important;
    }
    
    .map-container {
        height: 300px !important;
    }
    
    /* FAQ Mobile */
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .faq-question {
        font-size: 1.1rem !important;
        padding: 1.5rem !important;
    }
    
    .faq-answer p {
        padding: 1.5rem !important;
        font-size: 1rem !important;
    }
    
    /* CTA Sections Mobile */
    .cta-button.large {
        font-size: 1.1rem !important;
        padding: 1.1rem 2rem !important;
    }
    
    .section-cta p,
    .faq-cta p,
    .contact-main-cta p {
        font-size: 1.1rem !important;
    }
    
    .contact-main-cta {
        padding: 1.5rem !important;
    }
    
    .faq-cta {
        padding: 1.5rem !important;
        margin-top: 2rem !important;
    }
    
    /* Blog Page Mobile Specific */
    .blog-header {
        padding: 3rem 0 2rem !important;
        text-align: center !important;
    }
    
    .blog-header h1 {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .blog-header p {
        font-size: 1.1rem !important;
        padding: 0 1rem !important;
    }
    
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .blog-card {
        margin: 0 auto !important;
        max-width: 400px !important;
    }
    
    .blog-post-header {
        padding: 2rem 0 1.5rem !important;
    }
    
    .blog-post h1 {
        font-size: 2.2rem !important;
        margin-bottom: 1rem !important;
    }
    
    .blog-meta {
        flex-direction: column !important;
        gap: 0.5rem !important;
        align-items: center !important;
    }
    
    .blog-content {
        padding: 0 1rem !important;
    }
    
    .blog-content h2 {
        font-size: 1.8rem !important;
    }
    
    .blog-content h3 {
        font-size: 1.5rem !important;
    }
    
    /* Location & Service Pages Mobile */
    .location-hero,
    .service-hero {
        padding: 3rem 0 2rem !important;
        text-align: center !important;
    }
    
    .location-hero h1,
    .service-hero h1 {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .location-hero p,
    .service-hero p {
        font-size: 1.1rem !important;
        padding: 0 1rem !important;
    }
    
    .breadcrumb-nav {
        padding: 1rem !important;
        font-size: 0.9rem !important;
    }
    
    .breadcrumb-nav a {
        padding: 0.25rem !important;
    }
    
    /* Internal Links Section Mobile */
    .internal-links-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .links-column h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .links-column ul li {
        margin-bottom: 1rem !important;
    }
    
    .links-column a {
        font-size: 0.95rem !important;
        padding: 0.5rem 0 !important;
    }
    
    /* Floating Phone Button Mobile */
    .floating-phone-btn {
        bottom: 15px !important;
        left: 15px !important;
        padding: 12px 16px !important;
        font-size: 13px !important;
    }
    
    .phone-text {
        display: none !important;
    }
    
    /* Hero Mobile Improvements */
    .hero {
        padding: 3rem 0 2rem !important;
        min-height: auto !important;
    }
    
    .hero-content {
        padding: 0 1rem !important;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.4rem !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-description {
        font-size: 1.1rem !important;
        padding: 0 0.5rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Hero rating stars fix */
    .hero-rating {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-rating .stars {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.2rem !important;
    }
    
    /* Rating stars throughout site */
    .rating-stars,
    .testimonial-stars {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.25rem !important;
        align-items: center !important;
    }
    
    .overall-rating {
        flex-direction: row !important;
        gap: 0.75rem !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Force stars to be horizontal with higher specificity */
    .testimonials-rating .rating-stars,
    .rating-stars {
        display: flex !important;
        flex-direction: row !important;
        gap: 0.25rem !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .testimonials-rating .overall-rating,
    .overall-rating {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    /* Fix testimonial stars specifically */
    .testimonial-card .testimonial-stars,
    .testimonial-stars {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.3rem !important;
    }
    
    .testimonial-stars i {
        display: inline-block !important;
    }
    
    /* Trust Grid Mobile */
    .trust-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .trust-item {
        padding: 1rem !important;
    }
    
    /* Areas Grid Mobile */
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
        gap: 1rem !important;
    }
    
    /* Hero Testimonial Mobile */
    .hero-testimonial {
        margin: 1.5rem 0 !important;
        padding: 1rem !important;
    }
    
    /* Final CTA Mobile */
    .cta-content h2 {
        font-size: 2rem !important;
    }
    
    .cta-content p {
        font-size: 1.1rem !important;
    }
    
    /* Testimonials Grid Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .testimonial-card {
        max-width: none !important;
        margin: 0 !important;
    }
    
    /* Service Areas Mobile */
    .service-areas {
        padding: 4rem 0 !important;
    }
    
    /* Trust Indicators Mobile */
    .trust-indicators {
        padding: 3rem 0 !important;
    }
    
    /* Hero Section Mobile - All Pages */
    .hero-content h1,
    .location-hero h1,
    .service-hero h1,
    .blog-post h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        padding: 0 1rem !important;
    }
    
    .hero-content p,
    .location-hero p,
    .service-hero p {
        font-size: 1.1rem !important;
        padding: 0 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Fix stats cards on mobile */
    .hero-stats-card,
    .about-stats {
        padding: 1.5rem !important;
        margin: 1rem auto !important;
        max-width: 100% !important;
    }
    
    /* Hero trust points mobile */
    .hero-trust,
    .cta-trust {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
    }
    
    .cta-trust span {
        display: block !important;
        margin-bottom: 0.5rem !important;
    }
    
    /* Fix container padding on mobile */
    .container {
        padding: 0 1rem !important;
    }
    
    /* Mobile navigation improvements */
    .mobile-menu-btn {
        background: none !important;
        border: none !important;
        color: #333 !important;
        font-size: 1.5rem !important;
        padding: 0.5rem !important;
        cursor: pointer !important;
    }
    
    .nav-links.active {
        display: block !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: white !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1) !important;
        z-index: 1000 !important;
        border-radius: 0 0 8px 8px !important;
    }
    
    .nav-menu {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .nav-menu > li {
        border-bottom: 1px solid #e2e8f0 !important;
    }
    
    .nav-menu > li:last-child {
        border-bottom: none !important;
    }
    
    .nav-menu a {
        display: block !important;
        padding: 1rem 1.5rem !important;
        color: #4a5568 !important;
        text-decoration: none !important;
        border-radius: 0 !important;
        transition: all 0.3s ease !important;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: #f7fafc !important;
        color: #3182ce !important;
    }
    
    /* Footer Mobile Responsiveness */
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    .footer-social .social-icons {
        justify-content: center !important;
        flex-direction: row !important;
        gap: 1rem !important;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .testimonial-card.professional {
        max-width: none !important;
        padding: 1.5rem !important;
    }
    
    /* About stats mobile */
    .about-stats {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    .stat-item {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Ensure hero rating stars stay horizontal on mobile */
    .hero-rating-stars {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.25rem !important;
    }
    
    .features-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Force hero stars horizontal on small mobile */
    .hero-rating-stars {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.25rem !important;
    }
}

/* Floating Phone Button */
.floating-phone-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #2563eb;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 14px;
}

.floating-phone-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  color: white;
  text-decoration: none;
}

.floating-phone-btn i {
  font-size: 16px;
}

.phone-text {
  font-weight: 600;
}



/* Fixed Hero Section Styles */
.hero {
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 4rem 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-rating .stars {
  display: flex;
  gap: 0.2rem;
}

.hero-rating .stars i {
  color: #fbbf24;
  font-size: 1.1rem;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.hero-rating .rating-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.9rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-trust {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 1rem;
  margin: 0;
}

.cta-primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
  font-size: 1.2rem;
}

.cta-primary:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
  color: white;
  text-decoration: none;
}



/* Trust Indicators Section */
.trust-indicators {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.trust-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.trust-text h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 0.25rem;
}

.trust-text p {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Service Areas Section */
.service-areas {
  padding: 6rem 0;
  background: white;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.area-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.area-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.area-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.area-icon i {
  color: white;
  font-size: 1.2rem;
}

.area-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0;
}

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

/* Fixed Professional Testimonials */
.testimonial-card.professional {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  max-width: 400px;
  margin: 0 auto;
}

.testimonial-card.professional:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.testimonial-stars i {
  color: #fbbf24;
  font-size: 1.1rem;
  filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
}

.testimonial-rating {
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 500;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 2rem;
  font-style: italic;
  quotes: '"' '"' ''' ''';
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.author-info {
  flex-grow: 1;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 0.25rem 0;
  line-height: 1.3;
}

.author-info p {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0 0 0.25rem 0;
}

.service-type {
  color: #9ca3af;
  font-size: 0.8rem;
  font-weight: 500;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}



.testimonials-rating {
  text-align: center;
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.8) 0%, rgba(248,250,252,0.8) 100%);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.overall-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-direction: row;
}

.rating-stars {
  display: flex !important;
  gap: 0.25rem;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
}

.rating-stars i {
  color: #fbbf24;
  font-size: 1.5rem;
  filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.rating-number {
  font-size: 2rem;
  font-weight: 700;
  color: #2563eb;
}

.testimonials-rating p {
  color: #6b7280;
  font-size: 1.1rem;
  margin: 0;
}

/* Final CTA Section */
.final-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  margin-bottom: 2rem;
}

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

