/* =============================================
   CONTACT PAGE � cnt-* components
   ============================================= */

/* ---- Hero ---- */
.cnt-hero {
    background: linear-gradient(180deg, #0d1333 0%, #0a0f29 100%);
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cnt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 30%, rgba(0,143,215,0.13) 0%, transparent 52%);
    pointer-events: none;
}

.cnt-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cnt-hero-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: fit-content;
    margin: 0 auto 18px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(0, 143, 215, 0.10);
    color: var(--pf-blue);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cnt-hero-label i { font-size: 1rem; }

.cnt-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.cnt-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.75;
    margin: 0;
}

/* ---- Main section ---- */
.cnt-section {
    padding: 64px 0 80px;
}

/* Instagram Button */
.cnt-btn-instagram{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:11px 22px;
    background:#E1306C;
    color:#fff !important;
    border-radius:10px;
    font-size:.875rem;
    font-weight:600;
    text-decoration:none;
    transition:.25s;
    margin-top:4px;
}

.cnt-btn-instagram:hover{
    transform:translateY(-2px);
    opacity:.92;
    color:#fff !important;
    box-shadow:0 8px 20px rgba(225,48,108,.3);
}

/* TikTok Button */
.cnt-btn-tiktok{
    display:inline-flex;
    align-items:center;
    gap:7px;
    padding:11px 22px;
    background: #000000;
    color:#fff !important;
    border-radius:10px;
    font-size:.875rem;
    font-weight:600;
    text-decoration:none;
    transition:.25s;
    margin-top:4px;
}

.cnt-btn-tiktok:hover{
    transform:translateY(-2px);
    opacity:.92;
    color:#fff !important;
    box-shadow:0 8px 20px rgba(254,44,85,.25);
}

/* ---- Method Cards ---- */
.cnt-method-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    height: 100%;
    transition: border-color 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cnt-method-card:hover {
    border-color: rgba(0,143,215,0.35);
    transform: translateY(-4px);
}

.cnt-method-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.625rem;
    margin-bottom: 4px;
    flex-shrink: 0;
}

.cnt-method-icon--wa    { background: rgba(37,211,102,0.12); color: #25d366; }
.cnt-method-icon--email { background: rgba(0,143,215,0.12);  color: var(--accent-color); }
.cnt-method-icon--phone { background: rgba(139,92,246,0.12); color: #a78bfa; }
.cnt-method-icon--instagram { background: rgba(225,48,108,0.12); color: #e1306c; }
.cnt-method-icon--tiktok { background: rgba(0,0,0,0.12); color: #69c9d0; }

.cnt-method-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0;
}

.cnt-method-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
    flex: 1;
}

.cnt-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 22px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    margin-top: 4px;
}

.cnt-btn-primary:hover { opacity: 0.9; transform: translateY(-1px); color: #fff; }

.cnt-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 22px;
    background: transparent;
    color: var(--text-muted);
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    margin-top: 4px;
}

.cnt-btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* ---- Form Card ---- */
.cnt-form-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
}

.cnt-form-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.cnt-form-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.375rem;
}

.cnt-form-head h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 3px;
}

.cnt-form-head p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
}

/* Alerts */
.cnt-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.cnt-alert i { font-size: 1.125rem; flex-shrink: 0; }

.cnt-alert--success {
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.25);
    color: #34d399;
}

.cnt-alert--error {
    background: rgba(239,68,68,0.09);
    border: 1px solid rgba(239,68,68,0.22);
    color: #f87171;
}

/* Form fields */
.cnt-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 8px;
}

.cnt-label span { color: var(--accent-color); }

.cnt-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--input-bg, rgba(255,255,255,0.04));
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-heading);
    font-size: 0.9375rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.cnt-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0,143,215,0.14);
}

.cnt-input::placeholder { color: var(--text-muted); opacity: 0.65; }

.cnt-input--error {
    border-color: rgba(239,68,68,0.5);
}

.cnt-input--error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.12);
}

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

/* Captcha Display Box */
.cnt-captcha-display {
    width: auto;
    min-width: 130px;
    padding: 0 16px;
    height: 48px;
    background: var(--input-bg, rgba(255, 255, 255, 0.05));
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-heading);
    font-weight: 700;
    font-size: 1.05rem;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .cnt-captcha-display {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

.cnt-field-error {
    font-size: 0.8125rem;
    color: #f87171;
    margin-top: 5px;
}

.cnt-submit-btn {
    width: 100%;
    padding: 14px 28px;
    background: var(--accent-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: opacity 0.2s, transform 0.2s;
}

.cnt-submit-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.cnt-submit-btn:active { transform: translateY(0); }

/* ---- Map ---- */
.cnt-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
    height: 280px;
}

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

/* ---- Address Card ---- */
.cnt-address-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
}

.cnt-address-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.cnt-address-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.cnt-address-row:last-child { border-bottom: none; padding-bottom: 0; }

.cnt-address-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(0,143,215,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1rem;
}

