/* Mobile CSS for Contact Page (up to 767px) */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: block !important;
    background: none;
    border: none;
    color: #3b4a6b;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
}

/* Hide desktop nav on mobile */
@media (max-width: 768px) {
    .vh-nav-menu {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: block !important;
    }
}

/* Override global overflow hidden for contact page */
html, body {
    overflow: auto !important;
    height: auto !important;
    width: auto !important;
}

/* Hero Section - Using same classes as about page */
.hero-cover {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 50px;
    border-radius: 0px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.1;
    text-transform: none;
    letter-spacing: 2px;
    color: white;
    margin-bottom: 32px;
    font-style: normal;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 300;
    font-style: normal;
    color: white;
    margin-bottom: 0px;
}

/* Contact Form Section */
.vh-contact-section {
    padding: 30px 20px;
    max-width: 500px; /* Reduced from 100% to reasonable size */
    margin: 0 auto;
}

.vh-contact-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    font-weight: 300;
    font-family: Montserrat, sans-serif;
}

.vh-contact-form {
    background: linear-gradient(135deg, #fafafa, #f5f5f5);
    padding: 20px 15px; /* Reduced padding from 25px 20px */
    border-radius: 15px; /* Reduced from 20px */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Reduced shadow */
}

.vh-form-group {
    margin-bottom: 20px; /* Reduced from 25px */
}

.vh-form-group label {
    display: block;
    font-size: 0.9rem; /* Reduced from 0.95rem */
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 6px; /* Reduced from 8px */
    letter-spacing: 0.5px;
    font-family: Montserrat, sans-serif;
}

.vh-required {
    color: #e74c3c;
}

.vh-form-control {
    width: 100%;
    padding: 12px 14px; /* Reduced from 14px 16px */
    border: 2px solid #e0e0e0;
    border-radius: 6px; /* Reduced from 8px */
    font-size: 0.95rem; /* Reduced from 1rem */
    font-family: Montserrat, sans-serif;
    background: white;
    transition: all 0.3s ease;
}

.vh-form-control:focus {
    outline: none;
    border-color: #2c3e50;
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.vh-form-control.textarea {
    resize: vertical;
    min-height: 80px; /* Reduced from 100px */
}

.vh-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0; /* Reduced from 30px */
    font-size: 0.8rem; /* Reduced from 0.85rem */
    line-height: 1.4;
    color: #555;
}

.vh-checkbox-group input[type="checkbox"] {
    margin-top: 2px;
    transform: scale(1.1);
}

.vh-submit-btn {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 12px 25px; /* Reduced from 14px 30px */
    font-size: 0.9rem; /* Reduced from 0.95rem */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Montserrat, sans-serif;
    width: 100%;
    margin-top: 15px; /* Reduced from 20px */
}

.vh-submit-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 182, 193, 0.15), rgba(135, 206, 250, 0.1), rgba(255, 255, 255, 0.95));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.vh-form-message {
    padding: 10px; /* Reduced from 12px */
    margin: 12px 0; /* Reduced from 15px */
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 0.85rem; /* Reduced from 0.9rem */
}

.vh-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.vh-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
} 