/* ===== CONTACT PAGE STYLES ===== */
.page-main {
    margin-top: 140px;
    min-height: calc(100vh - 140px);
    background-color: #f5f5f5;
    padding: 40px 20px 60px;
}

/* Page Header */
.page-header {
    background-color: white;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-title {
    font-size: 36px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.page-subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Page Container */
.page-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Contact Info Section */
.contact-info {
    background-color: white;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #dee2e6;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid #024f9c;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left-color: #0080ff;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #042240 0%, #024f9c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.contact-item p {
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.contact-item a {
    color: #024f9c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #0080ff;
    text-decoration: underline;
}

/* Social Media Section */
.social-media-section {
    background-color: white;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.social-media-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #dee2e6;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
}

.social-btn i {
    font-size: 20px;
}

.social-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-btn.whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.social-btn.phone {
    background: linear-gradient(135deg, #042240 0%, #024f9c 100%);
}

.social-btn.phone:hover {
    background: linear-gradient(135deg, #024f9c 0%, #0080ff 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(2, 79, 156, 0.4);
}

.social-btn.email {
    background: linear-gradient(135deg, #D44638 0%, #B23121 100%);
}

.social-btn.email:hover {
    background: linear-gradient(135deg, #B23121 0%, #A52714 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 70, 56, 0.4);
}

/* Form Section */
.form-section {
    background-color: white;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.form-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 30px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #dee2e6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #024f9c;
    background-color: white;
    box-shadow: 0 0 0 0.2rem rgba(2, 79, 156, 0.25);
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.btn-primary {
    background: linear-gradient(135deg, #042240 0%, #024f9c 100%);
    color: white;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #024f9c 0%, #0080ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(2, 79, 156, 0.4);
}

.btn-block {
    width: 100%;
    display: block;
}

/* FAQ Items */
.faq-item {
    background-color: #f8f9fa;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 4px;
    border-left: 4px solid #024f9c;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left-color: #0080ff;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 12px 0;
}

.faq-item p {
    font-size: 14px;
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

/* Success/Error Messages */
.alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border-left: 4px solid #198754;
}

.alert-error {
    background-color: #f8d7da;
    color: #842029;
    border-left: 4px solid #dc3545;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
    .page-main {
        margin-top: 120px;
        padding: 30px 15px 40px;
    }
    
    .page-header {
        padding: 40px 20px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .form-section,
    .social-media-section {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .social-links {
        flex-direction: column;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .page-main {
        padding: 20px 10px 30px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
}