/* ContactV2 - Contact Page Styles */
/* Brand: #3d1a6f (purple), #170a29 (dark), #fdb913 (yellow), #ed174c (red) */

/* ── Hero ── */
.wv2-hero-simple {
    background: linear-gradient(135deg, #3d1a6f 0%, #170a29 100%);
    color: #fff;
    padding: 7rem 0 4rem;
    text-align: center;
}
.wv2-page-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 1rem;
}
.wv2-accent { color: #fdb913; }
.wv2-page-subtitle {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 550px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* ── Brand Dots ── */
.cv2-heading-dots {
    display: flex;
    gap: 8px;
    margin: 1rem 0 1.5rem;
}
.cv2-heading-dots:first-child { justify-content: center; }
.cv2-heading-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}
.cv2-hdot-y { background: #fdb913; }
.cv2-hdot-r { background: #ed174c; }
.cv2-hdot-p { background: #3d1a6f; }
.wv2-hero-simple .cv2-heading-dots { justify-content: center; }

/* ── Section ── */
.cv2-section { padding: 5rem 0; }
.cv2-section-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #170a29;
    margin-bottom: 0.5rem;
}

/* ── Contact Blocks ── */
.cv2-contact-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.75rem;
}
.cv2-contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
}
.cv2-icon-yellow { background: #fdb913; color: #170a29; }
.cv2-icon-red { background: #ed174c; }
.cv2-icon-purple { background: #7d1d61; }
.cv2-contact-block h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #170a29;
    margin-bottom: 0.25rem;
}
.cv2-contact-block p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}
.cv2-contact-block a {
    color: #3d1a6f;
    text-decoration: none;
    font-weight: 500;
}
.cv2-contact-block a:hover { color: #fdb913; }
.cv2-success-msg {
    font-size: 1rem;
    color: #28a745;
    font-weight: 600;
}

/* ── Map ── */
.cv2-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(61,26,111,0.18);
    height: 100%;
    min-height: 450px;
}
.cv2-map-wrapper #dvMap {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* ── Buttons ── */
.cv2-btn-purple {
    background: #3d1a6f;
    color: #fff;
    border: 2px solid #3d1a6f;
    padding: 0.65rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s ease;
}
.cv2-btn-purple:hover { background: #170a29; border-color: #170a29; color: #fff; text-decoration: none; }
.cv2-btn-outline {
    background: transparent;
    color: #3d1a6f;
    border: 2px solid #3d1a6f;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}
.cv2-btn-outline:hover { background: #3d1a6f; color: #fff; text-decoration: none; }

/* ── Modal ── */
.cv2-modal-content {
    border-radius: 12px;
    border: none;
}
.cv2-modal-header {
    border-bottom: 1px solid #ede8f5;
    padding: 1.5rem;
}
.cv2-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #170a29;
}
.cv2-modal-footer {
    border-top: 1px solid #ede8f5;
}
.cv2-form-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #170a29;
    margin-bottom: 0.25rem;
}
.cv2-form-input {
    border-radius: 8px;
    border: 1px solid #ede8f5;
    padding: 0.6rem 1rem;
    transition: border-color 0.25s ease;
}
.cv2-form-input:focus {
    border-color: #3d1a6f;
    box-shadow: 0 0 0 3px rgba(61,26,111,0.1);
}
.cv2-consent-text {
    font-size: 0.9rem;
    color: #555;
}

/* ── CTA ── */
.hv2-cta {
    background: #fdb913;
    color: #170a29;
    padding: 4rem 0;
    text-align: center;
}
.hv2-cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}
.hv2-cta p {
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 1.5rem;
}
.hv2-btn-purple {
    background: #3d1a6f;
    color: #fff;
    border: 2px solid #3d1a6f;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
}
.hv2-btn-purple:hover { background: #170a29; border-color: #170a29; color: #fff; text-decoration: none; }

/* ── Responsive ── */
@media (max-width: 991px) {
    .wv2-page-title { font-size: 2.25rem; }
    .cv2-section { padding: 3.5rem 0; }
    .cv2-map-wrapper { min-height: 350px; }
    .cv2-map-wrapper #dvMap { min-height: 350px; }
}
@media (max-width: 575px) {
    .wv2-hero-simple { padding: 5rem 0 3rem; }
    .wv2-page-title { font-size: 1.85rem; }
}
