/* Contact Page Styles */
.contact-page {
    padding: 120px 8% 100px;
    background-color: #000000;
    min-height: 100vh;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact Info Section */
.contact-info {
    padding-right: 40px;
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.3s forwards;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 40px;
    font-size: 1rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.contact-link {
    display: block;
    color: #0079bc;
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 15px;
    transition: color 0.3s;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.contact-link:nth-of-type(1) {
    animation-delay: 0.5s;
}

.contact-link:nth-of-type(2) {
    animation-delay: 0.6s;
}

.contact-link:nth-of-type(3) {
    animation-delay: 0.7s;
}

.contact-link:hover {
    color: #fff;
}

.social-section {
    margin-top: 60px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.7s forwards;
}

.social-section h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d1520;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #0079bc;
    transform: scale(1.1);
}

/* Contact Form Section */
.contact-form-container {
    background-color: #0d1520;
    padding: 50px;
    border-radius: 10px;
    border: 1px solid #1a2332;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-form-container h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.1s forwards;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.form-group:nth-child(1) {
    animation-delay: 0.2s;
}

.form-group:nth-child(2) {
    animation-delay: 0.3s;
}

.form-group:nth-child(3) {
    animation-delay: 0.4s;
}

.form-group:nth-child(4) {
    animation-delay: 0.5s;
}

.form-group:nth-child(5) {
    animation-delay: 0.6s;
}

.form-group:nth-child(6) {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group label {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.required {
    color: #0079bc;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #000000;
    border: 2px solid #1a2332;
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0079bc;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
}

.radio-label {
    display: flex;
    align-items: center;
    color: #fff;
    cursor: pointer;
    font-size: 0.95rem;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #0079bc;
}

.radio-label span {
    user-select: none;
}

.g-recaptcha {
    margin-top: 10px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.5s ease, max-height 0.5s ease;
}

.g-recaptcha.visible {
    opacity: 1;
    max-height: 200px;
}

.submit-btn {
    background-color: #0079bc;
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.submit-btn:hover {
    background-color: #005a8f;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info {
        padding-right: 0;
    }

    .contact-form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 100px 5% 80px;
    }

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

    .contact-info h1 {
        font-size: 2rem;
    }

    .contact-form-container h2 {
        font-size: 1.5rem;
    }

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