/* World Lock Smith - Professional Locksmith Website Styles */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* Prevent horizontal scroll on mobile */
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    /* Prevent horizontal scroll */
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Container with strict width control */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    /* Ensure no overflow */
    width: 100%;
    box-sizing: border-box;
}

/* Emergency Bar */
.emergency-bar {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 12px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    animation: pulse 2s infinite;
    /* Ensure no overflow */
    max-width: 100vw;
    box-sizing: border-box;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.emergency-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.emergency-text {
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

.emergency-phone {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.emergency-phone:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

/* Header */
.main-header {
    background: linear-gradient(135deg, #1e3a8a, #3730a3);
    color: white;
    padding: 20px 0;
    margin-top: 60px;
    position: sticky;
    top: 60px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /* Ensure no overflow */
    width: 100%;
    max-width: 100vw;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-size: 28px;
    margin-bottom: 5px;
    white-space: nowrap;
}

.tagline {
    font-size: 14px;
    opacity: 0.9;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.main-nav a:hover {
    border-bottom-color: #fbbf24;
    transform: translateY(-2px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.language-toggle {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
}

.header-phone {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 12px 20px;
    background: #fbbf24;
    color: #1e3a8a;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-phone:hover {
    background: #f59e0b;
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    /* Ensure no horizontal overflow */
    width: 100%;
    max-width: 100vw;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.8), rgba(55, 48, 163, 0.8));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fbbf24;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
    /* Prevent button overflow */
    max-width: 250px;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e3a8a;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
}

.btn-location {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
}

.btn-location:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.4);
}

.btn-outline {
    background: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
}

.btn-outline:hover {
    background: #1e3a8a;
    color: white;
}

.btn-large {
    padding: 20px 40px;
    font-size: 20px;
}

/* Trust Indicators */
.trust-indicators {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    /* Ensure no overflow */
    width: 100%;
    overflow-x: hidden;
}

.indicators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.indicator-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    /* Prevent overflow */
    max-width: 100%;
    word-wrap: break-word;
}

.indicator-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.indicator-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.indicator-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1e3a8a;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
    /* Ensure no overflow */
    width: 100%;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    /* Prevent overflow */
    max-width: 100%;
    word-wrap: break-word;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #fbbf24;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e3a8a;
}

.service-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 15px;
}

