/* Contact Layout Styles */
.contact-page {
    padding-bottom: 2rem;
}

.contact-hero {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    padding: 6rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-hero h1 {
    color: var(--light);
    margin-bottom: 1.5rem;
}

.contact-hero p {
    color: var(--light);
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Contact Section Styles */
.contact-section {
    padding: 2rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.headquarters-section {
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.contact-info {
    color: var(--light);
}

.headquarters-title {
    color: var(--primary);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.addresses-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 400px));
    gap: 2rem;
    justify-content: center;
}

.address-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.address-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 204, 136, 0.2);
}

.address-box i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.address-box p {
    color: var(--light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .addresses-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .address-box {
        min-width: 100%;
        margin: 0 auto;
    }

    .headquarters-section {
        padding: 1rem;
    }
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-method i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    color: var(--light);
}

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

/* Use the same button styles as main.css */
.submit-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 204, 136, 0.3);
}

/* WhatsApp Integration Styles */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark);
    padding: 2rem;
    border-radius: 10px;
    z-index: 1000;
    max-width: 500px;
    width: 90%;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-hero {
        padding: 4rem 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}