/* ===== Contact Page ===== */

.contact-main {
    padding-top: 9vh;
}

.page-hero {
    padding: 4vh 4vh 2vh 4vh;
    text-align: center;
}

.page-hero h1 {
    font-size: 5vh;
    font-weight: 800;
    color: rgba(10,10,10,0.88);
    margin: 0 0 1vh 0;
}

.page-hero h1 span { color: #164fb8; }

.page-hero p {
    font-size: 2.2vh;
    color: rgba(0,0,0,0.55);
    margin: 0;
}

/* Contact layout */
.contact-section {
    padding: 2vh 4vh 5vh 4vh;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5vh;
    max-width: 960px;
    margin: 0 auto;
}

.contact-single {
    grid-template-columns: 1fr;
    max-width: 560px;
}

/* Card */
.contact-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.09);
    padding: 2.8vh;
    height: 100%;
    box-sizing: border-box;
}

.contact-card h2 {
    font-size: 2.6vh;
    font-weight: 800;
    color: rgba(10,10,10,0.88);
    margin: 0 0 2vh 0;
}

/* Contact links */
.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1.2vh;
    margin-bottom: 2.5vh;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 1.4vh;
    padding: 1.4vh 1.8vh;
    background: rgba(22,79,184,0.05);
    border: 1px solid rgba(22,79,184,0.14);
    border-radius: 14px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.contact-link-item:hover {
    background: rgba(22,79,184,0.12);
    transform: translateX(3px);
    box-shadow: 0 4px 16px rgba(22,79,184,0.14);
}

.contact-link-icon { font-size: 2.4vh; flex-shrink: 0; }

.contact-link-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.cl-label {
    font-size: 1.4vh;
    font-weight: 700;
    color: rgba(0,0,0,0.45);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cl-value {
    font-size: 1.8vh;
    font-weight: 700;
    color: #164fb8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cl-arrow {
    font-size: 2vh;
    color: #164fb8;
    font-weight: 700;
}

/* Copy success state */
.cl-value.copied {
    color: #18a855;
}

/* Location */
.contact-location {
    display: flex;
    align-items: center;
    gap: 0.8vh;
    font-size: 1.8vh;
    color: rgba(0,0,0,0.6);
    margin-bottom: 1.4vh;
}

.location-icon { font-size: 2vh; }

/* Availability */
.contact-availability {
    display: flex;
    align-items: center;
    gap: 1vh;
    padding: 1.2vh 1.6vh;
    background: rgba(34,170,85,0.08);
    border: 1px solid rgba(34,170,85,0.22);
    border-radius: 12px;
    font-size: 1.7vh;
    color: rgba(0,0,0,0.7);
}

.avail-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #18a855;
    flex-shrink: 0;
    animation: pulse-avail 1.8s ease-in-out infinite;
}

@keyframes pulse-avail {
    0%, 100% { box-shadow: 0 0 0 0 rgba(24,168,85,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(24,168,85,0); }
}

/* Form */
.form-note {
    font-size: 1.6vh;
    color: rgba(0,0,0,0.5);
    margin: -0.5vh 0 2vh 0;
}

.form-group {
    margin-bottom: 1.8vh;
}

.form-group label {
    display: block;
    font-size: 1.6vh;
    font-weight: 700;
    color: rgba(0,0,0,0.65);
    margin-bottom: 0.6vh;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2vh 1.5vh;
    border: 1.5px solid rgba(0,0,0,0.14);
    border-radius: 12px;
    font-size: 1.8vh;
    font-family: 'Nunito', sans-serif;
    background: rgba(255,255,255,0.85);
    color: rgba(10,10,10,0.82);
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #164fb8;
    box-shadow: 0 0 0 3px rgba(22,79,184,0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 11vh;
}

/* Send button */
.send-btn {
    width: 100%;
    padding: 1.8vh 0;
    background: #164fb8;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 2vh;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(22,79,184,0.28);
    margin-bottom: 1.2vh;
}

.send-btn:hover {
    background: #0d3080;
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(22,79,184,0.36);
}

.send-btn:active { transform: translateY(0); }

/* Disclaimer */
.form-disclaimer {
    font-size: 1.4vh;
    color: rgba(0,0,0,0.4);
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 700px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 2vh 2vh 4vh 2vh;
    }
}
