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

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

.container {
    max-width: 75rem; /* 1200px */
    margin: 0 auto;
    padding: 0 1.25rem; /* 20px */
}

/* Responsive Images */
img, svg {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: bold;
    color: #1e40af;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #4b5563;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    box-shadow: 0 0.25rem 1rem rgba(30, 64, 175, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    max-width: 75rem;
    margin: 0 auto;
}

/* Logo styling */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.nav-logo h2 {
    color: #ffffff;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #e0e7ff;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
}

.hamburger label {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 1.563rem; /* 25px */
    height: 0.188rem; /* 3px */
    background-color: #ffffff;
    margin: 0.188rem 0; /* 3px */
    transition: 0.3s;
    display: block;
    border-radius: 0.125rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem; /* 12px 24px */
    border-radius: 0.5rem; /* 8px */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-call {
    background-color: #2563eb;
    color: white;
}

.btn-call:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #22c55e;
    transform: translateY(-2px);
}

.btn-emergency {
    background-color: #dc2626;
    color: white;
    font-size: 1.1rem;
    padding: 0.938rem 1.875rem; /* 15px 30px */
}

.btn-emergency:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(30, 64, 175, 0.8), rgba(37, 99, 235, 0.7)), url('attached_assets/generated_images/Professional_AC_business_background_9173f7bb.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Centered hero content */
.hero-content-centered {
    text-align: center;
    max-width: 50rem;
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 75rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.hero h1 {
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #f1f5f9;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-image svg {
    width: 100%;
    height: auto;
    max-width: 25rem; /* 400px */
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-header p {
    color: #e0e7ff;
    font-size: 1.2rem;
}

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

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e40af;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.feature-icon {
    color: #2563eb;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #1e40af;
}

/* Services Grid */
.services-grid {
    padding: 4rem 0;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

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

.service-icon {
    color: #2563eb;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-card h2 {
    color: #1e40af;
    margin-bottom: 1rem;
    text-align: center;
}

.service-card p {
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}

.service-features li:last-child {
    border-bottom: none;
}

/* Quick Contact */
.quick-contact {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.quick-contact h2 {
    color: white;
    margin-bottom: 1rem;
}

.quick-contact p {
    color: #e0e7ff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    color: white;
    backdrop-filter: blur(10px);
}

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

.contact-icon {
    color: #93c5fd;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #e0e7ff;
}

/* About Content */
.about-content {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Mission Vision */
.mission-vision {
    background-color: #f8fafc;
    padding: 4rem 0;
}

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

.mission-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mission-icon {
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 4rem 0;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e40af;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-number {
    font-size: 3rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

/* Team Expertise */
.team-expertise {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.team-expertise h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e40af;
}

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

.expertise-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.expertise-icon {
    color: #2563eb;
    margin-bottom: 1rem;
}

.expertise-card h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #1e40af;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #2563eb;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: bold;
    color: #1e40af;
    margin-top: 1rem;
}

/* Contact Sections */
.contact-main {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
}

.contact-icon {
    color: #2563eb;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin-bottom: 0.25rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #6b7280;
}

.contact-details a {
    color: #2563eb;
    font-weight: 600;
}

.contact-details a:hover {
    color: #1d4ed8;
}

/* Service Areas */
.service-areas h2 {
    color: #1e40af;
    margin-bottom: 1rem;
}

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

.area-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.area-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.area-item h4 {
    color: #1e40af;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

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

.service-note {
    background: #eff6ff;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
    margin-top: 2rem;
}

/* Map Section */
.map-section {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.map-section h2 {
    text-align: center;
    color: #1e40af;
    margin-bottom: 1rem;
}

.map-section > .container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #6b7280;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.map-details {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-details h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.map-details p {
    margin-bottom: 0.5rem;
}

.map-details a {
    color: #2563eb;
    font-weight: 600;
}

.directions {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.directions h4 {
    color: #1e40af;
    margin-bottom: 1rem;
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 3rem 0;
}

.emergency-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.emergency-icon {
    color: #fef2f2;
    flex-shrink: 0;
}

.emergency-text h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.emergency-text p {
    color: #fecaca;
    margin: 0;
}

/* Service Guarantee */
.service-guarantee {
    background-color: #f8fafc;
    padding: 4rem 0;
}

.service-guarantee h2 {
    text-align: center;
    color: #1e40af;
    margin-bottom: 3rem;
}

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

.guarantee-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.guarantee-icon {
    color: #2563eb;
    margin-bottom: 1rem;
}

.guarantee-item h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

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

.service-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.service-cta p {
    color: #e0e7ff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Contact Benefits */
.contact-benefits {
    padding: 4rem 0;
}

.contact-benefits h2 {
    text-align: center;
    color: #1e40af;
    margin-bottom: 3rem;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.benefit-icon {
    color: #2563eb;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

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

.contact-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #e0e7ff;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #1e40af;
    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-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #e0e7ff;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e0e7ff;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #3b82f6;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #e0e7ff;
    margin: 0;
}

/* Shop Image */
.shop-image-section {
    margin: 3rem 0;
}

.shop-image-container {
    text-align: center;
    margin: 2rem 0;
}

.shop-image {
    width: 100%;
    max-width: 31.25rem; /* 500px */
    height: 18.75rem; /* 300px */
    object-fit: cover;
    border-radius: 0.75rem; /* 12px */
    box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.1);
    border: 0.188rem solid #e5e7eb; /* 3px */
}

.shop-image-caption {
    margin-top: 1rem;
    font-style: italic;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 48rem) { /* 768px */
    body {
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 0.75rem; /* 12px */
    }
    
    /* Typography adjustments for mobile */
    h1 {
        font-size: 1.75rem; /* Reduced from 2.5rem */
    }
    
    h2 {
        font-size: 1.5rem; /* Reduced from 2rem */
    }
    
    h3 {
        font-size: 1.25rem; /* Reduced from 1.5rem */
    }
    
    h4 {
        font-size: 1.125rem; /* Reduced from 1.25rem */
    }
    
    /* Navigation adjustments */
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .nav-logo h2 {
        font-size: 1.25rem; /* Reduced from 1.5rem */
        color: #ffffff;
    }
    
    .logo-icon {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        width: 14rem; /* Smaller width */
        max-width: 80vw; /* Smaller max width */
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.15);
        border: 1px solid #e2e8f0;
        flex-direction: column;
        padding: 0.5rem 0; /* Smaller padding */
        z-index: 999;
        border-radius: 0.5rem; /* Smaller border radius */
        backdrop-filter: blur(15px);
        overflow: hidden;
    }
    
    .mobile-menu-toggle:checked ~ .navbar .nav-container .nav-menu {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }
    
    .nav-menu .nav-item {
        width: 100%;
        text-align: left;
        margin: 0;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 0.75rem 1rem; /* Smaller padding */
        font-size: 0.9rem; /* Smaller font */
        font-weight: 500;
        color: #374151;
        transition: all 0.3s ease;
        position: relative;
        border-radius: 0.25rem;
        margin: 0.125rem 0.5rem; /* Small margins */
        width: calc(100% - 1rem); /* Adjust width for margins */
    }
    
    .nav-link:hover {
        background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
        color: #2563eb;
        transform: translateX(0.25rem);
    }
    
    .nav-link.active {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
        color: #ffffff;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-0.5rem);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hamburger {
        display: flex;
        padding: 0.5rem;
        border-radius: 0.375rem;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .hamburger:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: scale(1.05);
    }
    
    .hamburger label {
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0.25rem;
    }
    
    /* Hero section adjustments */
    .hero {
        padding: 2rem 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content-centered {
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-image svg {
        max-width: 18.75rem; /* 300px - smaller on mobile */
    }
    
    /* Button adjustments for mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn {
        width: 100%;
        max-width: 18.75rem; /* 300px */
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Grid layouts for mobile */
    .features-grid,
    .mission-grid,
    .expertise-grid,
    .testimonials-grid,
    .guarantee-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .map-info {
        grid-template-columns: 1fr;
    }
    
    /* Emergency banner mobile adjustments */
    .emergency-banner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* Service areas mobile grid */
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(9.375rem, 1fr)); /* 150px */
        gap: 0.75rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    /* Shop image mobile adjustments */
    .shop-image {
        height: 15.625rem; /* 250px */
        max-width: 100%;
    }
    
    /* Padding adjustments for mobile sections */
    .hero,
    .features,
    .about-content,
    .mission-vision,
    .why-choose-us,
    .team-expertise,
    .testimonials,
    .contact-main,
    .map-section,
    .emergency-contact,
    .service-guarantee,
    .service-cta,
    .contact-benefits,
    .contact-cta {
        padding: 2rem 0;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    /* Card padding adjustments */
    .feature-card,
    .service-card,
    .mission-card,
    .expertise-card,
    .testimonial-card,
    .guarantee-item,
    .benefit-item {
        padding: 1.5rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    /* Better mobile navigation positioning */
    .navbar {
        position: relative;
    }
    
    .nav-container {
        position: relative;
    }
}

/* Extra small devices */
@media (max-width: 30rem) { /* 480px */
    body {
        font-size: 0.875rem;
    }
    
    .container {
        padding: 0 0.938rem; /* 15px */
    }
    
    .nav-container {
        padding: 0.75rem 0.938rem;
    }
    
    .nav-logo h2 {
        font-size: 1.1rem;
    }
    
    /* Further reduced typography for very small screens */
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
    
    h3 {
        font-size: 1.125rem;
    }
    
    h4 {
        font-size: 1rem;
    }
    
    /* Smaller buttons for very small screens */
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        max-width: 16.25rem; /* 260px */
    }
    
    /* Reduced padding for cards */
    .feature-card,
    .service-card,
    .mission-card,
    .expertise-card,
    .testimonial-card,
    .guarantee-item,
    .benefit-item {
        padding: 1.25rem;
    }
    
    .contact-method {
        padding: 0.875rem;
    }
    
    .emergency-banner {
        padding: 1.25rem;
    }
    
    .map-details,
    .directions {
        padding: 1.25rem;
    }
    
    /* Smaller shop image for very small screens */
    .shop-image {
        height: 12.5rem; /* 200px */
    }
    
    /* Reduced section padding */
    .hero,
    .features,
    .about-content,
    .mission-vision,
    .why-choose-us,
    .team-expertise,
    .testimonials,
    .contact-main,
    .map-section,
    .emergency-contact,
    .service-guarantee,
    .service-cta,
    .contact-benefits,
    .contact-cta {
        padding: 1.5rem 0;
    }
    
    .page-header {
        padding: 1.5rem 0;
    }
    
    /* Smaller icons and images */
    .hero-image svg {
        max-width: 15.625rem; /* 250px */
    }
    
    .feature-icon svg,
    .service-icon svg,
    .mission-icon svg,
    .expertise-icon svg {
        width: 2.5rem; /* 40px instead of default larger sizes */
        height: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cta-buttons,
    .quick-contact-buttons,
    .emergency-contact,
    footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
    
    .service-card,
    .feature-card {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles for Better Accessibility */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .feature-card,
    .service-card,
    .mission-card {
        border: 2px solid #000;
    }
    
    .btn {
        border: 2px solid currentColor;
    }
}
