.contact-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 2rem;
}

.contact-hero .hero-content {
    text-align: center;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #007bff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-hero p {
    margin-bottom: 0;
}

.contact-content {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: -4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Contact Information */
.contact-info h2,
.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #007bff;
}

.contact-info h2 {
    text-align: center;
}

.info-cards {
    display: grid;
    gap: 3rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #666;
    margin-bottom: 1rem;
}

.contact-link {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(45deg, #007bff, #00d4ff);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s ease;
}

.contact-link:hover {
    transform: translateX(5px);
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #007bff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(0, 123, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: border-color 0.3s ease;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545 !important;
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #007bff, #00d4ff);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.availability-notice {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.availability-notice .clock-icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 0.8rem;
}

.availability-notice h4 {
    font-size: 1.1rem;
    color: #007bff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.availability-notice p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.3rem 0;
    line-height: 1.6;
}

.availability-notice p strong {
    color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-info h2 {
        display: none;
    }

    .contact-hero {
        min-height: 25vh;
        padding-bottom: 5rem;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 0.3rem;
    }

    .contact-hero p {
        font-size: 1rem;
        margin-bottom: 0;
    }

    /* Move contact content up on mobile */
    .contact-content {
        padding: 1.5rem 2rem;
        margin-top: -4rem;
    }

    /* Make info cards smaller on mobile */
    .info-cards {
        gap: 1rem;
    }

    .info-card {
        padding: 1.2rem;
    }

    .info-card i {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .info-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }

    .info-card p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .contact-link {
        padding: 0.4rem 1.2rem;
        font-size: 0.85rem;
    }

    /* Make contact form smaller on mobile */
    .contact-form {
        padding: 1.2rem;
    }

    .contact-form h2 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }
    
    /* Hide availability notice on mobile */
    .availability-notice {
        display: none;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 1rem 1rem;
        margin-top: -3.5rem;
    }

    .info-card {
        padding: 1rem;
    }

    .info-card i {
        font-size: 1.5rem;
    }

    .info-card h3 {
        font-size: 1rem;
    }

    .info-card p {
        font-size: 0.8rem;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .contact-form h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .form-group {
        margin-bottom: 0.8rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.5rem;
        font-size: 0.85rem;
    }

    .submit-btn {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
}