/* Contact Us Page Styles */
.contact-section {
    background-color: var(--bg);
    padding: 100px 0;
}

.contact-info-card {
    background: var(--w);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
    margin-bottom: 30px;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(78, 52, 46, 0.1);
    border-color: var(--c2);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--c2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-card-icon {
    background: var(--c2);
    color: var(--cg);
    transform: rotateY(180deg);
}

.contact-card-title {
    font-family: 'Bodoni Moda', serif !important;
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-card-text {
    color: #292929 !important;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--w);
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0,0,0,0.02);
}

.map-frame-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    border: 10px solid #ffffff;
}

/* Hours Card Matching Index Page */
.hours-info-card {
    border: 2px solid var(--c1);
    padding: 50px 40px;
    border-radius: 30px;
    color: var(--w);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.hours-info-card::before {
    content: '';
    position: absolute; top:0; left:0; width:100%; height:100%;
    background-image: url('https://www.transparenttextures.com/patterns/leaves.png');
    opacity: 0.05; pointer-events: none;
}
.status-badge-contact {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--c2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--c2);
    margin-bottom: 25px;
}
.hour-row-contact {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hour-row-contact:last-child { border-bottom: none; }
