/* Tablet CSS for Contact Page (768px-1199px) */

/* 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.8rem;
    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: 1.15rem;
    line-height: 1.5;
    font-weight: 300;
    font-style: normal;
    color: white;
    margin-bottom: 0px;
}

/* Contact Form Section */
.vh-contact-section {
    padding: 40px 20px;
    max-width: 600px; /* Reduced from 700px */
    margin: 0 auto;
}

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

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

.vh-form-group {
    margin-bottom: 30px;
}

.vh-form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
    font-family: Montserrat, sans-serif;
}

.vh-required {
    color: #e74c3c;
}

.vh-form-control {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 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: 120px;
}

.vh-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 40px 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

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

.vh-submit-btn {
    background: transparent;
    color: #000;
    border: 2px solid #000;
    padding: 16px 40px;
    font-size: 1rem;
    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: 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: 15px;
    margin: 20px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

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

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