/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .nav-brand {
    margin-left: 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
}

.nav-brand svg {
    color: #1a365d;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}


.cta-button {
    background: #e53e3e;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1rem;
}

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

/* Section base styles */
section {
    padding: 3rem 5%;
}

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

/* Hero section */
.hero-section {
    background: #fff;
    padding: 2rem 5%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-image {
    order: 2;
    position: relative;
    text-align: center;
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 1px solid #e2e8f0;
    backdrop-filter: blur(10px);
    text-align: center;
    min-width: 100px;
    transition: transform 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.badge-stars {
    color: #fbbf24;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.badge-main {
    font-size: 1.25rem;
    font-weight: 800;
    color: #e53e3e;
    line-height: 1;
}

.badge-sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: #1a365d;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-content {
    order: 1;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: #dc2626;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    position: relative;
    left: 0;
    margin-top: 0;
    display: inline-block;
    z-index: 3;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2d3748;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border-left: 4px solid #e53e3e;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-item svg {
    color: #e53e3e;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: rgba(229, 62, 62, 0.1);
    border-radius: 50%;
    padding: 6px;
}

.testimonial-slider {
    position: relative;
    margin: 1.5rem 0;
}

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

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

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #4285f4;
}

.dot:hover {
    background: #6b7280;
}

.testimonial-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border: 1px solid #e8eaed;
    box-shadow: 0 1px 6px rgba(32,33,36,0.1);
    transition: box-shadow 0.2s ease;
}

.testimonial-card:hover {
    box-shadow: 0 2px 8px rgba(32,33,36,0.15);
}

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

