/* ============================
   CONTACT DRAWER
   ============================ */

/* CONTACT BUTTON */
.ct-btn {
    padding: 12px 30px;
    background: var(--gold, #d4af37);
    color: var(--navy, #1a2a3a);
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}

.ct-btn:hover {
    background: var(--navy, #1a2a3a);
    color: var(--white, #fff);
}

/* DRAWER OVERLAY
   Covers the viewport so the rest of the page dims and clicking outside
   the panel closes it — but the panel itself (.ct-content) stays a fixed,
   contained width on the right. */
.ct-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(15, 25, 35, 0.55);
    transition: right 0.4s ease;
    z-index: 99999;
}

.ct-drawer.active {
    right: 0;
}

/* DRAWER PANEL */
.ct-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 380px;
    max-width: 90%;
    height: 100vh;
    background: var(--white, #fff);
    padding: 60px 30px 30px;
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
}

/* CLOSE BUTTON
   Fixed to the panel's top-right corner so it always stays visible,
   even if the contact list is long enough to scroll. Red, on purpose,
   so it's instantly recognizable as "close". */
.ct-close {
    position: fixed;
    top: 14px;
    right: 20px;
    font-size: 36px;
    line-height: 1;
    color: #d32f2f;
    font-weight: bold;
    cursor: pointer;
    z-index: 100000;
    transition: color 0.2s;
}

.ct-close:hover {
    color: #a31515;
}

/* HEADING */
.ct-content h2 {
    color: var(--navy, #1a2a3a);
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

/* CONTACT CARD */
.ct-person {
    background: var(--cream, #f9f6f1);
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid var(--gold, #d4af37);
}

.ct-person h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--navy, #1a2a3a);
}

.ct-person a {
    text-decoration: none;
    color: var(--gold, #d4af37);
    font-size: 17px;
    font-weight: 600;
}

.ct-person a:hover {
    text-decoration: underline;
}
