/* Landing page specific styles */
.map-marker {
    background-color: #007bff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid white;
}

.results-section-hidden {
    display: none;
}

.map-container {
    height: 400px;
}

/* Ensure map element has height even if class is missing */
#map {
    height: 400px;
    width: 100%;
}

/* SMS Signup Section Styles */
.sms-signup-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.sms-signup-section .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.sms-signup-section .form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 16px;
}

.sms-signup-section .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.sms-signup-section .btn-primary {
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.sms-signup-section .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.sms-signup-section .form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
}

/* SMS benefits list styling */
.sms-signup-section .list-unstyled li {
    position: relative;
    padding-left: 0;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.sms-signup-section h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.sms-signup-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sms-signup-section .card {
        margin-top: 30px;
    }
    
    .sms-signup-section .form-control {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Animation for success/error messages */
.sms-signup-section .alert {
    animation: slideIn 0.3s ease;
    border-radius: 8px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}