.google-icon {
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%234285f4" d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/><path fill="%2334a853" d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/><path fill="%23fbbc05" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/><path fill="%23ea4335" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/></svg>') no-repeat center;
    background-size: contain;
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.testimonial-stars::before {
    content: "★★★★★";
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.testimonial-stars::after {
    content: "5.0";
    color: #5f6368;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 0.5rem;
}

.testimonial-text {
    color: #3c4043;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-family: 'Google Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #5f6368;
}

.testimonial-author strong {
    color: #1a73e8;
    font-weight: 500;
}

.google-review-tag {
    color: #5f6368;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.google-review-tag::before {
    content: "G";
    background: #4285f4;
    color: white;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.7rem;
}

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

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
    text-align: center;
}

.locksmith-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-select {
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

.form-submit {
    background: #1a365d;
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    background: #2d3748;
}

.cta-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #e53e3e;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.cta-secondary {
    background: #1a365d;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-secondary:hover {
    background: #2d3748;
}



/* Services section */
.services-section {
    background: #ffffff;
    padding: 4rem 5%;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.service-card.featured {
    border: 2px solid #e53e3e;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e53e3e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(229, 62, 62, 0.3);
}

.service-icon {
    width: 100%;
    height: 200px;
    border-radius: 16px 16px 0 0;
    margin-bottom: 0;
    overflow: hidden;
    border: none;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 1.5rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.service-availability {
    margin-bottom: 1.5rem;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(26, 54, 93, 0.05);
    border: 1px solid rgba(26, 54, 93, 0.15);
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.85rem;
    color: #1a365d;
    transition: all 0.3s ease;
}

.availability-badge:hover {
    background: rgba(26, 54, 93, 0.08);
    border-color: rgba(26, 54, 93, 0.25);
}

.availability-icon {
    width: 16px;
    height: 16px;
    background: #1a365d;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
}

.availability-text {
    font-weight: 500;
    color: #2d3748;
}

.service-cta {
    background: #1a365d;
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.service-cta:hover {
    background: #2d3748;
}

.service-cta.emergency {
    background: #e53e3e;
    animation: pulse 2s infinite;
}

.service-cta.emergency:hover {
    background: #c53030;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.services-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.guarantee-banner {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.guarantee-banner h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.guarantee-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.9rem;
}

.guarantee-icon {
    width: 20px;
    height: 20px;
    background: #1a365d;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    flex-shrink: 0;
}

.services-cta {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 2px solid #e53e3e;
}

.services-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.services-cta p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Responsive design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .hero-image {
        order: 1;
        margin-bottom: 0;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
        margin-top: -4rem;
        position: relative;
        z-index: 10;
    }
    
    .hero-title {
        font-size: 2.5rem;
        left: 0;
        margin-top: 0;
        padding: 1.25rem 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .service-icon {
        height: 160px;
        border-radius: 12px 12px 0 0;
    }
    
    .services-bottom {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 3%;
        justify-content: flex-start;
    }
    
    .nav-brand {
        margin-left: 0;
    }
    
    .nav-contact {
        display: none;
    }
    
    section {
        padding: 2rem 3%;
    }
    
    .hero-section {
        padding: 1.5rem 3%;
    }
    
    .hero-content {
        margin-top: -1.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
        left: 0;
        margin-top: 0;
        padding: 1rem 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        gap: 1rem;
    }
    
    .cta-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-title {
        font-size: 1.1rem;
    }
    
    .hero-badge {
        top: 15px;
        left: 15px;
        right: auto;
        padding: 0.6rem;
        min-width: 90px;
    }
    
    .badge-main {
        font-size: 1.1rem;
    }
    
    .badge-sub {
        font-size: 0.65rem;
    }
    
    .services-section {
        padding: 3rem 3%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 1.25rem;
    }
    
    .guarantee-items {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .emergency-stats {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .stat-item-compact {
        flex: 1;
        min-width: 140px;
        font-size: 0.8rem;
    }
    
    .stat-value {
        font-size: 0.85rem;
    }
    
    .stat-text {
        font-size: 0.75rem;
    }
    
    .mobile-cta-buttons {
        display: block !important;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    footer {
        margin-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        margin-top: -2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        left: 0;
        margin-top: 0;
        padding: 0.875rem 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
    }
    
    .feature-item svg {
        width: 28px;
        height: 28px;
        padding: 5px;
    }
    
    .navbar {
        padding: 0.75rem 2%;
        justify-content: flex-start;
    }
    
    .nav-brand {
        font-size: 1.25rem;
        margin-left: 0;
    }
    
    .hero-badge {
        top: 10px;
        left: 10px;
        right: auto;
        padding: 0.5rem;
        min-width: 80px;
    }
    
    .badge-stars {
        font-size: 0.7rem;
    }
    
    .badge-main {
        font-size: 1rem;
    }
    
    .badge-sub {
        font-size: 0.6rem;
    }
    
    .services-section {
        padding: 2rem 2%;
    }
    
    .services-title {
        font-size: 1.75rem;
    }
    
    .service-content {
        padding: 1rem;
    }
    
    .service-icon {
        height: 140px;
        border-radius: 10px 10px 0 0;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .availability-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .availability-icon {
        width: 14px;
        height: 14px;
        font-size: 0.6rem;
    }
    
    .mobile-cta-buttons {
        display: block !important;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    footer {
        margin-bottom: 70px;
    }
}

/* Emergency Response Section */
.emergency-section {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 4rem 5%;
}

.emergency-header {
    text-align: center;
    margin-bottom: 3rem;
}

.emergency-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.emergency-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

.emergency-content {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.authority-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    margin-bottom: 2rem;
}

.authority-header {
    text-align: center;
    margin-bottom: 2rem;
}

.authority-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e53e3e, #dc2626);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.authority-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
}

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

.authority-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #f7fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.authority-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.authority-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a365d, #2d3748);
    color: white;
}

.authority-content h4 {
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.authority-content p {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
}

.authority-cta {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.urgency-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(229, 62, 62, 0.1);
    color: #dc2626;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(229, 62, 62, 0.2);
    font-weight: 600;
    font-size: 0.9rem;
}

.urgency-dot {
    width: 8px;
    height: 8px;
    background: #dc2626;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.credentials-section {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.credentials-header {
    text-align: center;
    margin-bottom: 2rem;
}

.credentials-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.credentials-header p {
    color: #4a5568;
    font-size: 1rem;
}

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

.credential-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.credential-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.credential-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.credential-icon.license,
.credential-icon.insurance,
.credential-icon.certified,
.credential-icon.rating {
    background: linear-gradient(135deg, #1a365d, #2d3748);
    border-color: #1a365d;
    color: white;
}

.credential-card:hover .credential-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.credential-info h4 {
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.credential-info p {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.status {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    display: inline-block;
}

.status.valid {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.status.excellent {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.success-stats {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.success-stats h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a365d;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.stat-item {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #fecaca;
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #e53e3e;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: #1a365d;
    font-weight: 600;
}

.emergency-team {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.team-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    text-align: center;
    margin-bottom: 2rem;
}

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

.team-member {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-3px);
}

.member-photo-placeholder {
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    border: 2px dashed #1a365d;
    text-align: center;
    flex-shrink: 0;
}

.member-photo-placeholder span {
    font-size: 1.5rem;
    color: #1a365d;
}

.member-photo-placeholder small {
    font-size: 0.6rem;
    color: #6b7280;
    margin-top: 2px;
}

.member-info {
    flex: 1;
}

.member-name {
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.25rem;
}

.member-role {
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.member-experience {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.member-status {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    display: inline-block;
}

.member-status.online {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.member-status.busy {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.emergency-cta {
    background: linear-gradient(135deg, #e53e3e 0%, #dc2626 100%);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.emergency-cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.emergency-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.emergency-cta-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
}

.emergency-cta-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Mobile CTA Buttons */
.mobile-cta-buttons {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 1rem;
    gap: 1rem;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.mobile-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.mobile-cta-call {
    background: #e53e3e;
}

.mobile-cta-call:hover {
    background: #c53030;
}

.mobile-cta-message {
    background: #1a365d;
}

.mobile-cta-message:hover {
    background: #2d3748;
}

.mobile-cta-btn svg {
    width: 18px;
    height: 18px;
}

.mobile-cta-call svg {
    animation: phoneShake 2s infinite;
}

@keyframes phoneShake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-5deg); }
    20%, 40%, 60%, 80% { transform: rotate(5deg); }
}

/* Footer */
footer {
    background: #1a202c;
    color: white;
    text-align: center;
    padding: 2rem 5%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}