/* Contact Page Specific Styling */
#contact-page {
    background: linear-gradient(135deg, var(--background-light), #f9fbfc);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 5%;
}

.contact-hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    width: 100%;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 40px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.contact-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-color);
    font-weight: 500;
}

.contact-method svg {
    stroke: var(--secondary-color);
    width: 28px;
    height: 28px;
}

.contact-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
    width: 100%;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(44, 139, 176, 0.2);
    background: rgba(244, 247, 249, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
    color: var(--text-color);
    
    /* Ensure interactivity */
    pointer-events: auto !important;
    cursor: text;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    user-select: text;
}

.form-control:hover,
.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: 
        0 0 0 3px rgba(32, 178, 170, 0.1),
        0 5px 15px rgba(32, 178, 170, 0.05);
    outline: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
    max-height: 300px;
}

.form-control::placeholder {
    color: var(--text-color);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.form-control:focus::placeholder {
    opacity: 0.3;
}

.form-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
    opacity: 0.9;
    padding-left: 10px;
    animation: fadeIn 0.3s ease;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;  /* WhatsApp green */
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    cursor: pointer;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.form-submit svg {
    margin-right: 10px;
}

.form-submit:hover {
    background: #20b2aa;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

@media screen and (max-width: 992px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(-10px);
    }
    to { 
        opacity: 0.9;
        transform: translateY(0);
    }
}