﻿:root {
    --primary-dark: #0B1C2D;
    --accent-yellow: #F9E27E;
    --text-muted: #6c757d;
    --bg-light-gray: #F8F9FA;
}

body {
   
    background-color: #ffffff;
    color: var(--primary-dark);
}

.back-home-btn {
    color: #0e1b3d; 
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(14, 27, 61, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

    .back-home-btn:hover {
        background-color: #0e1b3d;
        color: #c5a059;
        transform: translateX(-5px); 
    }

    .back-home-btn i {
        font-size: 12px;
    }
.hero-section {
    padding-top: 150px; 
    padding-bottom: 60px;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center !important; 
    justify-content: center !important; 
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: 1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 600px;
    margin-left: 10px;
}

.yellow-line {
    width: 60px;
    height: 4px;
    background-color: #F9E27E;
    margin-left: 1px;
}

/* Form Card */
.contact-card {
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #adb5bd;
}

.form-control, .form-select {
    border: none;
    border-bottom: 1px solid #dee2e6;
    border-radius: 0;
    padding: 10px 0;
    margin-bottom: 30px;
}

    .form-control:focus, .form-select:focus {
        box-shadow: none;
        border-color: var(--primary-dark);
    }

.btn-submit {
    background-color: var(--primary-dark);
    color: white;
    width: 100%;
    padding: 15px;
    border-radius: 6px;
    font-weight: 600;
}

.inquiry-box {
    text-align: center;
    padding: 40px 20px;
}

.icon-wrapper {
    width: 65px;
    height: 65px;
    background-color: var(--bg-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

    .icon-wrapper i {
        font-size: 1.5rem;
        color: var(--primary-dark);
    }

.inquiry-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.inquiry-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.inquiry-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-yellow);
}
