/* Quote Form Styles - Contact Page */

.contact-hero-section {
    background: linear-gradient(135deg, #0a2342 0%, #009fe3 100%) !important;
    color: #fff !important;
    text-align: center;
    padding: 60px 0;
    min-height: 40vh;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 35, 66, 0.7);
    z-index: 1;
}

.contact-hero-section h1 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Contact Form Styles */
.contact-section {
    padding: 40px 0;
    background: #f8f9fa;
}

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

/* Form Button Styles */
#contactForm button[type="submit"] {
    background: #009fe3 !important;
    color: white !important;
    padding: 15px 30px !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-shadow: 0 4px 15px rgba(0, 159, 227, 0.3) !important;
}

#contactForm button[type="submit"]:hover {
    background: #0078b7 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 159, 227, 0.4) !important;
}

/* Input Field Styles */
#contactForm input,
#contactForm select,
#contactForm textarea {
    border: 2px solid #e9ecef !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    background: #fff !important;
    color: #000 !important;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    border-color: #009fe3 !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(0, 159, 227, 0.1) !important;
}

/* Location Button Styles */
.location-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #009fe3 !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    border-radius: 25px !important;
    padding: 12px 25px !important;
    text-decoration: none !important;
    box-shadow: 0 3px 10px rgba(0, 159, 227, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
}

.location-btn:hover {
    background: #0078b7 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 159, 227, 0.4) !important;
    color: white !important;
}

/* Call Button Styles */
.call-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #009fe3 !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    border-radius: 25px !important;
    padding: 12px 25px !important;
    text-decoration: none !important;
    box-shadow: 0 3px 10px rgba(0, 159, 227, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
}

.call-btn:hover {
    background: #0078b7 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 159, 227, 0.4) !important;
    color: white !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero-section h1 {
        font-size: 2.2rem;
    }
    
    .contact-section .container {
        padding: 0 15px;
    }
    
    #contactForm button[type="submit"],
    .location-btn,
    .call-btn {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

/* Animation Container */
.bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.water-droplet {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 159, 227, 0.6);
    border-radius: 50%;
    animation: dropletFall 8s infinite linear;
}

.water-droplet:nth-child(1) { left: 10%; animation-delay: 0s; }
.water-droplet:nth-child(2) { left: 20%; animation-delay: 1s; }
.water-droplet:nth-child(3) { left: 30%; animation-delay: 2s; }
.water-droplet:nth-child(4) { left: 40%; animation-delay: 3s; }
.water-droplet:nth-child(5) { left: 50%; animation-delay: 4s; }
.water-droplet:nth-child(6) { left: 60%; animation-delay: 5s; }

.bubble {
    position: absolute;
    border: 2px solid rgba(0, 159, 227, 0.3);
    border-radius: 50%;
    animation: bubbleRise 10s infinite linear;
}

.bubble:nth-child(7) { width: 20px; height: 20px; left: 15%; animation-delay: 0s; }
.bubble:nth-child(8) { width: 15px; height: 15px; left: 35%; animation-delay: 2s; }
.bubble:nth-child(9) { width: 25px; height: 25px; left: 55%; animation-delay: 4s; }
.bubble:nth-child(10) { width: 18px; height: 18px; left: 75%; animation-delay: 6s; }
.bubble:nth-child(11) { width: 22px; height: 22px; left: 85%; animation-delay: 8s; }
.bubble:nth-child(12) { width: 16px; height: 16px; left: 25%; animation-delay: 1s; }

@keyframes dropletFall {
    0% {
        transform: translateY(-100vh);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes bubbleRise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translateY(50vh) scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(0.5);
        opacity: 0;
    }
}
