/* ==========================================================================
   CONTACT PAGE — Premium, Responsive, Zero Inline/Internal Styles
   ========================================================================== */

/* =============================================
   1. HERO SECTION
   ============================================= */
.cnt-hero {
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    overflow: hidden;
}

/* Animated blobs */
.cnt-hero-particles { position: absolute; inset: 0; pointer-events: none; }

.cnt-particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: cntBlob 8s ease-in-out infinite;
}

.cnt-p1 {
    width: 280px; height: 280px;
    background: #C5A880;
    top: -80px; left: -60px;
    animation-delay: 0s;
}

.cnt-p2 {
    width: 200px; height: 200px;
    background: #10B981;
    bottom: -40px; right: 8%;
    animation-delay: 3s;
}

@keyframes cntBlob {
    0%, 100% { transform: scale(1) translateY(0); }
    50% { transform: scale(1.06) translateY(-15px); }
}

/* Road stripe */
.cnt-hero-road {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 5px;
    background: repeating-linear-gradient(90deg, #C5A880 0 55px, transparent 55px 85px);
    animation: cntRoad 1.2s linear infinite;
}

@keyframes cntRoad {
    from { background-position: 0 0; }
    to { background-position: 85px 0; }
}

/* Two-column grid */
.cnt-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* LEFT column */
.cnt-hero-left { color: #fff; }

.cnt-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(11, 107, 84, 0.08);
    border: 1px solid rgba(11, 107, 84, 0.15);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--lux-text-slate);
    margin-bottom: 1rem;
    text-decoration: none;
}

.cnt-breadcrumb a {
    color: var(--lux-text-slate);
    text-decoration: none;
    transition: color 0.25s;
}

.cnt-breadcrumb a:hover { color: var(--lux-primary); }

.cnt-breadcrumb i { font-size: 0.62rem; color: var(--lux-primary); }

.cnt-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(11, 107, 84, 0.08);
    border: 1px solid rgba(11, 107, 84, 0.15);
    color: var(--lux-primary);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 1rem;
}

.cnt-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--lux-text-dark);
}

.cnt-gold { color: var(--lux-primary); }

.cnt-hero-desc {
    font-size: 0.95rem;
    color: var(--lux-text-slate);
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 420px;
}

.cnt-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cnt-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cnt-btn-gold {
    background: #C5A880;
    color: #0D2A20;
}

.cnt-btn-gold:hover {
    background: #B89568;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 168, 128, 0.35);
    color: #0D2A20;
}

.cnt-btn-outline {
    background: transparent;
    color: var(--lux-primary);
    border: 1.5px solid var(--lux-primary);
}

.cnt-btn-outline:hover {
    background: var(--lux-primary);
    border-color: var(--lux-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* RIGHT column — floating info card */
.cnt-hero-right { display: flex; justify-content: flex-end; }

.cnt-info-float-card {
    background: rgba(11, 107, 84, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(11, 107, 84, 0.15);
    border-radius: 1.25rem;
    padding: 1.75rem;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 15px 35px rgba(11, 107, 84, 0.08);
}

.cnt-float-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--lux-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(11, 107, 84, 0.1);
}

.cnt-float-row {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.cnt-float-icon {
    width: 36px;
    height: 36px;
    background: rgba(11, 107, 84, 0.08);
    color: var(--lux-primary);
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem;
    flex-shrink: 0;
}

.cnt-float-text small {
    display: block;
    font-size: 0.68rem;
    color: var(--lux-text-slate);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}

.cnt-float-text strong {
    display: block;
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--lux-text-dark);
    word-break: break-word;
    line-height: 1.4;
}

.cnt-float-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(11, 107, 84, 0.1);
}

.cnt-float-stat { text-align: center; flex: 1; }

.cnt-float-stat strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--lux-primary);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.cnt-float-stat span {
    font-size: 0.68rem;
    color: var(--lux-text-slate);
}

.cnt-float-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.12);
}

/* =============================================
   2. MAIN SECTION: INFO + FORM
   ============================================= */
.cnt-main-section {
    padding: 5rem 0;
    background: #FAF9F6;
}

.cnt-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 3rem;
    align-items: start;
}

