/* ====================== SINGLE HERO WITH IMAGE ====================== */
.single-hero {
    position: relative;
    height: 30vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

.single-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.171), rgba(255, 255, 255, 0.103));
    z-index: 2;
}

/* Breadcrumb */
.breadcrumb-container {
    position: absolute;
    bottom: 20%;
    left: 45%;
    z-index: 10;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin: 0;
    font-size: 0.95rem;
}

.breadcrumb-item a {
    color: #000000;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: #7a00fd;
}

/* Hero Text */
.single-hero-grid {
    position: relative;
    z-index: 3;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

.single-hero-text {
    max-width: 700px;
}

#single-hero-heading {
    font-size: 3.2rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.2rem;
    font-family: 'IBM Plex Serif', serif;
}

.subheading {
    font-size: 1.25rem;
    color: #e0d4ff;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    #single-hero-heading {
        font-size: 2.4rem;
    }
    .subheading {
        font-size: 1.1rem;
    }
}


/* ====================== QUOTE / CONTACT FORM SECTION ====================== */
.quote-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #f8f7ff 0%, #ffffff 50%, #f5f0ff 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Same Beautiful Bubbles Background */
.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 15% 70%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 85% 30%, rgba(159, 122, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 90%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.bubbles-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Reuse same bubble styles */
.bubble-light {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1.8px solid rgba(124, 58, 237, 0.25);
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.15), inset 0 0 40px rgba(255, 255, 255, 0.8);
    animation: float-light 24s infinite ease-in-out;
    opacity: 0.85;
}

.bubble-light:nth-child(1) { width: 400px; height: 400px; top: -10%; right: -8%; background: rgba(159, 122, 234, 0.22); animation-delay: 0s; animation-duration: 26s; }
.bubble-light:nth-child(2) { width: 320px; height: 320px; top: 50%; left: -12%; background: rgba(124, 58, 237, 0.2); animation-delay: 6s; animation-duration: 22s; }
.bubble-light:nth-child(3) { width: 180px; height: 180px; bottom: 15%; right: 10%; background: rgba(139, 92, 246, 0.28); animation-delay: 9s; animation-duration: 18s; }
.bubble-light:nth-child(4) { width: 260px; height: 260px; top: 20%; left: 8%; background: rgba(167, 139, 250, 0.24); animation-delay: 3s; animation-duration: 28s; }
.bubble-light:nth-child(5) { width: 140px; height: 140px; bottom: 30%; left: 18%; background: rgba(99, 70, 229, 0.32); animation-delay: 12s; animation-duration: 20s; }
.bubble-light:nth-child(6) { width: 380px; height: 380px; bottom: -15%; right: -5%; background: rgba(179, 136, 255, 0.18); animation-delay: 8s; animation-duration: 30s; }

@keyframes float-light {
    0%, 100% { transform: translateY(0) translateX(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-60px) translateX(50px) rotate(12deg) scale(1.06); }
    50% { transform: translateY(-100px) translateX(-40px) rotate(-10deg) scale(0.96); }
    75% { transform: translateY(-50px) translateX(60px) rotate(8deg) scale(1.04); }
}

/* Main Container */
.quote-container {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    box-shadow: 0 25px 70px rgba(124, 58, 237, 0.15);
    position: relative;
    z-index: 2;
}

/* Left Side - Form */
.left-side {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 45px !important;
}

.main-title {
    color: #4c1d95;
    font-size: 2.4rem;
    font-family: 'IBM Plex Serif', serif;
}

/* Form Controls */
.form-control {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.98rem;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.15);
    outline: none;
}

.input-group-text {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    color: #6b7280;
}

/* Submit Button */
.submit-quote-btn {
    background: linear-gradient(90deg, #7C3AED, #A855F7) !important;
    border: none !important;
    height: 52px;
    font-size: 1.05rem;
    transition: all 0.4s;
    color: white !important;
    border-radius: 10px !important;
    display: block !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 0.6;
}

.submit-quote-btn:enabled {
    opacity: 1 !important;
    cursor: pointer !important;
}

.submit-quote-btn:disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

/* Make sure button container is visible */
#contactForm .text-center {
    display: block !important;
    margin-top: 20px !important;
}

/* Ensure button is not hidden by any parent */
.submit-quote-btn {
    position: relative !important;
    z-index: 10 !important;
}

/* Right Side - Contact Info */
.right-side {
    background: linear-gradient(135deg, #4c1d95, #6d28d9) !important;
    color: white;
}

.support-title {
    color: white !important;
    font-size: 2rem;
}

.contact-item h5 {
    color: #e0e7ff;
    font-size: 1.1rem;
}

.contact-item p {
    color: #f3e8ff;
    opacity: 0.95;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: white;
}

.map-container {
    width: 100%;
    aspect-ratio: 16 / 6;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Hold-to-Verify CAPTCHA Styles */
.captcha-wrapper {
    margin-top: 0.5rem;
    text-align: center;
}

.hold-button {
    width: 100%;
    height: 45px;
    background: linear-gradient(90deg, #f8f9fa, #e9ecef);
    border: 2px solid #dee2e6;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    user-select: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    touch-action: manipulation;
}

.hold-button:hover:not(.success) {
    background: linear-gradient(90deg, #e9ecef, #dee2e6);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hold-button.holding {
    background: #dee2e6;
    transform: translateY(1px);
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #28a745, #198754);
    transition: width 0.08s linear;
    z-index: 1;
}

.hold-button span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hold-button.success {
    background: #198754 !important;
    border-color: #198754 !important;
    color: white !important;
    cursor: default;
    box-shadow: 0 2px 8px rgba(25, 135, 84, 0.3);
}

.hold-button.success:hover,
.hold-button.success:active {
    transform: none;
}

.verified-text {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #198754;
    font-weight: 600;
    display: none;
}

.invalid-captcha {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.4rem;
    display: none;
}

/* Terms Text */
.terms-text {
    margin: 15px 0 10px 0;
}

/* Responsive */
@media (max-width: 991px) {
    .quote-section {
        padding: 60px 5%;
    }
    
    .quote-container {
        margin: 0 15px;
    }
    
    .left-side, 
    .right-side {
        padding: 40px 30px !important;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .support-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .map-container {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 576px) {
    .hold-button {
        height: 48px;
        font-size: 0.85rem;
    }
    
    .main-title {
        font-size: 1.75rem;
    }
    
    .support-title {
        font-size: 1.5rem;
    }
    
    .left-side,
    .right-side {
        padding: 30px 20px !important;
    }
}