/* Contact Page Styles */

/* Hero Section */
.contact-hero {
    min-height: 50vh;
    background: url('images/Backpage.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 300;
}

.contact-hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: #FFD700;
    margin: 0;
    letter-spacing: 2px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 20px;
    background: white;
}

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

/* Contact Info */
.contact-info {
    position: sticky;
    top: 100px;
}

.contact-badge {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #E53935;
    border-radius: 20px;
    color: #E53935;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-title {
    font-size: 48px;
    font-weight: 400;
    color: #E53935;
    margin: 0 0 40px 0;
    line-height: 1.2;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.contact-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #FAFAFA;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E53935;
    background: white;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

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

.submit-btn {
    background: #E53935;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #C62828;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

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

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    display: none;
}

.form-message.success {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid #81C784;
    display: block;
}

.form-message.error {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #EF5350;
    display: block;
}

/* Location Section */
.location-section {
    padding: 60px 20px;
    background: #FFD600;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    display: block;
    width: 100%;
}

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

    .contact-info {
        position: static;
    }

    .contact-hero-title {
        font-size: 3.5rem;
    }
}

@media screen and (max-width: 768px) {
    .contact-hero {
        min-height: 40vh;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 0.8rem;
    }

    .contact-form-section {
        padding: 50px 20px;
    }

    .contact-title {
        font-size: 36px;
    }

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

    .location-section {
        padding: 40px 20px;
    }
}

@media screen and (max-width: 480px) {
    .contact-hero {
        min-height: 35vh;
    }

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

    .contact-hero-subtitle {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .contact-form-section {
        padding: 40px 15px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .contact-item h4 {
        font-size: 14px;
    }

    .contact-item p {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 13px;
    }

    .submit-btn {
        width: 100%;
        padding: 12px 30px;
        font-size: 15px;
    }

    .location-section {
        padding: 30px 15px;
    }

    .map-container {
        border-radius: 15px;
    }
}
