/* ============================================
   CONTACT US PAGE - STYLESHEET
   ============================================ */

/* ===== PAGE HERO ===== */

html.calendly-open,
html.calendly-open body {
    overflow: hidden !important;
    height: 100% !important;
}

.page-hero {
    background: linear-gradient(135deg, var(--blue) 0%, var(--yellow) 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: var(--white);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F0C227, #1A2658);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-form-wrapper h3 {
    color: #1A2658;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: #666666;
    margin-bottom: 2rem;
}

.contact-form label {
    display: block;
    color: #333333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form select:focus {
    outline: none;
    border-color: #F0C227;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin: 0;
    font-weight: normal;
}

.contact-form button i {
    margin-left: 10px;
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 0;
    background: #ffffff;
}

.map-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== ACTIVE NAV LINK ===== */
.nav-links a.active {
    color: #F0C227 !important;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #F0C227;
}

/* ===== DEMO MODAL ===== */
.demo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.demo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.demo-modal {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    width: 90%;
    max-width: 420px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.demo-modal-overlay.active .demo-modal {
    transform: translateY(0) scale(1);
}

.demo-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.demo-modal-close:hover {
    color: var(--blue);
}

.demo-modal-icon {
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

.demo-modal h3 {
    font-size: 1.5rem;
    color: var(--blue);
    margin-bottom: 0.3rem;
}

.demo-modal > p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.8rem;
}

.demo-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.demo-btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}

.demo-btn-whatsapp:hover {
    background: transparent;
    color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.demo-btn-whatsapp i {
    font-size: 1.3rem;
}

.demo-btn-form {
    background: var(--yellow);
    color: var(--white);
    border-color: var(--yellow);
}

.demo-btn-form:hover {
    background: transparent;
    color: var(--yellow);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}
