:root {
    --brand-green: #00b67a;
    --dark-forest: #021a1f;
    --card-border: #eef2f6;
    --text-color: #475569;
}

/* ==========================================================================
   1. HERO SECTION STYLES
   ========================================================================== */
.contact-hero-section {
    position: relative;
    width: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1613977257363-707ba9348227?auto=format&fit=crop&w=1600&q=80') no-repeat center right;
    background-size: cover;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #021a1f 35%, rgba(2, 26, 31, 0.9) 55%, rgba(2, 26, 31, 0.2) 100%);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5) !important;
    content: "\f054" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 10px !important;
    vertical-align: middle;
}

.breadcrumb-item, .breadcrumb-item a {
    font-size: 14px;
    letter-spacing: 0.5px;
}

.hero-main-title {
    font-size: 48px;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.hero-sub-title {
    color: var(--brand-green);
    font-size: 24px;
    margin-bottom: 18px;
}

.hero-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5e1;
    max-width: 450px;
}

/* ==========================================================================
   2. MAIN CONTENT STYLES
   ========================================================================== */
.badge-tag {
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--brand-green);
    margin-bottom: 8px;
    display: inline-block;
}

.section-title {
    color: #1e293b;
    font-size: 32px;
}

.section-desc {
    font-size: 14px;
    line-height: 1.6;
}

/* Info Cards */
.info-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 12px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.info-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-text h6 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.info-text p, .info-text a {
    font-size: 13px;
    color: var(--text-color);
    text-decoration: none;
    display: block;
    margin: 0;
    line-height: 1.5;
}

.info-text a:hover {
    color: var(--brand-green);
}

/* Map Section */
.map-container {
    border: 1px solid var(--card-border);
}

/* ==========================================================================
   3. CONTACT FORM STYLES
   ========================================================================== */
.contact-form-card {
    background-color: #ffffff;
}

.form-title {
    color: #021a1f;
    font-size: 22px;
}

.green-divider {
    width: 50px;
    height: 3px;
    background-color: var(--brand-green);
    border-radius: 2px;
}

.form-label {
    font-size: 13px;
    margin-bottom: 6px;
}

.form-control, .form-select {
    border: 1px solid #e2e8f0;
    padding: 11px 16px;
    font-size: 14px;
    border-radius: 8px;
    background-color: #f8fafc;
    transition: all 0.2s ease-in-out;
}

.form-control:focus, .form-select:focus {
    background-color: #ffffff;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(0, 182, 122, 0.1);
    color: #1e293b;
}

.btn-send {
    background-color: var(--brand-green);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: all 0.3s ease;
}

.btn-send:hover {
    background-color: #009c69;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 182, 122, 0.3);
}

/* ==========================================================================
   4. TRUST BADGES
   ========================================================================== */
.badge-item {
    padding: 10px;
}

.badge-icon i {
    color: var(--brand-green) !important;
}

/* ==========================================================================
   5. MOBILE RESPONSIVENESS
   ========================================================================== */
@media (max-width: 991.98px) {
    .contact-hero-section {
        min-height: 300px;
        background-position: center;
    }
    .contact-hero-section::before {
        background: linear-gradient(180deg, rgba(2, 26, 31, 0.85) 0%, rgba(2, 26, 31, 0.95) 100%);
    }
    .hero-content-wrapper {
        text-align: center;
    }
    .hero-main-title {
        font-size: 36px;
    }
    .hero-sub-title {
        font-size: 20px;
    }
    .hero-desc {
        font-size: 13.5px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .contact-form-card {
        padding: 25px 20px !important;
    }
    .badge-item {
        margin-bottom: 15px;
    }
}