/* =====================================================
   Hero Contact Section — hero-contact.css  v2.0
   ===================================================== */

/* ── SCOPED RESET ── */
.hcs-hero,
.hcs-hero *,
.hcs-hero *::before,
.hcs-hero *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── SECTION WRAPPER ── */
.hcs-hero {
    position: relative !important;
    width: 100% !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    overflow: visible !important;
    font-family: 'Poppins', Arial, sans-serif !important;
    line-height: 1.5 !important;
}

/* ── SLIDES ── */
.hcs-slides {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
}



.hcs-slide {
    position: absolute !important;
    inset: 0 !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    opacity: 0 !important;
    transition: opacity 1.4s ease-in-out !important;
	
	filter: contrast(1.08) saturate(1.05);
}

.hcs-slide.hcs-active {
    opacity: 1 !important;
}

.hcs-overlay {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;

    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.75) 0%,
        rgba(255, 255, 255, 0.55) 30%,
        rgba(255, 255, 255, 0.25) 55%,
        rgba(255, 255, 255, 0.05) 75%,
        rgba(255, 255, 255, 0) 100%
    ) !important;
}



/* ── INNER ── */
.hcs-inner {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 72px 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 36px !important;
    flex-wrap: wrap !important;
}

/* ── LEFT CONTENT ── */
.hcs-left {
    flex: 1 1 320px !important;
    max-width: 520px !important;
}

/* HEADLINE — Poppins 800, 50px / 65px, #051b0d on dark bg = white with dark overlay */
.hcs-headline {
    font-family: 'Poppins', Georgia, serif !important;
    font-size: 40px !important;
    font-style: normal !important;
    font-weight: 800 !important;
    line-height: 65px !important;
    color: #0a1f14 !important;
    margin: 0 0 20px !important;
    text-shadow: none !important;
    letter-spacing: -0.5px !important;
	max-width: 520px !important;
}

.hcs-sub {
    font-family: 'Poppins', Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    color: #1a1a1a !important;
    line-height: 1.75 !important;
    margin: 0 0 36px !important;
    text-shadow: 0 1px 10px rgba(0,0,0,0.3) !important;
    max-width: 500px !important;
}

/* ── BADGES IMAGE ── */
.hcs-badges-img-wrap {
    margin-top: 10px !important;
	display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
	
}

.hcs-badges-img {
    display: block !important;
    max-width: 420px !important;
    height: auto !important;
    object-fit: contain !important;
    max-height: 100px !important;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.45)) !important;
}

/* ── FORM CARD — glassmorphism ── */
.hcs-form-wrap {
    flex: 0 0 440px !important;
    width: 440px !important;
    background: rgba(255, 255, 255, 45%) !important;
    backdrop-filter: blur(14px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(1.4) !important;
    border-radius: 18px !important;
    border: 1px solid rgba(255, 255, 255, 0.65) !important;
    padding: 36px 32px 30px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.95) !important;
}

.hcs-form-title {
    font-family: 'Poppins', Georgia, serif !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #051b0d !important;
    margin: 0 0 24px !important;
    text-align: center !important;
    letter-spacing: -0.3px !important;
    line-height: 1.2 !important;
}

/* ── FORM ── */
.hcs-form {
    display: flex !important;
    flex-direction: column !important;
}

.hcs-row-2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 16px !important;
}

.hcs-field {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 16px !important;
    width: 100% !important;
}

/* Kill any theme-injected labels */
.hcs-field label,
.hcs-field > label {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

.hcs-field input,
.hcs-field select,
.hcs-field textarea {
    font-family: 'Poppins', Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #222 !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-top: none !important;
    border-right: none !important;
    border-left: none !important;
    border-bottom: 1.5px solid #cccccc !important;
    border-radius: 0 !important;
    padding: 10px 4px !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    transition: border-color 0.2s !important;
    line-height: 1.4 !important;
}

.hcs-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 6px center !important;
    padding-right: 28px !important;
    cursor: pointer !important;
}

.hcs-field textarea {
    resize: vertical !important;
    min-height: 72px !important;
}

