/* ============================================
   HERO (Julius Baer – clean, minimal)
   ============================================ */
.hero {
    position: relative;
    background-image: url('../img/hero-bg.jpg');  /* <-- HERE */
    background-size: cover;
    background-position: center 60%;
    background-repeat: no-repeat;
    padding: 220px 0;
    text-align: center;
    border-bottom: 1px solid #F0F0F0;
}

/* Text with semi-transparent background (inline-block) */
.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1B4D3E;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    display: block;
    background: rgba(255, 255, 255, 0.6); /* semi-transparent dark background */
    padding: 0.2em 0.3em;
    border-radius: 4px;
    text-shadow: none;
    line-height: 1.3;
}

.hero p {
    font-size: 1.1rem;
    max-width: 750px;
    margin: 0 auto 10px;
    color: #4A4A4A;
    background: rgba(255, 255, 255, 0.6);
    display: block;
    padding: 0.2em 0.2em;
    border-radius: 4px;
    text-shadow: none;
}

/* Button remains solid (no background needed) */
.hero .btn-primary {
    background-color: #1B4D3E;
    border-color: #1B4D3E;
    color: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    display: block;
    width: fit-content;
    margin: 32px auto 0 auto;
}


.hero .btn-primary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* ============================================
   FORM (optional minimalist touch)
   ============================================ */
.form-section {
    background-color: #FFFFFF;
    padding: 0px 0;
    border-top: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
}

.form-container {
    max-width: 860px;
    margin: 0 auto;
    background: #FFFFFF;
    border: none;            /* removed border for cleaner look */
    padding: 48px 0;         /* reduced padding */
    box-shadow: none;
}

.form-header {
    text-align: left;
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 1.6rem;
    color: #1B4D3E;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.form-header p {
    color: #5A5A5A;
    font-size: 1rem;
    line-height: 1.5;
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.form-group {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    width: 100%;
    flex: 100%;
}

.form-group label {
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1B4D3E;
}

.form-group label .required {
    color: #C7362B;
    margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.2s;
    background-color: #FEFEFE;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3B9E6A;
    box-shadow: 0 0 0 3px rgba(59, 158, 106, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
    margin: 0;
}

.checkbox-group label {
    text-transform: none;
    font-weight: 400;
    font-size: 0.9rem;
    color: #2C2C2C;
}

.form-actions {
    margin-top: 16px;
    display: flex;
    justify-content: flex-start;
}

.btn-submit {
    background-color: #1B4D3E;
    color: white;
    padding: 14px 36px;
    font-weight: 600;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s;
}

.btn-submit:hover {
    background-color: #3B9E6A;
}

.form-note {
    font-size: 0.75rem;
    color: #6C757D;
    margin-top: 24px;
    border-top: 1px solid #EDEDED;
    padding-top: 20px;
}
