/* Section Hero Contact */
.contact-hero {
    background: linear-gradient(135deg, #0F3A36 0%, #082621 100%);
    padding: 120px 20px 80px;
    margin-top: -40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #B8894A;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #fff;
    font-weight: 400;
    font-style: italic;
    opacity: 0.95;
}

/* Section Contact Cards */
.contact-section {
    padding: 80px 20px;
    background: #f8f8f8;
}

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

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-card {
    background: white;
    padding: 50px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #B8894A;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #B8894A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

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

.contact-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.contact-card h3 {
    font-size: 1.8rem;
    color: #0F3A36;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-card-content {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

.contact-card-content a {
    color: #0F3A36;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: #B8894A;
}

.contact-card-subtitle {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
    margin-top: 15px;
}

.contact-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-contact {
    display: inline-block;
    padding: 15px 40px;
    background: #B8894A;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(184, 137, 74, 0.3);
}

.btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(184, 137, 74, 0.5);
    background: #9f7640;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-card {
        padding: 40px 25px;
    }
}
