/* Hero Section */
.hero-header {
    background: linear-gradient(135deg, #1E90FF, #0066cc);
    padding: 100px 0;
    margin-bottom: 3rem;
    color: white;
}

.contact-hero {
    background: linear-gradient(135deg, #1E90FF, #0066cc);
    padding: 100px 0;
    margin-bottom: 3rem;
    color: white;
}

.hover-scale:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-header p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
}

.contact-quick-info i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Form Container */
.form-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #1E90FF;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.form-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #1E90FF;
    border-radius: 2px;
}

/* Form Fields */
.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-label .required {
    color: #dc3545;
    margin-left: 3px;
}

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-control:focus,
.form-select:focus {
    border-color: #1E90FF;
    box-shadow: 0 0 0 4px rgba(30, 144, 255, 0.1);
    background-color: white;
    outline: none;
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: #28a745;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
}

.form-text {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

/* Submit Button */
.btn-primary {
    background: #1E90FF;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #0066cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 144, 255, 0.4);
}

.btn-primary:disabled {
    background: #a0cfff;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

/* Map Section */
.map-section {
    background: white;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-heading {
    color: #1E90FF;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.map-subtitle {
    color: #666;
    font-size: 1.1rem;
}

/* Notifications */
.notification-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 10px;
    animation: slideInRight 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-header {
        padding: 60px 0;
        text-align: left;
    }

    .hero-header h1 {
        font-size: 2.2rem;
    }

    .form-container {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .contact-quick-info i {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}