.contact-hero {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #1f4037, #99f2c8);
    color: white;
    text-align: center;
}
.contact-hero .hero-title { font-size: 3rem; font-weight: 700; margin-bottom: .5rem; }
.contact-hero .hero-subtitle { font-size: 1.1rem; opacity: .95; }
.contact-hero .hero-overlay { position:absolute; inset:0; pointer-events:none; }

.contact-grid { padding: 4rem 0; background: #f8f9fa; }
.grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; }
.contact-card { background:#fff; border:1px solid #e9ecef; border-radius:14px; padding:1.5rem; box-shadow:0 6px 20px rgba(0,0,0,.06); }
.contact-card h3 { margin:0 0 .5rem; font-size:1.2rem; color:#1f2937; }
.contact-link { color:#1a73e8; text-decoration:none; }
.contact-link:hover { text-decoration:underline; }
.muted { color:#6b7280; font-size:.95rem; }

.contact-section { padding: 4rem 0; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.form-wrapper { max-width: 800px; margin: 0 auto; background: rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2); border-radius:22px; padding:2rem; color:#fff; backdrop-filter: blur(10px); }
.contact-form .form-row { display:grid; grid-template-columns: repeat(2,1fr); gap:1rem; }
.contact-form .form-group { margin-bottom:1rem; }
.contact-form label { display:block; margin-bottom:.4rem; font-weight:600; }
.contact-form input, .contact-form select, .contact-form textarea { width:100%; padding:.9rem 1rem; border-radius:10px; border:1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.1); color:#fff; }

/* Select dropdown options styling */
.contact-form select {
    color: #333 !important;
    background: rgba(255,255,255,.95) !important;
}

.contact-form select option {
    color: #333 !important;
    background: #fff !important;
    padding: 10px;
}
.contact-form textarea { resize: vertical; }
.form-actions { text-align:right; }
.submit-btn { padding:.9rem 1.6rem; border-radius:24px; border:2px solid #fff; background:#fff; color:#667eea; font-weight:700; cursor:pointer; }
.submit-btn:hover { background: rgba(255,255,255,.9); }

.map-section { padding: 3rem 0; background:#fff; }
.map-embed iframe { width:100%; min-height: 360px; border:0; border-radius:14px; box-shadow:0 10px 30px rgba(0,0,0,.1); }

/* reuse success modal styles from careers.css if present */
.modal-overlay { position: fixed; inset: 0; display:flex; align-items:center; justify-content:center; backdrop-filter: blur(4px); background: rgba(0,0,0,.5); z-index: 9999; }
.modal-content { background:#fff; border-radius:16px; padding:2rem; width:min(420px, 92%); text-align:center; box-shadow:0 20px 40px rgba(0,0,0,.25); }
.close-btn { background:#333; color:#fff; border:none; border-radius:24px; padding:.7rem 1.6rem; cursor:pointer; }

/* Checkbox Styles */
.checkbox-group {
    margin: 20px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    flex-wrap: nowrap;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #fff;
    border-color: #fff;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid #667eea;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Inline checkbox styling for single line display */
.checkbox-label.inline {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.checkbox-label.inline .checkmark {
    margin-right: 8px;
}

@media (max-width: 768px){
  .contact-form .form-row { grid-template-columns: 1fr; }
}


