/* Contact Page Specific Styles */

/* Contact Hero */
.contact-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #FFF9F0 0%, #FFF4E6 100%);
    text-align: center;
}

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

.contact-hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-hero-subtitle {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Content Section */
.contact-content-section {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

/* Get in Touch */
.contact-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.contact-item-icon.red {
    background: #E74C3C;
}

.contact-item-icon.green {
    background: #27AE60;
}

.contact-item-icon.blue {
    background: #4A90E2;
}

.contact-item-icon.purple {
    background: #9B59B6;
}

.contact-item-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-item-content p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 4px;
}

.contact-item-content .text-small {
    font-size: 13px;
    color: var(--text-light);
}

.social-section {
    margin-top: 40px;
}

.social-section h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
    position: relative;
}

.contact-form-card {
    background: white;
    padding: 50px 45px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 35px;
    text-align: center;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

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

.btn-block {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-outline-dark {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    background: var(--text-dark);
    color: white;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.map-header {
    text-align: center;
    margin-bottom: 50px;
}

.map-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 12px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    background: #e9ecef;
    height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 80px;
    color: var(--primary-orange);
}

.map-placeholder p {
    font-size: 16px;
    font-weight: 500;
}

/* Footer Enhancements */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social-icon:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

/* Responsive Design for Contact Page */
@media (max-width: 968px) {
    .contact-hero-title {
        font-size: 42px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 130px 0 60px;
    }
    
    .contact-hero-title {
        font-size: 36px;
    }
    
    .contact-hero-subtitle {
        font-size: 15px;
    }
    
    .contact-section-title {
        font-size: 28px;
    }
    
    .map-placeholder {
        height: 350px;
    }
    
    .map-placeholder i {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 30px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .map-placeholder {
        height: 300px;
    }
}

@media (max-width: 375px) {
    .contact-hero {
        padding: 120px 0 50px;
    }
    
    .contact-hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .contact-hero-subtitle {
        font-size: 14px;
    }
    
    .contact-content-section {
        padding: 60px 0;
    }
    
    .contact-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .contact-item {
        margin-bottom: 25px;
    }
    
    .contact-item-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .contact-item-content h4 {
        font-size: 15px;
    }
    
    .contact-item-content p {
        font-size: 13px;
    }
    
    .contact-form-card {
        padding: 25px 15px;
    }
    
    .form-title {
        font-size: 22px;
        margin-bottom: 15px;
    }
    
    .form-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .btn-submit {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .map-section {
        padding: 60px 0;
    }
    
    .map-title {
        font-size: 24px;
    }
    
    .map-subtitle {
        font-size: 13px;
    }
    
    .map-container iframe {
        height: 300px !important;
    }
}

@media (max-width: 320px) {
    .contact-hero {
        padding: 110px 0 40px;
    }
    
    .contact-hero-title {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .contact-hero-subtitle {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .contact-content-section {
        padding: 50px 0;
    }
    
    .contact-section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .contact-item {
        margin-bottom: 20px;
        gap: 10px;
    }
    
    .contact-item-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 10px;
    }
    
    .contact-item-content h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .contact-item-content p {
        font-size: 12px;
        line-height: 1.5;
    }
    
    .contact-item-content .text-small {
        font-size: 11px;
    }
    
    .contact-form-card {
        padding: 20px 12px;
        border-radius: 12px;
    }
    
    .form-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .form-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .form-label {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .form-input,
    .form-textarea {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 6px;
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    .btn-submit {
        padding: 12px 25px;
        font-size: 13px;
        width: 100%;
        border-radius: 8px;
    }
    
    .map-section {
        padding: 50px 0;
    }
    
    .map-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .map-subtitle {
        font-size: 12px;
        margin-top: 10px;
    }
    
    .map-container {
        border-radius: 12px;
    }
    
    .map-container iframe {
        height: 250px !important;
        border-radius: 12px;
    }
}
