/* Contact Section Modularized Styles */
.contact {
    padding: 6rem 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(56, 189, 248, 0.12), transparent 42%),
        radial-gradient(circle at 90% 8%, rgba(99, 102, 241, 0.14), transparent 38%),
        linear-gradient(180deg, #0b1226 0%, #060c1c 100%);
    color: white;
    min-height: 100vh;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.4rem;
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
}
.contact-btn {
    background: #3498db;
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: background 0.3s ease;
}

.contact-btn:hover {
    background: #2980b9;
}
.contact-info h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-info p {
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 0.95rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method i {
    background: #3498db;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-method h4 {
    color: white;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-method a {
    color: #74c0fc;
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-method a:hover {
    color: #339af0;
}

.contact-method p {
    color: #f0f0f0;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.contact-form {
    background: rgba(24, 28, 36, 0.58);
    backdrop-filter: blur(12px);
    padding: 1.8rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: white;
    font-weight: 500;
    margin-bottom: 0.4rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    font-family: inherit;
    background: rgba(232, 238, 248, 0.9);
    color: #1c2433;
    backdrop-filter: blur(2px);
}
/* Responsive: Contact Section */
@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .contact {
        padding: 2.5rem 0 1.5rem 0;
    }
    .contact-form {
        padding: 1rem;
        border-radius: 7px;
    }
    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 0.7rem;
    }
    .contact-content {
        gap: 1.2rem;
    }
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(28, 36, 51, 0.55);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #74c0fc;
    background: rgba(242, 247, 255, 0.96);
}

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

.submit-btn {
    background: linear-gradient(135deg, #74c0fc, #339af0);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    backdrop-filter: blur(5px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #339af0, #228be6);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(116, 192, 252, 0.4);
}

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

.form-status {
    min-height: 1.4rem;
    margin-top: 0.85rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-status.success {
    color: #9bf6b3;
}

.form-status.error {
    color: #ffb4b4;
}
