/* =========================================
   1. GLOBAL VARIABLES & UTILS
   ========================================= */
:root {
    --primary: #215a5d;       /* Brand Teal */
    --primary-dark: #14383a;
    --primary-light: #f0f7f7;
    --gold: #eebb5d;
    --white: #ffffff;
    --text-dark: #222222;
    --text-grey: #555555;
    --border-light: #e0e0e0;
    --shadow-soft: 0 15px 40px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 50px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.site-main { width: 100%; overflow-x: hidden; }
.section-padding { padding: 100px 0; }
.bg-light { background-color: #f9f9f9; }
.bg-light-gradient { background: linear-gradient(180deg, #ffffff 0%, #f4f9f9 100%); }
.bg-theme-solid { background-color: var(--primary); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.narrow-width { max-width: 800px; margin: 0 auto; }

/* Text Utils */
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-white-80 { color: rgba(255,255,255,0.85); line-height: 1.7; }
.mb-5 { margin-bottom: 3rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* =========================================
   2. TYPOGRAPHY
   ========================================= */
.section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-sub {
    font-size: 1.15rem;
    color: var(--text-grey);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.heading-decorator {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
    margin: 0 auto 30px auto;
    border-radius: 4px;
}

.heading-decorator-left {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 15px 0 30px 0;
    border-radius: 4px;
}
.heading-decorator-left.white-line { background: var(--white); }

/* =========================================
   3. STORY & INTRO
   ========================================= */
.story-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-grey);
    margin-bottom: 1.5rem;
}
.story-content strong { color: var(--primary); font-weight: 700; }

/* =========================================
   4. SPLIT GRID (Expertise)
   ========================================= */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.card-problem {
    background: var(--white);
    padding: 80px 60px;
    color: var(--text-dark);
}
.card-problem h3 { font-size: 2.2rem; font-family: 'Poppins', sans-serif; margin-bottom: 0; }

.card-solution {
    background: var(--primary);
    padding: 80px 60px;
    color: var(--white);
}
.card-solution h3 { font-size: 2.2rem; font-family: 'Poppins', sans-serif; color: var(--white); margin-bottom: 0; }

.solution-points-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.solution-points-list li {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    color: rgba(255,255,255,0.9);
}

.solution-points-list li strong { color: var(--white); }
.solution-points-list li::before {
    content: '✔';
    color: var(--gold);
    font-weight: 900;
    position: absolute;
    left: 0; top: 0;
}

/* =========================================
   5. SERVICES HUB (12 Items)
   ========================================= */
.hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 30px;
}

.hub-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    border-top: 4px solid var(--primary); /* Brand Accent */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hub-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--gold);
}

.hub-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    background: var(--primary-light);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.hub-card:hover .hub-icon {
    background: var(--primary);
}

.hub-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.hub-card p {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Pushes link to bottom */
}

.link-arrow {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.link-arrow:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* =========================================
   6. GUIDE GRID (How to Choose)
   ========================================= */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.guide-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.guide-card:hover {
    box-shadow: var(--shadow-soft);
    border-color: var(--primary);
}

.guide-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(33, 90, 93, 0.08); /* Faded Primary */
    font-family: 'Poppins', sans-serif;
}

.guide-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
}

.guide-card p {
    font-size: 0.95rem;
    color: var(--text-grey);
    line-height: 1.6;
}

/* =========================================
   7. CTA & RESPONSIVE
   ========================================= */
.cta-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-glowing-white {
    background: var(--white);
    color: var(--primary);
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255,255,255,0.4);
    transition: var(--transition);
}

.btn-glowing-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255,255,255,0.7);
}

.btn-border-white {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-border-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* Mobile */
@media (max-width: 1024px) {
    .split-grid { grid-template-columns: 1fr; }
    .card-problem, .card-solution { padding: 50px 30px; text-align: center; }
    .heading-decorator-left { margin: 15px auto 30px auto; }
    .solution-points-list li { text-align: left; }
    
    .hub-grid { grid-template-columns: repeat(2, 1fr); }
    .guide-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .section-heading { font-size: 2.2rem; }
    
    .hub-grid { grid-template-columns: 1fr; }
    .guide-grid { grid-template-columns: 1fr; }
    
    .cta-buttons-wrapper { flex-direction: column; }
    .btn-glowing-white, .btn-border-white { width: 100%; text-align: center; }
}