/* Additional styles for v2 */

/* Hero section spacing fix - AGGRESSIVE */
.hero {
    margin-bottom: 6rem !important;
    padding-bottom: 4rem !important;
}

/* Provider results spacing */
.provider-results {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Form card spacing when results shown */
.form-card .form-body {
    padding-bottom: 1rem;
}

/* Provider Cards */
.provider-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin-bottom: 1rem;
}

.provider-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.provider-info strong {
    color: var(--color-white);
    font-size: 1rem;
}

.provider-city {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
}

.provider-rating {
    color: #FBBF24;
    font-size: 0.875rem;
    font-weight: 600;
}

.provider-services {
    color: var(--color-text-muted);
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
}

.provider-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 150ms ease;
}

.provider-phone:hover {
    background: #15803D;
}

.no-providers {
    text-align: center;
    padding: 1.5rem;
    color: var(--color-text-muted);
}

.no-providers a {
    color: var(--color-primary);
}

/* City Hero */
.city-hero {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
    padding: 140px 0 60px;
}

.city-hero h1 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.city-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.125rem;
}

/* Provider Registration Form */
.registration-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.registration-form h3 {
    margin-bottom: 0.5rem;
}

.registration-form .form-subtitle {
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.registration-form .form-input {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    color: var(--color-text);
}

.registration-form .form-input:focus {
    border-color: var(--color-primary);
    background: var(--color-white);
}

.registration-form .form-label {
    color: var(--color-text);
}

/* Pricing Card */
.pricing-card {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-light));
    color: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0;
}

.pricing-amount span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    margin-top: 1.5rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.pricing-feature svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Stripe */
#stripe-card-element {
    padding: 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

/* Map Custom Styles */
.leaflet-popup-content {
    font-family: var(--font-sans);
}

.leaflet-popup-content strong {
    color: var(--color-secondary);
}

.leaflet-popup-content a {
    color: var(--color-primary);
    font-weight: 600;
}

/* Services Grid 4 col */
@media (min-width: 1024px) {
    .services-grid.four-col {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Canada Map - Responsive */
.canada-map {
    height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

@media (max-width: 768px) {
    .canada-map {
        height: 400px;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.whatsapp-float .whatsapp-text {
    display: none;
}

@media (min-width: 768px) {
    .whatsapp-float {
        bottom: 30px;
        right: 30px;
    }

    .whatsapp-float .whatsapp-text {
        display: inline;
    }
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}