/* Info column */
.cnt-info-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cnt-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(11, 107, 84, 0.08);
    border: 1px solid rgba(11, 107, 84, 0.18);
    color: #0B6B54;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.cnt-info-heading {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0D2A20;
    margin: 0;
}

.cnt-info-sub {
    font-size: 0.88rem;
    color: #374F46;
    line-height: 1.7;
    margin: 0;
}

.cnt-card {
    background: #fff;
    border-radius: 0.875rem;
    padding: 1.1rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    border: 1px solid #E1E8E5;
    box-shadow: 0 3px 10px rgba(13, 42, 32, 0.04);
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
}

.cnt-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(13, 42, 32, 0.09);
    border-color: #C5A880;
}

.cnt-card-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0B6B54, #10B981);
    color: #fff;
    border-radius: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.cnt-card-text small {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #708A80;
    margin-bottom: 0.12rem;
}

.cnt-card-text strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0D2A20;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.cnt-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.25rem;
    padding-bottom: 2rem; /* Give space for floating buttons */
}

.cnt-social {
    width: 38px;
    height: 38px;
    background: #fff;
    border: 1px solid #E1E8E5;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B6B54;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cnt-social:hover {
    background: #0B6B54;
    color: #fff;
    border-color: #0B6B54;
    transform: translateY(-2px);
}

/* Form box */
.cnt-form-box {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.25rem 2rem;
    box-shadow: 0 10px 35px rgba(13, 42, 32, 0.08);
    border: 1px solid #E1E8E5;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.cnt-form-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0D2A20;
    margin-bottom: 0.3rem;
}

.cnt-form-sub {
    font-size: 0.85rem;
    color: #374F46;
    margin-bottom: 1.5rem;
}

.cnt-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
}

.cnt-field-group {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    margin-bottom: 0.9rem;
}

.cnt-full { width: 100%; }

.cnt-field-group label {
    font-size: 0.77rem;
    font-weight: 700;
    color: #0D2A20;
    letter-spacing: 0.02em;
}

