/* Contact page-specific styles */
.contact-hero-bg {
    background-image: url('../images/hero-1.jpg');
}



.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Premium Form Container */
.contact-form-premium {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-form-subtitle {
    color: #64748b;
    font-size: 1.1rem;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-form-group {
    margin-bottom: 0;
}

.contact-form-group-full {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

/* Premium Input Styles */
.form-label-premium {
    display: block;
    margin-bottom: 10px;
    color: #334155;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-control-premium {
    width: 100%;
    padding: 15px 25px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    /* More rounded inputs for modern feel */
    font-size: 1rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    background: #f8fafc;
    font-family: inherit;
}

.contact-textarea.form-control-premium {
    border-radius: 20px;
    /* Less rounded for textarea */
}

.form-control-premium:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(22, 205, 233, 0.15);
}

.form-control-premium::placeholder {
    color: #94a3b8;
}

.contact-textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-submit-wrapper {
    grid-column: 1 / -1;
    margin-top: 10px;
    text-align: center;
}

.contact-submit-btn {
    padding: 18px 50px;
    font-size: 1.1rem;
    width: auto;
    min-width: 250px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(22, 205, 233, 0.3);
}

.contact-submit-btn:hover {
    box-shadow: 0 15px 35px rgba(22, 205, 233, 0.4);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-premium {
        padding: 30px 20px;
    }

    .contact-form-title {
        font-size: 2rem;
    }

    .contact-info-grid {
        gap: 20px;
    }
}