/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Hero Section */
.contact-hero {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.contact-hero h1 {
    font-size: 3.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Contact Info Box - Left Side */
.contact-info-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 50px;
    border-radius: 16px;
    color: white;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-box::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
}

.contact-info-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 0;
}

.contact-info-box > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #fff;
}

.contact-detail-item span,
.contact-detail-item p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.contact-detail-item div p:first-child {
    margin-bottom: 5px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* Contact Form Box - Right Side */
.contact-form-box {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.contact-form {
    width: 100%;
    padding: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.form-group input,
.form-group textarea {
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid #d0d0d0;
    border-radius: 0;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    background-color: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #1a1a1a;
    background-color: transparent;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-size: 14px;
    padding: 12px 0;
    margin-top: 10px;
}

/* Radio Group */
.radio-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 12px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    gap: 8px;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
    border: none;
    padding: 0;
    accent-color: #1a1a1a;
}

.radio-label span {
    color: #1a1a1a;
}

/* Submit Button */
.btn-contact-submit {
    margin-top: 10px;
    align-self: flex-start;
}

/* Map Section */
.contact-map-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f0f0f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 16px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-box {
        padding: 40px;
    }

    .contact-info-box h2 {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .radio-group {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-map-section {
        padding: 60px 20px;
    }

    .map-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 40px 15px;
    }

    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .contact-hero p {
        font-size: 14px;
    }

    .contact-info-box {
        padding: 30px;
    }

    .contact-detail-item {
        margin-bottom: 20px;
        gap: 12px;
    }

    .social-links {
        gap: 15px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .contact-section,
    .contact-map-section {
        padding: 40px 15px;
    }

    .map-placeholder {
        height: 250px;
    }
}
