/* =========================================
   1. GLOBAL VARS (Consistent)
   ========================================= */
:root {
    --primary: #215a5d;
    --primary-dark: #14383a;
    --gold: #eebb5d;
    --white: #ffffff;
    --text-dark: #222222;
    --text-grey: #555555;
    --bg-light: #f9f9f9;
    --transition: all 0.3s ease;
}

.section-padding { padding: 100px 0; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.narrow-width { max-width: 800px; margin: 0 auto; }

/* Typography */
.section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}
.heading-decorator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
    margin: 0 auto 30px auto;
    border-radius: 4px;
}
.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.section-sub {
    color: var(--text-grey);
    font-size: 1.1rem;
}

/* =========================================
   2. CONTACT CHANNELS (Cards)
   ========================================= */
.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.channel-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    text-align: center;
    transition: var(--transition);
    position: relative;
    top: 0;
}

/* Hover Effect */
.channel-card:hover {
    top: -10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

/* Highlight Quote Card */
.highlight-card {
    border-top: 5px solid var(--gold);
    background: linear-gradient(180deg, #ffffff 0%, #fffbf2 100%);
}

/* Icons */
.icon-glow {
    font-size: 3rem;
    margin-bottom: 20px;
    background: rgba(33, 90, 93, 0.05);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
}

.channel-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.channel-card p {
    color: var(--text-grey);
    margin-bottom: 30px;
    font-size: 0.95rem;
    min-height: 44px; /* Align buttons */
}

/* Buttons Group */
.btn-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Button Styles */
.btn-solid-teal {
    display: block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.btn-solid-teal:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline-teal {
    display: block;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-teal:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-glowing-gold {
    display: block;
    background: var(--gold);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(238, 187, 93, 0.4);
    transition: var(--transition);
}
.btn-glowing-gold:hover {
    background: #d4a037;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(238, 187, 93, 0.6);
}

.sub-note {
    font-size: 0.8rem;
    color: #999;
}

/* =========================================
   3. LOCATION SECTION
   ========================================= */
.bg-theme-dark { background-color: var(--primary-dark); }
.text-white { color: var(--white) !important; }
.text-white-80 { color: rgba(255,255,255,0.8); line-height: 1.6; }

.grid-location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.heading-decorator-left.white-line {
    background: var(--white);
    width: 60px;
    height: 4px;
    margin: 20px 0 30px 0;
}

.address-block {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    color: var(--white);
    line-height: 1.8;
}

.loc-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 5px solid rgba(255,255,255,0.1);
}


/* Utility: Force Center Alignment */
.text-center {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center; 
}

/* Ensure the decorator centers */
.heading-decorator {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ------------------------------------------- */
/* =========================================
   4. RESPONSIVE
   ========================================= */
@media (max-width: 992px) {
    .contact-channels-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .grid-location {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-heading { font-size: 2.2rem; }
}