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

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

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #019EE2 0%, #0177B8 100%);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 10px;
    object-fit: contain;
}

.logo h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
}

.logo p {
    font-size: 14px;
    opacity: 0.9;
}

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

.emergency-badge {
    background: #ff6b6b;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.emergency-icon {
    font-size: 16px;
}

.phone-number {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

/* CTA Buttons */
.cta-button {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-button.primary {
    background: #ff6b6b;
    color: white;
}

.cta-button.primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #1565c0;
}

.cta-button.large {
    padding: 18px 35px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #019EE2 0%, #0177B8 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    clear: both;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.hero-phone {
    background: rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    backdrop-filter: blur(10px);
}

.phone-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.phone-icon {
    font-size: 36px;
    color: #ffd54f;
}

.phone-number {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
}

.hero-phone .phone-number {
    font-size: 18px;
    text-decoration: none;
}

.phone-label {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 16px;
}

.check-icon {
    color: #4caf50;
    font-weight: bold;
    font-size: 18px;
}

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

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.trust-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: #019EE2;
    padding: 20px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10;
}

.trust-badge .rating {
    font-size: 36px;
    font-weight: 700;
    color: #ffa726;
    display: block;
    margin-bottom: 5px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
    position: relative;
    overflow: hidden;
    clear: both;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, #019EE2, #00C6FF, #019EE2);
    background-size: 200% auto;
    animation: gradient 3s linear infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #019EE2, #00C6FF);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0a2942;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 18px;
    color: #4a6b8a;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 60px auto 0;
    width: 100%;
    max-width: 1200px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-card.featured {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(1, 158, 226, 0.2);
    border: 2px solid #019EE2;
    position: relative;
    z-index: 1;
}

.popular-tag {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #ff6b6b;
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    width: 140px;
    text-align: center;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-card-content {
    padding: 25px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #019EE2;
    box-shadow: 0 15px 30px rgba(1,158,226,0.1);
}

.service-card h3 {
    font-size: 22px;
    margin: 15px 0;
    color: #0a2942;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #019EE2;
    border-radius: 3px;
}

.service-card p {
    color: #4a6b8a;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    color: #4a6b8a;
    font-size: 14px;
    position: relative;
    padding-left: 25px;
    line-height: 1.5;
}

.service-features li:before {
    content: '✓';
    color: #019EE2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-benefit {
    background: #f0f8ff;
    padding: 12px 15px;
    border-radius: 8px;
    margin: 20px 0;
    font-size: 14px;
    color: #2c5282;
    border-right: 4px solid #019EE2;
}

.service-cta {
    background: linear-gradient(135deg, #019EE2 0%, #00C6FF 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(1, 158, 226, 0.2);
}

.service-cta.primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(1, 158, 226, 0.3);
}

.service-cta.primary:hover {
    box-shadow: 0 7px 20px rgba(255, 107, 107, 0.4);
}

.service-cta-container {
    text-align: center;
    margin: 60px auto 0;
    padding: 40px;
    background: white;
    border-radius: 12px;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e8f0;
}

.service-cta-container p {
    font-size: 18px;
    color: #4a6b8a;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: inline-block;
    background: #e6f4ff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    color: #019EE2;
    text-align: center;
    box-shadow: 0 5px 15px rgba(1, 158, 226, 0.1);
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    text-align: left;
}

.trust-text {
    text-align: left;
    align-self: flex-start;
}

.trust-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #019EE2;
    margin-bottom: 40px;
    text-align: left;
}

.trust-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.trust-point {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.trust-number {
    font-size: 36px;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 10px;
    flex-shrink: 0;
    min-width: 80px;
}

.trust-point p {
    color: #666;
    font-size: 16px;
}

.trust-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

.trust-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.certification-badges {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.badge {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.badge-icon {
    background: #4caf50;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

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

.google-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 25px;
    border: 2px solid #e0e0e0;
}

.google-icon {
    background: #019EE2;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.rating-text {
    font-weight: 600;
    color: #019EE2;
}

.review-count {
    color: #666;
    font-size: 14px;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

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

.rating {
    color: #ffa726;
    font-size: 18px;
}

.date {
    color: #999;
    font-size: 14px;
}

.testimonial-text {
    color: #666;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.name {
    font-weight: 600;
    color: #019EE2;
}

.location {
    color: #999;
    font-size: 14px;
}

/* Emergency Section */
.emergency {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    padding: 60px 0;
}

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

.emergency-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.emergency-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.emergency-features {
    display: flex;
    gap: 30px;
}

.emergency-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.emergency-cta {
    background: rgba(255,255,255,0.2);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.emergency-cta h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.emergency-phone {
    font-size: 36px;
    font-weight: 900;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.emergency-phone:hover {
    text-decoration: underline;
}

/* Accessibility improvements */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Improved contrast for better accessibility */
.emergency-badge {
    background: #e53e3e;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
}

.cta-button {
    background: #e53e3e;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

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

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

.phone-number {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.phone-number:hover {
    text-decoration: underline;
}

.hero-phone {
    background: rgba(255,255,255,0.3);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

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

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #019EE2;
    margin-bottom: 15px;
}

.contact-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-icon {
    font-size: 32px;
    margin-top: 5px;
}

.contact-method h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-method a {
    font-size: 18px;
    font-weight: 600;
    color: #019EE2;
    text-decoration: none;
    margin-bottom: 5px;
    display: block;
}

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

.contact-method p {
    color: #333333;
    font-size: 16px;
    margin: 5px 0;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 25px;
    border: 1px solid #e0e0e0;
}

.google-icon {
    font-size: 20px;
    font-weight: bold;
    color: #4285F4;
}

.rating-text {
    font-weight: 600;
    color: #1a1a1a;
}

.review-count {
    color: #666666;
    font-size: 14px;
}

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

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-align: center;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: #ffffff;
    color: #1a1a1a;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #019EE2;
}

.contact-form button {
    width: 100%;
    padding: 18px;
    font-size: 16px;
}

/* Footer Styles */
.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

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

.footer-section li {
    margin-bottom: 10px;
    color: #e0e0e0;
}

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

.footer-section a:hover {
    color: #019EE2;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.9;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 10px 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: linear-gradient(135deg, #019EE2 0%, #0177B8 100%);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .header-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .logo {
        order: 1;
        margin-bottom: 5px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 15px;
    }

    .logo-img {
        height: 40px;
        margin-bottom: 0;
    }

    .contact-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        width: 100%;
        order: 2;
        flex-wrap: wrap;
    }

    .emergency-badge {
        font-size: 10px;
        padding: 6px 12px;
        order: 1;
        flex-shrink: 0;
        position: static;
        transform: none;
    }

    .phone-number {
        font-size: 16px;
        order: 2;
        flex-shrink: 0;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 11px;
        order: 3;
        flex-shrink: 0;
    }

    .hero {
        padding: 120px 0 40px 0;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
        width: 100%;
        max-width: none;
        margin: 0 auto;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .hero-phone {
        padding: 20px;
        margin-bottom: 25px;
        text-align: center;
    }

    .phone-display {
        justify-content: center;
    }

    .hero-cta {
        justify-content: flex-start;
    }

    .hero-image {
        min-height: 250px;
        width: 100%;
    }

    .hero-img {
        height: 250px;
        border-radius: 12px;
    }

    .services {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0;
        margin: 40px 0 0;
    }

    .service-card.featured {
        transform: none;
    }

    .popular-tag {
        right: -35px;
        font-size: 11px;
        padding: 4px 25px;
        width: 130px;
    }

    .service-cta-container {
        padding: 30px 20px;
        margin: 40px 0 0;
        width: auto;
    }

    .trust-content,
    .contact-content,
    .emergency-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trust-point {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .emergency-features {
        flex-direction: column;
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header {
        padding: 8px 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: linear-gradient(135deg, #019EE2 0%, #0177B8 100%);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .header-content {
        gap: 8px;
    }

    .logo-img {
        height: 35px;
        margin-bottom: 0;
    }

    .logo h1 {
        font-size: 20px;
    }

    .logo p {
        font-size: 11px;
    }

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

    .emergency-badge {
        font-size: 9px;
        padding: 4px 8px;
        width: fit-content;
        flex-shrink: 0;
    }

    .phone-number {
        font-size: 15px;
        flex-shrink: 0;
    }

    .cta-button {
        padding: 6px 12px;
        font-size: 10px;
        flex-shrink: 0;
        width: auto;
        max-width: none;
    }

    .hero {
        padding: 110px 0 30px 0;
        min-height: auto;
    }

    .hero-content {
        padding: 0 15px;
        gap: 25px;
        text-align: left;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-phone {
        padding: 15px;
        margin-bottom: 20px;
        text-align: center;
    }

    .phone-display {
        justify-content: center;
    }

    .hero-phone .phone-number {
        font-size: 18px;
    }

    .hero-phone .phone-label {
        font-size: 14px;
    }

    .hero-cta {
        justify-content: flex-start;
    }

    .hero-image {
        min-height: 200px;
    }

    .hero-img {
        height: 200px;
        border-radius: 10px;
    }

    .services {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
        padding: 0 15px;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-cta-container {
        padding: 25px 15px;
        margin: 30px 0 0;
    }

    .service-cta-container p {
        font-size: 16px;
    }

    .trust-text h2,
    .contact-info h2,
    .emergency-text h2 {
        font-size: 28px;
    }

    .emergency-phone {
        font-size: 28px;
    }

    .cta-button.large {
        padding: 15px 25px;
        font-size: 14px;
    }

    .contact-methods {
        gap: 15px;
        margin-bottom: 30px;
    }

    .contact-method {
        padding: 20px;
    }

    .contact-form {
        padding: 25px 15px;
    }

    .footer {
        padding: 40px 0 15px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .testimonial-card,
    .trust-point {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
    }

    .service-card.visible,
    .testimonial-card.visible,
    .trust-point.visible {
        opacity: 1;
        transform: translateY(0);
    }
}