.service-card p {
    margin-bottom: 20px;
    color: #64748b;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 5px 0;
    color: #059669;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a, #3730a3);
    color: white;
    /* Ensure no overflow */
    width: 100%;
    overflow-x: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about h3 {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fbbf24;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.about-values {
    list-style: none;
}

.about-values li {
    padding: 8px 0;
    font-size: 1.1rem;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Service Areas */
.service-areas {
    padding: 100px 0;
    background: #f8fafc;
    /* Ensure no overflow */
    width: 100%;
    overflow-x: hidden;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.city-button {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 15px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    /* Prevent text overflow */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.city-button:hover {
    border-color: #fbbf24;
    background: #fbbf24;
    color: #1e3a8a;
    transform: translateY(-3px);
}

/* City Popup */
.city-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.popup-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    /* Prevent overflow */
    max-height: 90vh;
    overflow-y: auto;
}

.popup-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.popup-services {
    margin: 20px 0;
    text-align: left;
}

.popup-services p {
    padding: 5px 0;
    color: #059669;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    /* Ensure no overflow */
    width: 100%;
    overflow-x: hidden;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: white;
    /* Ensure no overflow */
    width: 100%;
    overflow-x: hidden;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.faq-item {
    background: #f8fafc;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #fbbf24;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #1e3a8a;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fbbf24;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-answer {
    display: none;
    padding: 0 20px 20px 20px;
    background: white;
    border-top: 1px solid #e2e8f0;
    animation: fadeInUp 0.3s ease-out;
}

.faq-answer.active {
    display: block;
}

.faq-answer p {
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    background: linear-gradient(135deg, #1e3a8a, #3730a3);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    /* Prevent overflow */
    max-width: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #1e3a8a, #3730a3);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    margin-bottom: 15px;
}

.blog-date {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1e3a8a;
    line-height: 1.3;
}

.blog-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e3a8a;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.blog-full-content {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #e2e8f0;
    animation: fadeInUp 0.5s ease-out;
}

.blog-full-content h4 {
    color: #1e3a8a;
    font-size: 1.2rem;
    margin: 20px 0 15px 0;
}

.blog-full-content p {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-full-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.blog-full-content li {
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.6;
}

.blog-cta {
    background: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #fbbf24;
}

.blog-cta h3 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 15px;
}

.blog-cta p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    /* Ensure no overflow */
    width: 100%;
    overflow-x: hidden;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    /* Prevent overflow */
    width: 100%;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-checkbox {
    margin: 20px 0;
}

.form-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.success-message {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.success-message h2 {
    font-size: 2.5rem;
    color: #059669;
    margin-bottom: 20px;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-btn {
    background: linear-gradient(135deg, #059669, #047857);
}

.location-btn {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.emergency-btn {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
.main-footer {
    background: #1e3a8a;
    color: white;
    padding: 60px 0 20px;
    /* Ensure no overflow */
    width: 100%;
    overflow-x: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #fbbf24;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    padding: 5px 0;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
    color: #fbbf24;
    transform: translateX(5px);
}

.city-links {
    column-count: 2;
    column-gap: 20px;
}

.city-links li {
    break-inside: avoid;
    margin-bottom: 6px;
}

.contact-info p {
    padding: 5px 0;
    font-size: 1.1rem;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

.contact-info a:hover {
    color: #fbbf24;
}

.admin-link {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.admin-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fbbf24;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

/* Mobile Responsive Design - FIXED FOR NO SIDE MOVEMENT */
@media (max-width: 768px) {
    /* Ensure body doesn't scroll horizontally */
    body {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Emergency Bar Mobile */
    .emergency-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .emergency-text {
        font-size: 12px;
    }
    
    .emergency-phone {
        font-size: 16px;
        padding: 6px 12px;
    }
    
    /* Header Mobile */
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .logo h1 {
        font-size: 24px;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-actions {
        order: -1;
        width: 100%;
        justify-content: space-between;
    }
    
    .header-phone {
        font-size: 16px;
        padding: 10px 16px;
    }
    
    /* Hero Mobile */
    .hero {
        height: 80vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* Trust Indicators Mobile */
    .indicators-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .indicator-item {
        padding: 25px 20px;
    }
    
    /* Services Mobile */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    /* About Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about h2 {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Service Areas Mobile */
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .city-button {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    /* Blog Mobile */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-content {
        padding: 25px 20px;
    }
    
    .blog-cta {
        padding: 30px 20px;
    }
    
    .blog-cta h3 {
        font-size: 1.5rem;
    }
    
    /* Contact Mobile */
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    /* FAQ Mobile */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 15px 15px 15px;
    }
    
    .faq-cta {
        padding: 30px 20px;
    }
    
    .faq-cta h3 {
        font-size: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .city-links {
        column-count: 1;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    /* Floating Actions Mobile */
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .popup-content {
        padding: 25px 15px;
    }
    
    .floating-actions {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Accessibility */
.btn:focus,
.floating-btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #fff;
    }
    
    .btn-secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-title,
    .service-card,
    .indicator-item {
        animation: none;
    }
}

/* Print Styles */
@media print {
    .emergency-bar,
    .floating-actions,
    .mobile-menu-toggle {
        display: none;
    }
    
    .hero {
        height: auto;
        page-break-after: always;
    }
    
    .service-card,
    .blog-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Hidden by default */
.hidden {
    display: none !important;
}

/* Smooth Scrolling Enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Fix for potential overflow issues */
*, *::before, *::after {
    max-width: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scroll caused by wide elements */
.no-overflow {
    max-width: 100vw;
    overflow-x: hidden;
}