/* ============================================
   GOLDSTEP CAPITAL LTD - Contact Page Styles
   ============================================ */

/* ============================================
   CONTACT INFO CARDS
   ============================================ */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-primary);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--black);
}

.contact-card p {
    color: var(--gray);
    margin-bottom: 0;
    line-height: 1.8;
}

.contact-card a {
    color: var(--gold-primary);
    font-weight: 600;
}

.contact-card a:hover {
    color: var(--gold-dark);
}

/* ============================================
   CONTACT FORM & MAP SECTION
   ============================================ */
.contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 50px;
}

.contact-map h3,
.contact-hours h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-map > p,
.contact-hours > p {
    color: var(--gray);
    margin-bottom: 30px;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 400px;
    background: var(--off-white);
    border-radius: 8px;
    overflow: hidden;
}

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

/* Business Hours */
.business-hours {
    margin-top: 30px;
    padding: 25px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.business-hours h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.business-hours h4 i {
    color: var(--gold-primary);
}

.business-hours ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-lighter);
    color: var(--gray);
}

.business-hours ul li:last-child {
    border-bottom: none;
}

.business-hours ul li span:last-child {
    font-weight: 600;
    color: var(--charcoal);
}

/* ============================================
   CONTACT PAGE RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 300px;
    }
}