/* Contact Page Styles */
.contact-section {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.breadcrumb {
    color: #777;
    font-size: 14px;
}

.breadcrumb a {
    color: #555;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-info {
    flex: 1 1 40%;
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.contact-info h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-info > p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.contact-method {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 102, 0.15);
}

.contact-method i {
    font-size: 24px;
    color: #ff0066;
    margin-right: 20px;
    background-color: rgba(255, 0, 102, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-method h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-method p {
    margin: 0;
    color: #555;
}

.contact-method .note {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.whatsapp-service-container {
    flex: 1 1 50%;
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.whatsapp-service-container h2 {
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
}

.whatsapp-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.whatsapp-icon {
    width: 100px;
    height: 100px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
    position: relative;
}

.whatsapp-icon:hover {
    transform: scale(1.05);
}

/* Pulse animation for WhatsApp icon */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
}

.whatsapp-icon.pulse {
    animation: pulse 1s ease;
}

.whatsapp-icon i {
    font-size: 60px;
    color: white;
}

.whatsapp-info {
    text-align: center;
    width: 100%;
}

.whatsapp-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.whatsapp-info p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.whatsapp-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    text-align: left;
}

.benefit-item i {
    color: #25D366;
    margin-right: 10px;
    font-size: 16px;
}

.benefit-item span {
    font-size: 14px;
    color: #555;
}

.whatsapp-topics {
    margin-bottom: 30px;
}

.whatsapp-topics h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #333;
}

.topic-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.topic-btn {
    padding: 8px 15px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.topic-btn:hover {
    background-color: #eee;
    transform: translateY(-2px);
}

.whatsapp-btn {
    display: inline-block;
    padding: 14px 25px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.whatsapp-btn:hover {
    background-color: #22c35e;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.submit-btn:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.map-section {
    margin-top: 50px;
}

.map-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.form-success p {
    color: #555;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-info, 
    .contact-form-container {
        flex: 1 1 100%;
    }
}
