/* ============================================
   CONTACT PAGE — Glassmorphism layout
   Frosted panels over blurred background
   ============================================ */

.contact-page {
    font-family: 'Outfit', sans-serif;
    background: #2a2a2a;
}

/* Hero wrapper with background */
.cp-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cp-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(12px);
    transform: scale(1.08);
}

.cp-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.cp-section {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 60px;
    width: 100%;
    text-align: center;
}

.cp-section > .cp-containers {
    text-align: left;
}

/* Centered title */
.cp-title {
    text-align: center;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 40px;
    letter-spacing: -0.02em;
    padding: 12px 24px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.cp-title span {
    color: var(--brand-primary);
}

/* Two containers side by side */
.cp-containers {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 28px;
}

@media (max-width: 900px) {
    .cp-containers {
        grid-template-columns: 1fr;
    }
}

/* ---- Container 1: Frosted white glass panel ---- */
.cp-info-container {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.cp-info-block {
    margin-bottom: 24px;
}

.cp-info-block:last-child {
    margin-bottom: 0;
}

.cp-info-block h2 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cp-block-icon {
    font-size: 18px;
}

.cp-info-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.12), transparent);
    margin: 24px 0;
    border-radius: 1px;
}

.cp-office-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 12px;
}

.cp-office-card:last-child {
    margin-bottom: 0;
}

.cp-office-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px;
}

.cp-office-card p {
    font-size: 16px;
    line-height: 1.55;
    color: #333;
    margin: 0;
}

.cp-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.cp-list li {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cp-list li:last-child {
    margin-bottom: 0;
}

.cp-list a {
    font-weight: 600;
    font-size: 17px;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s;
}

.cp-list a:hover {
    color: var(--brand-primary);
}

.cp-list li span {
    font-size: 15px;
    color: #555;
}

/* ---- Container 2: Frosted white glass map panel ---- */
.cp-map-container {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    display: flex;
    flex-direction: column;
}

.cp-map-container h2 {
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px;
}

.cp-map-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.cp-map-tab {
    padding: 10px 18px;
    border: 1px solid rgba(180, 74, 63, 0.35);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: #1a1a1a;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cp-map-tab:hover {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.cp-map-tab-active {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

.cp-map-tab-active:hover {
    color: #fff;
}

.cp-map-panel {
    position: relative;
    flex: 1;
    min-height: 360px;
    border-radius: 14px;
    overflow: hidden;
    background: #e8eaed;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.cp-map-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.cp-map-directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 12px 20px;
    background: var(--brand-primary);
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    width: fit-content;
    transition: background 0.2s;
}

.cp-map-directions:hover {
    background: var(--brand-dark);
    color: #fff;
}

.cp-map-directions::after {
    content: '→';
}

@media (max-width: 900px) {
    .cp-map-panel {
        min-height: 300px;
    }
}

@media (max-width: 600px) {
    .cp-map-container {
        padding: 28px 20px;
    }

    .cp-map-panel {
        min-height: 260px;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
    color: #fff;
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
}
