/* Contact Us Page Specific Styles */

.contact-content {
    padding: 40px 0;
}

/* Page Title Section */
.page-title-section {
    text-align: center;
    padding: 40px 20px;
}

.page-title {
    font-size: 48px;
    color: var(--deep-blue);
    font-weight: bold;
}

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

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

/* Form Container */
.form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 32px;
    color: var(--deep-blue);
    margin-bottom: 15px;
}

.form-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 8px;
}

.required {
    color: #E74C3C;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    padding: 12px 15px;
    font-size: 15px;
    border: 2px solid #DDD;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

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

/* Submit Button */
.submit-btn {
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

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

.submit-btn i {
    font-size: 16px;
}

/* Contact Information Container */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--deep-blue), var(--light-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.info-icon i {
    color: var(--white);
    font-size: 20px;
}

.info-card h3 {
    font-size: 20px;
    color: var(--deep-blue);
    margin-bottom: 10px;
    font-weight: bold;
}

.info-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.info-card p:last-child {
    margin-bottom: 0;
}

/* Social Card */
.social-card {
    background: linear-gradient(135deg, var(--deep-blue), var(--light-blue));
}

.social-card .info-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.social-card h3 {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

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

.social-btn:hover {
    background-color: var(--white);
    color: var(--deep-blue);
    transform: translateY(-3px);
}

.social-btn i {
    font-size: 16px;
}

/* Map Section */
.map-section {
    padding: 0 20px 60px;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--gray);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    border: 2px dashed #CCC;
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 15px;
    color: var(--light-blue);
}

.map-placeholder p {
    font-size: 18px;
    margin-bottom: 5px;
}

.map-placeholder small {
    font-size: 14px;
    color: #AAA;
}

/* Success/Error Messages */
.success-message {
    background-color: #D4EDDA;
    color: #155724;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #28A745;
    margin-bottom: 20px;
    display: none;
}

.success-message.show {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.5s ease;
}

.error-message {
    background-color: #F8D7DA;
    color: #721C24;
    padding: 20px;
    border-radius: 5px;
    border-left: 4px solid #E74C3C;
    margin-bottom: 20px;
    display: none;
}

.error-message.show {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-container {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
    
    .social-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .form-container {
        padding: 30px;
    }
    
    .form-header h2 {
        font-size: 28px;
    }
    
    .contact-info-container {
        grid-template-columns: 1fr;
    }
    
    .map-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-content {
        padding: 20px 0;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .form-container {
        padding: 25px;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
    
    .form-header p {
        font-size: 15px;
    }
    
    .submit-btn {
        width: 100%;
    }
    
    .map-placeholder {
        height: 250px;
    }
    
    .map-placeholder i {
        font-size: 40px;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .map-section {
        display: none;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .submit-btn {
        display: none;
    }
}