.hcs-field input::placeholder,
.hcs-field textarea::placeholder {
    color: #000000 !important;
    font-weight: 400 !important;
}

.hcs-field input:focus,
.hcs-field select:focus,
.hcs-field textarea:focus {
    border-bottom-color: #051b0d !important;
    box-shadow: none !important;
    outline: none !important;
}

/* ── SUBMIT BUTTON ── */
.hcs-btn-submit {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background-color: #051b0d !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 15px 24px !important;
    font-family: 'Poppins', Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    width: 100% !important;
    margin-top: 4px !important;
    margin-bottom: 10px !important;
    text-decoration: none !important;
    line-height: 1 !important;
    height: auto !important;
    transition: background-color 0.2s, transform 0.15s !important;
}

.hcs-btn-submit:hover,
.hcs-btn-submit:focus {
    background-color: #0a3519 !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
    text-decoration: none !important;
    outline: none !important;
}

.hcs-btn-submit:disabled {
    opacity: 0.65 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* Spinner */
.hcs-btn-spinner {
    display: none !important;
    width: 16px !important;
    height: 16px !important;
    border: 2px solid rgba(255,255,255,0.35) !important;
    border-top-color: #ffffff !important;
    border-radius: 50% !important;
    animation: hcs-spin 0.7s linear infinite !important;
    flex-shrink: 0 !important;
}

.hcs-btn-submit.hcs-loading .hcs-btn-spinner {
    display: inline-block !important;
}

@keyframes hcs-spin {
    to { transform: rotate(360deg); }
}

/* ── SCHEDULE BUTTON ── */
.hcs-btn-schedule {
    display: block !important;
    width: 100% !important;
    background-color: #2979FF !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 14px 24px !important;
    font-family: 'Poppins', Arial, sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    cursor: pointer !important;
    text-align: center !important;
    text-decoration: none !important;
    line-height: 1 !important;
    height: auto !important;
    transition: background-color 0.2s, transform 0.15s !important;
}

.hcs-btn-schedule:hover {
    background-color: #1565C0 !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
}

/* ── MESSAGES ── */
.hcs-msg {
    display: none !important;
    padding: 11px 15px !important;
    border-radius: 7px !important;
    font-family: 'Poppins', Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-bottom: 14px !important;
}

.hcs-msg.hcs-success {
    display: block !important;
    background-color: #d4edda !important;
    color: #155724 !important;
    border: 1px solid #c3e6cb !important;
}

.hcs-msg.hcs-error {
    display: block !important;
    background-color: #f8d7da !important;
    color: #721c24 !important;
    border: 1px solid #f5c6cb !important;
}

/* ── SLIDE DOTS ── */
.hcs-dots {
    position: absolute !important;
    bottom: 24px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 3 !important;
    display: flex !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.hcs-dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.40) !important;
    border: 2px solid rgba(255,255,255,0.75) !important;
    cursor: pointer !important;
    padding: 0 !important;
    font-size: 0 !important;
    transition: background 0.3s, transform 0.2s !important;
}

.hcs-dot.hcs-active {
    background: #ffffff !important;
    transform: scale(1.3) !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hcs-headline {
        font-size: 40px !important;
        line-height: 52px !important;
    }
}

@media (max-width: 960px) {
    .hcs-inner {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 52px 24px 64px !important;
        gap: 36px !important;
    }
    .hcs-left {
        max-width: 100% !important;
    }
    .hcs-form-wrap {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 600px) {
    .hcs-headline {
        font-size: 30px !important;
        line-height: 42px !important;
    }
    .hcs-row-2 {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }
    .hcs-form-wrap {
        padding: 28px 20px 24px !important;
    }
}
/* ── CAPTCHA ── */
.hcs-captcha-wrap {
    margin-bottom: 16px !important;
    display: flex !important;
    justify-content: center !important;
}

.hcs-captcha-wrap .g-recaptcha {
    transform: scale(0.92) !important;
    transform-origin: center top !important;
}

@media (max-width: 400px) {
    .hcs-captcha-wrap .g-recaptcha {
        transform: scale(0.80) !important;
        transform-origin: left top !important;
    }
}