.contact-page-wrapper {
    background: #fdfdfd;
    padding: 60px 0 80px;
    margin-top: 106px; /* Adjusting for fixed Topbar + Navbar */
}

.contact-title {
    font-family: "Playfair Display", serif;
    color: var(--theme-maroon);
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 40px;
}

/* --- Cards Styling --- */
.ct-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    margin-bottom: 20px;
    transition: 0.3s;
}
.ct-card:hover {
    border-color: var(--theme-light-orange);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}
.ct-card:last-child {
    margin-bottom: 0;
}
.ct-card h5 {
    font-family: "Playfair Display", serif;
    color: var(--theme-maroon);
    margin-bottom: 12px;
}
.ct-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 6px;
}
.ct-card p:last-child {
    margin-bottom: 0;
}

.ct-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--theme-green);
    color: #fff;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: 0.3s;
    margin-top: 10px;
}
.ct-contact-link:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-2px);
}
.ct-call-link {
    background: var(--theme-orange);
}
.ct-call-link:hover {
    background: #e06d00;
}

/* --- Map List Styling --- */
.ct-map-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}
.ct-map-item:last-child {
    border-bottom: none;
}
.ct-map-item .loc-info h6 {
    font-weight: 600;
    color: #222;
    margin-bottom: 2px;
    font-size: 14px;
}
.ct-map-item .loc-info p {
    font-size: 13px;
    color: #777;
    margin: 0;
}
.ct-btn-map {
    background: #f3f4f6;
    color: #333;
    border: 1px solid #eaeaea;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}
.ct-btn-map:hover {
    background: var(--theme-orange);
    color: #fff;
    border-color: var(--theme-orange);
}

/* --- Planning Links Section --- */
.ct-planning-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
}
.ct-planning-title {
    font-family: "Playfair Display", serif;
    color: var(--theme-maroon);
    margin-bottom: 6px;
}
.ct-planning-desc {
    color: #777;
    font-size: 15px;
    margin-bottom: 25px;
}
.ct-planning-links-col a {
    display: block;
    color: var(--theme-maroon);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    transition: 0.3s;
}
.ct-planning-links-col a:hover {
    color: var(--theme-orange);
    transform: translateX(4px);
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
    .contact-title {
        font-size: 2.2rem;
    }
    .ct-map-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .ct-btn-map {
        width: 100%;
        text-align: center;
    }
}
