.clinic-logo-img { 
    height: 65px; 
    transition: 0.3s; 
    filter: none !important; 
}

.nav-link {
    color: #000000 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-shadow: none !important;
}

.nav-link:hover {
    color: #e0e0e0;
    transform: translateY(-1px);
}

/* --- APPOINTMENT PAGE STYLES --- */
.appointment-section {
    min-height: 100vh;
    background-color: #f8f9fa;
    padding: 120px 0 80px 0; /* Space for fixed header */
}

.appointment-card {
    background: #ffffff;
    max-width: 700px;
    width: 100%;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(12, 28, 53, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 15px;
}

.section-tag .dot {
    width: 6px; height: 6px;
    background: #d4af37;
    border-radius: 50%;
}

.form-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #0c1c35;
    font-weight: 700;
}

.blue-text { color: #013578; }

.form-subtitle {
    font-family: 'Lato', sans-serif;
    color: #666;
    font-size: 15px;
    max-width: 80%;
    margin: 15px auto 0;
}

/* Custom Input Styling */
.input-group-custom {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group-custom label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #0c1c35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.input-group-custom input, 
.input-group-custom select {
    padding: 14px 20px;
    border: 1.5px solid #eee;
    border-radius: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
    box-shadow: 0 6px 12px rgba(12, 28, 53, 0.12);
}

.input-group-custom input:focus, 
.input-group-custom select:focus {
    outline: none;
    border-color: #d4af37;
    background: #fff;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.05);
}

/* Submit Button */
.btn-submit-appointment {
    width: 100%;
    background: linear-gradient(135deg, #013578 0%, #136ab6 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(1, 53, 120, 0.2);
}

.btn-submit-appointment:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(1, 53, 120, 0.3);
}

.alert-success-custom {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .appointment-card { padding: 40px 25px; }
    .form-title { font-size: 28px; }
}


/* ========================================= */
/* FIX HAMBURGER COLOR ON LIGHT PAGES       */
/* ========================================= */

@media (max-width: 991px) {

    .clinic-header {
        padding: 3px 0 !important;
    }

    /* Make menu lines dark on appointment page */
    .clinic-header .hamburger-lines .line {
        background: #0c1c35 !important;
    }

    /* When header becomes scrolled */
    .clinic-header.scrolled .hamburger-lines .line {
        background: #0c1c35 !important;
    }

}
