/* --- Contact Page Specific Styles --- */
:root {
    --primary-gold: #b38e44;
    --dark-navy: #0a192f;
    --whatsapp-green: #25D366;
    --bg-soft: #f4f7f6;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Container & Header */
.content-wrapper {
    max-width: 1100px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.section-header p {
    color: #636e72;
    font-size: 1.1rem;
}

/* Main Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* WhatsApp side is slightly wider */
    gap: 50px;
    align-items: start;
}

/* Left Card: WhatsApp & Fast Booking */
.contact-card {
    padding: 40px;
    background: var(--bg-soft);
    border-radius: 15px;
    border-top: 5px solid var(--primary-gold);
}

.booking-highlight {
    background: rgba(179, 142, 68, 0.1);
    color: var(--primary-gold);
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.whatsapp-box {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.whatsapp-box:hover {
    transform: translateY(-5px);
}

.whatsapp-box img {
    width: 130px;
    height: 130px;
    border: 1px solid #eee;
    padding: 5px;
    border-radius: 5px;
}

.whatsapp-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark-navy);
}

.whatsapp-link {
    color: var(--whatsapp-green);
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    display: block;
    margin: 5px 0;
}

.whatsapp-link:hover {
    text-decoration: underline;
}

/* Right Card: Official Info */
.info-card h3 {
    color: var(--dark-navy);
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.info-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.info-item label {
    display: block;
    color: #95a5a6;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-item strong {
    color: var(--dark-navy);
    font-size: 1.05rem;
    line-height: 1.4;
    display: block;
}

.info-item a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
}

.info-item a:hover {
    color: var(--dark-navy);
}

/* Footer Section */
.location-visual {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-box {
        flex-direction: column;
        text-align: center;
    }
    
    .content-wrapper {
        padding: 20px;
        margin: 20px;
    }
}