.cnt-address-lbl {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.cnt-address-val {
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.65;
}

/* Social links */
.cnt-socials {
    display: flex;
    gap: 8px;
    margin-top: 4px;
    flex-wrap: wrap;
}

.cnt-social {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    text-decoration: none;
    transition: transform 0.2s, opacity 0.2s;
}

.cnt-social:hover { transform: translateY(-2px); opacity: 0.85; }

.cnt-social--fb { background: rgba(24,119,242,0.15); color: #1877f2; }
.cnt-social--ig { background: rgba(225,48,108,0.15); color: #e1306c; }
.cnt-social--li { background: rgba(0,119,181,0.15);  color: #0077b5; }
.cnt-social--tt { background: rgba(255,255,255,0.08); color: var(--text-body); }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .cnt-hero {
        padding: 56px 0 44px;
    }
    .cnt-hero-inner {
        max-width: 760px;
    }
    .cnt-hero-title {
        font-size: 2rem;
    }
    .cnt-section {
        padding: 52px 0;
    }
    .cnt-method-card {
        padding: 20px 18px;
        min-height: 100%;
    }
    .cnt-form-card,
    .cnt-address-card {
        padding: 18px;
    }
    .cnt-map-wrapper {
        height: 240px;
    }
}

@media (max-width: 767px) {
    .cnt-hero { padding: 44px 0 34px; }
    .cnt-hero-label {
        margin-bottom: 10px;
        font-size: 0.625rem;
        letter-spacing: 0.14em;
    }
    .cnt-hero-title {
        font-size: 1.7rem;
        margin-bottom: 10px;
    }
    .cnt-hero-sub {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .cnt-section { padding: 36px 0; }
    .cnt-section .row.g-4 {
        --bs-gutter-x: 0.85rem;
        --bs-gutter-y: 0.85rem;
    }
    .cnt-section .mb-5 {
        margin-bottom: 1.4rem !important;
    }

    .cnt-method-card {
        border-radius: 12px;
        padding: 14px 12px;
        align-items: flex-start;
        text-align: left;
        gap: 6px;
    }
    .cnt-method-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        font-size: 1.25rem;
        margin-bottom: 0;
    }
    .cnt-method-card h4 {
        font-size: 0.9rem;
    }
    .cnt-method-card p {
        font-size: 0.8rem;
        line-height: 1.45;
        margin-bottom: 4px;
    }
    .cnt-btn-primary,
    .cnt-btn-outline {
        width: 100%;
        justify-content: center;
        padding: 10px 12px;
        font-size: 0.82rem;
        border-radius: 8px;
        margin-top: 2px;
    }

    .cnt-form-card {
        padding: 14px 12px;
        border-radius: 12px;
    }
    .cnt-form-head {
        gap: 8px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .cnt-form-icon {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        font-size: 1rem;
    }
    .cnt-form-head h3 {
        font-size: 0.96rem;
        margin-bottom: 1px;
        line-height: 1.25;
    }
    .cnt-form-head p {
        font-size: 0.76rem;
        line-height: 1.35;
    }
    .cnt-label {
        font-size: 0.76rem;
        margin-bottom: 3px;
    }
    .cnt-input {
        padding: 10px 12px;
        border-radius: 8px;
        font-size: 0.85rem;
    }
    .cnt-textarea {
        min-height: 90px;
    }
    .cnt-field-error {
        font-size: 0.72rem;
        margin-top: 4px;
    }
    .cnt-submit-btn {
        padding: 11px 12px;
        border-radius: 8px;
        font-size: 0.86rem;
        gap: 6px;
    }

    .cnt-map-wrapper {
        height: 190px;
        border-radius: 12px;
        margin-bottom: 10px;
    }
    .cnt-address-card {
        padding: 12px;
        border-radius: 12px;
    }
    .cnt-address-card h4 {
        font-size: 0.92rem;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .cnt-address-row {
        gap: 10px;
        padding: 9px 0;
    }
    .cnt-address-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    .cnt-address-lbl {
        font-size: 0.68rem;
        margin-bottom: 2px;
        letter-spacing: 0.06em;
    }
    .cnt-address-val {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .cnt-hero {
        padding: 24px 0 20px;
    }
    .cnt-hero-title {
        font-size: 1.45rem;
    }
    .cnt-hero-sub {
        font-size: 0.84rem;
    }
    .cnt-section {
        padding: 20px 0;
    }
    .cnt-section .row.g-4,
    .cnt-section .row.g-3 {
        --bs-gutter-x: 0.65rem;
        --bs-gutter-y: 0.65rem;
    }
    .cnt-method-card {
        border-radius: 10px;
        padding: 12px 10px;
    }
    .cnt-method-card h4 {
        font-size: 0.86rem;
    }
    .cnt-method-card p {
        font-size: 0.76rem;
    }
    .cnt-method-icon {
        width: 36px;
        height: 36px;
        border-radius: 9px;
        font-size: 1.05rem;
    }
    .cnt-form-card,
    .cnt-address-card {
        border-radius: 10px;
        padding: 10px;
    }
    .cnt-map-wrapper {
        height: 170px;
        border-radius: 10px;
    }
    .cnt-submit-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
        font-size: 0.82rem;
    }
    .cnt-label {
        font-size: 0.74rem;
    }
    .cnt-input {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    .cnt-textarea {
        min-height: 80px;
    }
    .cnt-address-row {
        gap: 8px;
        padding: 8px 0;
    }
    .cnt-address-icon {
        width: 28px;
        height: 28px;
        font-size: 0.82rem;
    }
}