.cnt-req { color: #ef4444; }

.cnt-input,
.cnt-textarea {
    width: 100%;
    padding: 0.72rem 0.95rem;
    border: 1.5px solid #E1E8E5;
    border-radius: 0.7rem;
    font-size: 0.9rem;
    color: #0D2A20;
    background: #FAF9F6;
    font-family: inherit;
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.cnt-input:focus,
.cnt-textarea:focus {
    border-color: #0B6B54;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(11, 107, 84, 0.1);
}

.cnt-input-err {
    border-color: #ef4444;
}

.cnt-textarea {
    resize: vertical;
    min-height: 110px;
}

.cnt-err-msg {
    font-size: 0.73rem;
    color: #ef4444;
}

.cnt-alert {
    padding: 0.8rem 1rem;
    border-radius: 0.7rem;
    font-size: 0.86rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
}

.cnt-alert-ok {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #0B6B54;
}

.cnt-alert-err {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.22);
    color: #b91c1c;
}

.cnt-captcha-wrap { 
    margin-bottom: 1rem; 
    width: 100%;
    overflow: hidden;
}

.cnt-captcha-wrap .g-recaptcha {
    transform-origin: 0 0;
}

.cnt-submit-btn {
    width: 100%;
    padding: 0.9rem;
    background: linear-gradient(135deg, #0B6B54, #10B981);
    color: #fff;
    font-size: 0.97rem;
    font-weight: 700;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
    transition: all 0.3s ease;
    margin-top: 0.25rem;
}

.cnt-submit-btn:hover {
    background: linear-gradient(135deg, #0a5c47, #0ca678);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(11, 107, 84, 0.28);
}

/* =============================================
   3. MAP SECTION
   ============================================= */
.cnt-map-section {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    display: block;
    line-height: 0;
    overflow: hidden;
}

.cnt-map-inner {
    position: relative;
    width: 100%;
}

.cnt-map-inner iframe {
    width: 100%;
    height: 420px;
    display: block;
    border: none;
}

.cnt-map-tag {
    position: absolute;
    top: 1.1rem;
    left: 1.1rem;
    background: #0B6B54;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 14px rgba(11, 107, 84, 0.4);
    z-index: 5;
}

/* =============================================
   4. CTA SECTION
   ============================================= */
.cnt-cta-section {
    padding: 5rem 0;
    background: #FAF9F6;
}

.cnt-cta-card {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border-radius: 1.75rem;
    padding: 3.5rem 2.5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 20px 40px rgba(11, 107, 84, 0.08);
}

.cnt-cta-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cnt-cta-d1 {
    width: 260px; height: 260px;
    background: rgba(197, 168, 128, 0.1);
    top: -70px; right: -50px;
}

.cnt-cta-d2 {
    width: 160px; height: 160px;
    background: rgba(197, 168, 128, 0.07);
    bottom: -40px; left: 5%;
}

.cnt-cta-icon {
    position: relative;
    z-index: 2;
    width: 68px; height: 68px;
    background: rgba(11, 107, 84, 0.08);
    border: 1px solid rgba(11, 107, 84, 0.15);
    border-radius: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: var(--lux-primary);
    margin: 0 auto 1.25rem;
    animation: cntTaxiFloat 3s ease-in-out infinite;
}

@keyframes cntTaxiFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

.cnt-cta-badge {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(11, 107, 84, 0.08);
    border: 1px solid rgba(11, 107, 84, 0.15);
    color: var(--lux-primary);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
}

.cnt-cta-title {
    position: relative;
    z-index: 2;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--lux-text-dark);
    margin-bottom: 0.7rem;
}

.cnt-cta-desc {
    position: relative;
    z-index: 2;
    color: var(--lux-text-slate);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.cnt-cta-actions {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-bottom: 1.75rem;
}

.cnt-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: #C5A880;
    color: #0D2A20;
    padding: 0.85rem 1.9rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.93rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cnt-cta-btn-primary:hover {
    background: #B89568;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(197, 168, 128, 0.35);
    color: #0D2A20;
}

.cnt-cta-btn-call {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: transparent;
    color: var(--lux-primary);
    padding: 0.85rem 1.9rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.93rem;
    text-decoration: none;
    border: 1.5px solid var(--lux-primary);
    transition: all 0.3s ease;
}

.cnt-cta-btn-call:hover {
    background: var(--lux-primary);
    border-color: var(--lux-primary);
    color: #fff;
    transform: translateY(-2px);
}

.cnt-cta-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.93rem;
    text-decoration: none;
    border: 1.5px solid rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.cnt-cta-btn-wa:hover {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    transform: translateY(-2px);
}

.cnt-cta-trust {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.cnt-cta-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    background: rgba(11, 107, 84, 0.05);
    border: 1px solid rgba(11, 107, 84, 0.15);
    color: var(--lux-text-slate);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 600;
}

.cnt-cta-trust span i { color: var(--lux-primary); font-size: 0.72rem; }

/* =============================================
   5. RESPONSIVE
   ============================================= */

/* Tablet */
@media (max-width: 991px) {
    .cnt-hero { padding: 90px 0 50px; }

    .cnt-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cnt-hero-right { justify-content: flex-start; }

    .cnt-info-float-card { max-width: 100%; }

    .cnt-main-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    .cnt-field-row { grid-template-columns: 1fr; gap: 0; }
}

/* Mobile */
@media (max-width: 600px) {
    .cnt-hero { padding: 80px 0 45px; }

    .cnt-hero-title { font-size: 1.85rem; }

    .cnt-hero-btns { flex-direction: column; }

    .cnt-btn { justify-content: center; }

    .cnt-form-box { padding: 1.5rem 1.1rem; }

    .cnt-field-row { grid-template-columns: 1fr; }

    .cnt-captcha-wrap .g-recaptcha {
        transform: scale(0.85);
    }

    .cnt-map-inner iframe { height: 280px; }

    .cnt-cta-card { padding: 2.5rem 1.25rem; }

    .cnt-cta-actions { flex-direction: column; align-items: stretch; }

    .cnt-cta-btn-primary,
    .cnt-cta-btn-call,
    .cnt-cta-btn-wa { justify-content: center; }
}

/* Very small screens */
@media (max-width: 380px) {
    .cnt-hero-title { font-size: 1.6rem; }
    .cnt-info-float-card { padding: 1.25rem; }
    .cnt-captcha-wrap .g-recaptcha {
        transform: scale(0.75);
    }
}
