/* Contact Section styles */
.contact {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://www.transparenttextures.com/patterns/diamond-upholstery.png') repeat;
    opacity: 0.03;
    pointer-events: none;
}

.contact h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
    position: relative;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: stretch;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #d4af37, #b38728);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.whatsapp-icon {
    background: linear-gradient(45deg, #25D366, #075E54);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.contact-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #d4af37;
}

.contact-text {
    color: #bbb;
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-text {
    color: #d4af37;
}

/* Special styling for WhatsApp link */
.contact-card:hover .whatsapp-icon + h3 + .contact-text {
    color: #1ebea5;
}

.map-container {
    flex: 1;
    min-width: 300px;
    height: auto;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.map-container iframe {
    filter: grayscale(0.8) contrast(1.1);
}

.map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
    
    .map-container {
        min-height: 400px;
    }
    
    iframe {
        min-height: 400px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
} 

/* Add a subtle animation to icons */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
    100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
}

.contact-icon {
    animation: pulseGlow 2s infinite;
}

.whatsapp-icon {
    animation: pulseGlow 2s infinite;
    animation-name: pulseGlowWhatsapp;
}

@keyframes pulseGlowWhatsapp {
    0% { box-shadow: 0 0 15px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 0 20px rgba(37, 211, 102, 0.5); }
    100% { box-shadow: 0 0 15px rgba(37, 211, 102, 0.3); }
} 