/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

#contactForm {
    background-color: #EDEDED87;
    padding: 30px;
}

/* Hero Section */
.contact-hero-section {
    position: relative;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/contact/contact-hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(18, 50, 53, 0.88) 0%,
            rgba(18, 50, 53, 0.82) 50%,
            rgba(18, 50, 53, 0.92) 100%);
    z-index: 1;
}

/* ============================================
   CONTACT FORM STYLES
   ============================================ */

.contact-form-label {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 6px;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid #d1d5db;
    background: transparent;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-text-dark);
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: #9ca3af;
    font-size: 13px;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
    border-bottom-color: var(--color-primary);
}

.contact-form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
}

.contact-form-textarea {
    resize: vertical;
    min-height: 60px;
}

.contact-send-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 32px;
    background-color: #C4DA4B;
    color: var(--color-text-headings);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.9;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-send-btn:hover {
    transform: translateY(-1px);
}

/* ============================================
   LOCATION CARDS
   ============================================ */

.location-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px 15px;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.location-card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}

/* ============================================
   CONTACT INFO BAR ICONS
   ============================================ */

.contact-info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.contact-info-icon svg {
    width: 36px;
    height: 36px;
    color: var(--color-primary);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (min-width: 640px) {
    .location-card-img {
        height: 180px;
    }
}

@media (min-width: 1024px) {
    .location-card-img {
        height: 200px;
    }
}