/* ==========================================
   GLOBAL DESIGN VARIABLES & RESETS
========================================== */
:root {
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-dark: #1e40af;
    --primary-light: #eff6ff;
    
    --text-main: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    --bg-page: #f8fafc;
    --bg-surface: #ffffff;
    
    --border-subtle: #e2e8f0;
    --border-hover: #cbd5e1;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-page);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

/* ==========================================
   CONTACT HERO
========================================== */
.contact-hero {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 72px 0 56px;
    border-bottom: 1px solid var(--border-subtle);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 16px;
    border: 1px solid #dbeafe;
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 14px;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.contact-hero p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.65;
}

/* ==========================================
   BREADCRUMB
========================================== */
.breadcrumb {
    padding: 14px 0;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border-subtle);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb .separator {
    font-size: 10px;
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--text-main);
    font-weight: 600;
}

/* ==========================================
   CONTACT SECTION & LAYOUT
========================================== */
.contact-section {
    padding: 56px 0 80px;
}

.contact-wrapper {
    display: grid;
    /* grid-template-columns: 800px 3fr; */
    gap: 32px;
    margin-bottom: 48px;
    width: 100%;
    max-width: 600px;
}

/* ==========================================
   CONTACT INFO (LEFT)
========================================== */
.contact-info,
.contact-form-container {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.contact-info h2,
.contact-form-container h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
    letter-spacing: -0.015em;
}

.contact-subtitle,
.form-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid #dbeafe;
}

.contact-text h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-text .sub-detail {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
}

/* Social Connections */
.social-area {
    border-top: 1px solid var(--border-subtle);
    padding-top: 24px;
}

.social-area h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-main);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--bg-page);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.social-icons a:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

/* ==========================================
   CONTACT FORM (RIGHT)
========================================== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--text-main);
    background: var(--bg-surface);
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-light);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.submit-btn {
    align-self: flex-start;
    background: var(--primary);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 10px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.submit-btn:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

/* ==========================================
   HELP BOX (BANNER)
========================================== */

.bottom-banner{
    padding: 56px 0 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.help-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    box-shadow: var(--shadow-md);
}

.help-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.help-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    flex-shrink: 0;
    border: 1px solid #dbeafe;
}

.help-text h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.help-text p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 14px;
    max-width: 600px;
}

.help-btn {
    text-decoration: none;
    background: var(--bg-page);
    color: var(--text-main);
    border: 1px solid var(--border-subtle);
    padding: 12px 24px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.help-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transform: translateY(-1px);
}

/* ==========================================
   RESPONSIVE DESIGN
========================================== */
@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info,
    .contact-form-container {
        padding: 28px;
    }

    .help-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
    }

    .help-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 56px 0 40px;
    }

    .contact-hero h1 {
        font-size: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }

    .help-left {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .contact-hero h1 {
        font-size: 25px;
    }

    .contact-info,
    .contact-form-container {
        padding: 20px;
    }

    .contact-item {
        gap: 12px;
    }

    .help-box,
    .bottom-banner .help-box {
        padding: 20px;
    }

    .help-text h3 {
        font-size: 18px;
    }
}