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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Emergency Banner */
.emergency-banner {
    background: linear-gradient(45deg, #ff4444, #cc0000);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-weight: bold;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 1001;
    animation: pulse 2s infinite;
}

.emergency-banner a {
    color: white;
    text-decoration: none;
    border-bottom: 1px solid white;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Top Contact Bar */
.top-contact-bar {
    background: #2c3e50;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.contact-info a:hover {
    color: #3498db;
}

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

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

.company-name h1 {
    font-size: 1.8em;
    margin-bottom: 2px;
    color: #2c3e50;
}

.company-name h1 a {
    color: #2c3e50;
    text-decoration: none;
}

.company-name .tagline {
    font-size: 0.9em;
    color: #7f8c8d;
    margin: 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-links li {
    position: relative;
}

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

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

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 600px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-section h4 {
    color: #2c3e50;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #3498db;
}

.dropdown-section a {
    display: block;
    padding: 8px 0;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s, padding-left 0.3s;
}

.dropdown-section a:hover {
    color: #3498db;
    padding-left: 10px;
}

/* Mobile CTA */
.mobile-cta {
    display: none;
    margin-top: 20px;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.cta-button.primary {
    background: #e74c3c;
}

.cta-button.primary:hover {
    background: #c0392b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-contact-bar {
        padding: 5px 0;
    }
    
    .contact-info {
        justify-content: center;
        text-align: center;
        gap: 10px;
    }
    
    .contact-info span {
        font-size: 12px;
    }
    
    .nav-wrapper {
        padding: 10px 0;
    }
    
    .company-name h1 {
        font-size: 1.4em;
    }
    
    .company-name .tagline {
        font-size: 0.8em;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .nav-links a {
        padding: 15px 0;
        font-size: 16px;
    }
    
    .dropdown-menu {
        position: static;
        min-width: auto;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        background: #f8f9fa;
        margin-top: 10px;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-section {
        padding: 15px;
        border-bottom: 1px solid #ddd;
    }
    
    .dropdown-section:last-child {
        border-bottom: none;
    }
    
    .dropdown-section h4 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .dropdown-section a {
        padding: 10px 0;
        font-size: 15px;
    }
    
    .mobile-cta {
        display: block;
        text-align: center;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 15px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-info {
        flex-direction: column;
        gap: 5px;
    }
    
    .company-name h1 {
        font-size: 1.2em;
    }
    
    .company-name .tagline {
        font-size: 0.75em;
    }
    
    .nav-menu {
        width: 90%;
    }
}

.contact-info {
    text-align: right;
}

.phone-number {
    color: #ffd700;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
}

.phone-label {
    display: block;
    font-size: 0.8em;
    margin-bottom: 3px;
}

/* Navigation Styles */
.main-nav {
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: white;
    text-decoration: none;
    padding: 12px 18px;
    display: block;
    transition: background 0.3s;
}

.main-nav a:hover {
    background: rgba(255,255,255,0.2);
}

.emergency-btn {
    background: #ff4444 !important;
    border-radius: 5px;
    font-weight: bold;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1e3c72;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero-banner-new.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

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

.cta-button {
    display: inline-block;
    background: #ff4444;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #cc3333;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.service-card h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

/* Features Section */
.features {
    background: #f8f9fa;
    padding: 60px 0;
}

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

.feature-item {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #1e3c72;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5em;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 30px 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1e3c72;
}

.submit-btn {
    background: #1e3c72;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #2a5298;
}/* Footer Styles */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
}

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

.footer-section h3,
.footer-section h4 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.2em;
}

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

.footer-section ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li i {
    color: #3498db;
    width: 16px;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #3498db;
}

.map-container {
    margin-bottom: 20px;
}

.map-container iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 8px;
}

.contact-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-details i {
    color: #3498db;
    width: 16px;
}

.emergency-cta {
    background: #e74c3c;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 15px;
}

.emergency-cta p {
    margin-bottom: 10px;
    font-weight: bold;
}

.emergency-button {
    display: inline-block;
    background: #c0392b;
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.emergency-button:hover {
    background: #a93226;
    color: white !important;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9em;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-links a {
    color: #ecf0f1;
    text-decoration: none;
    padding: 5px 10px;
    border: 1px solid #34495e;
    border-radius: 4px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #3498db;
    border-color: #3498db;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* Additional Styles */
.service-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
}

.breadcrumb a {
    color: #1e3c72;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.content-section {
    padding: 50px 0;
}

.content-section h2 {
    color: #1e3c72;
    margin-bottom: 20px;
    font-size: 2em;
}

.content-section h3 {
    color: #333;
    margin: 30px 0 15px;
    font-size: 1.4em;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-section ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

/* Testimonials */
.testimonial {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.testimonial-author {
    font-weight: bold;
    color: #1e3c72;
}

/* Emergency Banner */
.emergency-banner {
    background: #ff4444;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-weight: bold;
}

.emergency-banner a {
    color: white;
    text-decoration: none;
}

/* Location Pages */
.location-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
}

.location-info h3 {
    color: #1e3c72;
    margin-bottom: 15px;
}

/* Service Pages */
.service-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 30px 0;
}

.service-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-sidebar {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    height: fit-content;
}

@media (max-width: 768px) {
    .service-details {
        grid-template-columns: 1fr;
    }
}



/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin: 40px 0;
}

.testimonials-section .section-title {
    text-align: center;
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
}

.testimonials-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #3498db;
    border-radius: 2px;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4em;
    color: #3498db;
    font-family: serif;
    opacity: 0.3;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #ffd700;
    font-size: 1.2em;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonial-author strong {
    display: block;
    color: #2c3e50;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.9em;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.testimonial-prev,
.testimonial-next {
    background: #3498db;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #2980b9;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background: #3498db;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonial-content {
        padding: 25px;
        margin: 0 10px;
    }
    
    .testimonials-section .section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }
    
    .testimonial-text {
        font-size: 1em;
    }
    
    .testimonial-prev,
    .testimonial-next {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }
}


/* Services Page Styles */
.services-grid {
    margin: 40px 0;
}

.services-grid h2 {
    color: #2c3e50;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #ecf0f1;
}

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

.service-icon {
    font-size: 3em;
    color: #3498db;
    margin-bottom: 20px;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.service-card h3 a {
    color: #2c3e50;
    text-decoration: none;
}

.service-card h3 a:hover {
    color: #3498db;
}

.service-card p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.service-link:hover {
    color: #2980b9;
}

.service-benefits {
    margin: 60px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
}

.service-benefits h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
}

.benefit-item i {
    font-size: 2.5em;
    color: #3498db;
    margin-bottom: 15px;
}

.benefit-item h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

.services-intro {
    text-align: center;
    margin-bottom: 40px;
}

.services-intro h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 1.1em;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}


/* Enhanced Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin: 60px 0;
}

.testimonials-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 2.5em;
}

.testimonials-section h2 i {
    color: #ffd700;
    margin-right: 10px;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.2em;
    margin-bottom: 50px;
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    display: none;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 0 20px;
    border: 1px solid #ecf0f1;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-content .stars {
    text-align: center;
    margin-bottom: 25px;
}

.testimonial-content .stars i {
    color: #ffd700;
    font-size: 1.5em;
    margin: 0 2px;
}

.testimonial-content p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-style: italic;
}

.customer-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.customer-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #3498db;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.customer-details h4 {
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.customer-details span {
    color: #7f8c8d;
    font-size: 0.9em;
    display: block;
    margin-bottom: 8px;
}

.service-type {
    background: #3498db;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8em;
    font-weight: bold;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.nav-btn {
    background: #3498db;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2em;
}

.nav-btn:hover {
    background: #2980b9;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #3498db;
    transform: scale(1.3);
}

.testimonials-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.testimonials-cta h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.8em;
}

.testimonials-cta p {
    color: #7f8c8d;
    margin-bottom: 25px;
    font-size: 1.1em;
}

.cta-button.large {
    font-size: 1.3em;
    padding: 15px 35px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 30px 20px;
        margin: 0 10px;
    }
    
    .customer-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .customer-photo {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-navigation {
        gap: 20px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1em;
    }
}


/* Breadcrumb Navigation */
.breadcrumb {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.breadcrumb span {
    color: #6c757d;
    margin: 0 8px;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Performance Optimizations */
img {
    max-width: 100%;
    height: auto;
    loading: lazy;
}

/* Preload critical resources */
.hero {
    background-attachment: fixed;
}

/* Optimize font loading */
@font-face {
    font-family: 'Arial';
    font-display: swap;
}

/* Reduce layout shift */
.service-card img {
    aspect-ratio: 16/9;
    object-fit: cover;
}

.customer-photo {
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Improve Core Web Vitals */
.testimonial-card {
    contain: layout style paint;
}

.service-card {
    contain: layout style paint;
}

/* Add focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #3498db;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .testimonials-section,
    .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}


/* Enhanced Grid Layouts */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

/* Service Card Enhancements */
.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
}

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

.service-image-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.service-image-link img {
    transition: transform 0.3s ease;
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.service-content h3 i {
    color: #3498db;
    margin-right: 10px;
}

.service-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Feature Item Enhancements */
.feature-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: #3498db;
}

.feature-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2em;
}

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

/* Location Cards */
.location-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #ecf0f1;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.location-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.location-card h3 a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.location-card h3 a:hover {
    color: #2980b9;
}

.location-card p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Responsive Grid Adjustments */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .feature-item {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 15px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .feature-item {
        padding: 20px;
    }
}


/* FAQ Section Styles */
.faq-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq-section h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 2.5em;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 50px;
    font-size: 1.2em;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    color: #2c3e50;
    margin: 0;
    font-size: 1.1em;
    flex: 1;
}

.faq-question h3 i {
    color: #3498db;
    margin-right: 10px;
}

.faq-toggle {
    font-size: 1.5em;
    color: #3498db;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-answer.active {
    padding: 25px;
    max-height: 200px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-cta h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.faq-cta p {
    color: #7f8c8d;
    margin-bottom: 25px;
}

/* Legal Pages Styles */
.page-header {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.page-header h1 i {
    margin-right: 15px;
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.9;
}

.privacy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.last-updated {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #3498db;
}

.privacy-section,
.terms-section {
    margin-bottom: 40px;
}

.privacy-section h2,
.terms-section h2 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.privacy-section h3,
.terms-section h3 {
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-section ul,
.terms-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-section li,
.terms-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-info h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info a {
    color: #3498db;
    text-decoration: none;
}

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

.privacy-cta,
.terms-cta {
    text-align: center;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.privacy-cta h3,
.terms-cta h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.privacy-cta p,
.terms-cta p {
    color: #7f8c8d;
    margin-bottom: 25px;
}

/* Responsive Design for FAQ and Legal Pages */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer.active {
        padding: 20px;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .page-header h1 {
        font-size: 2em;
    }
    
    .privacy-content,
    .terms-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .faq-question h3 {
        font-size: 1em;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-answer.active {
        padding: 15px;
    }
    
    .page-header h1 {
        font-size: 1.8em;
    }
}


/* Mobile-Responsive Header Styles */

/* Top Contact Bar */
.top-contact-bar {
    background: #2c3e50;
    color: white;
    padding: 8px 0;
    font-size: 0.9em;
}

.top-contact-bar .container {
    display: flex;
    justify-content: center;
}

.contact-info {
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item i {
    color: #3498db;
}

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

.contact-item a:hover {
    color: #3498db;
}

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

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

/* Company Name */
.company-name h1 {
    font-size: 1.8em;
    margin: 0;
    color: #2c3e50;
}

.company-name h1 a {
    text-decoration: none;
    color: inherit;
}

.company-name .tagline {
    font-size: 0.8em;
    color: #7f8c8d;
    margin: 2px 0 0 0;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu-header {
    display: none;
}

.mobile-contact-info {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 15px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: #2c3e50;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #3498db;
}

/* Desktop Phone CTA */
.desktop-phone-cta {
    display: flex;
}

.phone-cta-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #3498db;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(52, 152, 219, 0.3);
}

.phone-cta-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.phone-cta-btn i {
    font-size: 1.2em;
}

.phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.phone-text strong {
    font-size: 1.1em;
}

.phone-text small {
    font-size: 0.8em;
    opacity: 0.9;
}

.mobile-cta {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Top Contact Bar Mobile */
    .contact-info {
        gap: 15px;
        font-size: 0.8em;
    }
    
    .contact-item.hours {
        display: none;
    }
    
    /* Mobile Menu Toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide Desktop Elements */
    .desktop-phone-cta {
        display: none;
    }
    
    /* Mobile Navigation Menu */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        transition: right 0.3s ease;
        z-index: 1002;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #eee;
        background: #f8f9fa;
    }
    
    .nav-menu-header h3 {
        margin: 0;
        color: #2c3e50;
        font-size: 1.2em;
    }
    
    .close-menu {
        background: none;
        border: none;
        font-size: 1.5em;
        color: #2c3e50;
        cursor: pointer;
        padding: 5px;
    }
    
    /* Mobile Contact Info */
    .mobile-contact-info {
        display: block;
        padding: 20px;
        background: #f8f9fa;
        border-bottom: 1px solid #eee;
    }
    
    .mobile-phone-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #3498db;
        color: white;
        padding: 12px 15px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        margin-bottom: 10px;
        transition: background 0.3s ease;
    }
    
    .mobile-phone-btn:hover {
        background: #2980b9;
    }
    
    .mobile-hours {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #7f8c8d;
        font-size: 0.9em;
    }
    
    /* Mobile Navigation Links */
    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    
    .nav-links a {
        padding: 15px 20px;
        justify-content: space-between;
    }
    
    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 400px;
    }
    
    .dropdown-menu a {
        padding: 12px 40px;
        font-size: 0.9em;
    }
    
    /* Mobile CTA */
    .mobile-cta {
        display: block;
        padding: 20px;
        border-top: 1px solid #eee;
    }
    
    .mobile-cta .cta-button {
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 1.1em;
        font-weight: bold;
    }
    
    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1001;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Company Name Mobile */
    .company-name h1 {
        font-size: 1.4em;
    }
    
    .company-name .tagline {
        font-size: 0.7em;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile */
    .nav-menu {
        width: 280px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .company-name h1 {
        font-size: 1.2em;
    }
    
    .company-name .tagline {
        display: none;
    }
    
    .nav-container {
        padding: 10px 0;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .nav-menu,
    .mobile-menu-overlay,
    .hamburger-line,
    .dropdown-menu {
        transition: none;
    }
}

/* Focus States for Accessibility */
.mobile-menu-toggle:focus,
.close-menu:focus,
.nav-links a:focus,
.phone-cta-btn:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

