/* ==========================================================================
   EXACT LOOK AND FEEL SPECIFICATIONS - EMVII MEDLINK
   ========================================================================== */
:root {
    --emvii-dark-blue: #033b73;
    --emvii-bright-blue: #0066cc;
    --emvii-gold: #e5a93b;
    --emvii-slate-text: #2c3e50;
    --emvii-light-slate: #f4f7fa;
    --white-surface: #ffffff;
    --interface-font: 'Open Sans', sans-serif;
    --heading-font: 'Montserrat', sans-serif;
    --smooth-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--interface-font);
    color: var(--emvii-slate-text);
    background-color: var(--white-surface);
}

.site-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- 1. Top Utility Line Design --- */
.top-utility-bar {
    background-color: var(--emvii-dark-blue);
    color: var(--white-surface);
    font-size: 0.82rem;
    padding: 10px 0;
    font-family: var(--heading-font);
}

.utility-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility-left span {
    margin-right: 20px;
}

.utility-left i {
    color: var(--emvii-gold);
    margin-right: 4px;
}

.utility-right a {
    color: var(--white-surface);
    margin-left: 14px;
    transition: var(--smooth-transition);
}

.utility-right a:hover {
    color: var(--emvii-gold);
}

/* --- 2. Main Navigation Header Design --- */
.main-header {
    background-color: var(--white-surface);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(3, 59, 115, 0.06);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--emvii-dark-blue);
    line-height: 1;
}

.logo-subtitle {
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--emvii-bright-blue);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 22px;
}

.nav-links a {
    text-decoration: none;
    color: var(--emvii-slate-text);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--smooth-transition);
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--emvii-bright-blue);
}

.nav-chat-btn {
    background-color: var(--emvii-bright-blue);
    color: var(--white-surface);
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--smooth-transition);
}

.nav-chat-btn:hover {
    background-color: var(--emvii-dark-blue);
}

/* --- 3. Hero Layout Showcase Design --- */
.hero-showcase {
    background: linear-gradient(140deg, #edf4fc 0%, #dae7f7 100%);
    padding: 60px 0 0 0;
    position: relative;
}

.hero-grid {
    display: flex;
    /* grid-template-columns: 1.2fr 0.8fr; */
    gap: 40px;
    align-items: center;
}

.hero-badge {
    background-color: var(--emvii-bright-blue);
    color: var(--white-surface);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 5px 14px;
    border-radius: 3px;
    display: inline-block;
    margin-bottom: 15px;
}

.hero-left h1 {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 3.2rem;
    color: var(--emvii-dark-blue);
    line-height: 1.1;
}

.hero-left h2 {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.9rem;
    color: var(--emvii-slate-text);
    margin: 10px 0 15px 0;
}

.gold-text {
    color: var(--emvii-gold);
}

.hero-desc {
    font-size: 1.05rem;
    color: #4f5f70;
    margin-bottom: 25px;
}

.hero-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 35px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.check-item i {
    color: var(--emvii-bright-blue);
}

.hero-cta-btn {
    background-color: #25D366; /* Exact WhatsApp brand Green */
    color: var(--white-surface);
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: var(--smooth-transition);
}

.hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.hero-img-element {
    width: 100%;
    border-radius: 8px 8px 0 0;
    object-fit: cover;
    height: 480px;
}

/* Metrics Ribbon Overlay Design */
.metrics-strip {
    background-color: var(--emvii-dark-blue);
    color: var(--white-surface);
    padding: 25px 0;
    box-shadow: 0 10px 30px rgba(3, 59, 115, 0.2);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-box {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.metric-box i {
    font-size: 2.2rem;
    color: var(--emvii-gold);
}

.metric-box h4 {
    font-family: var(--heading-font);
    font-size: 1.6rem;
    font-weight: 700;
}

.metric-box p {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* --- 4. Shared Section Setup --- */
.services-block, 
.founders-presentation-block {
    padding: 80px 0;
}

.block-header {
    text-align: center;
    margin-bottom: 50px;
}

.block-label {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--emvii-bright-blue);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.block-header h3 {
    font-family: var(--heading-font);
    font-size: 2.1rem;
    color: var(--emvii-dark-blue);
    font-weight: 700;
}

/* Services Dynamic Block Styling */
.services-layout-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-layout-card {
    background-color: var(--white-surface);
    padding: 35px 25px;
    border-radius: 6px;
    border: 1px solid #eef2f5;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    transition: var(--smooth-transition);
    text-align: center;
}

.service-layout-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(3, 59, 115, 0.08);
    border-color: var(--emvii-bright-blue);
}

.srv-icon-wrapper {
    font-size: 2.2rem;
    color: var(--emvii-bright-blue);
    margin-bottom: 20px;
}

.service-layout-card h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    color: var(--emvii-dark-blue);
    margin-bottom: 12px;
}

.service-layout-card p {
    font-size: 0.9rem;
    color: #657786;
    margin-bottom: 20px;
    line-height: 1.5;
}

.srv-anchor {
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--emvii-bright-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* --- 5. Achievers Solid Dark Blue Ribbon Section --- */
.achievers-banner-block {
    background-color: var(--emvii-dark-blue);
    padding: 80px 0;
}

.text-white h3 {
    color: var(--white-surface);
}

.gold-label {
    color: var(--emvii-gold);
}

.achievers-slider-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.achiever-profile-card {
    background-color: var(--white-surface);
    border-radius: 8px;
    padding: 35px 20px;
    text-align: center;
    position: relative;
    border-top: 5px solid var(--emvii-gold);
}

.profile-badge {
    background-color: #fff9e6;
    color: #b38600;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.avatar-holder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 20px auto;
    overflow: hidden;
    border: 3px solid var(--emvii-light-slate);
}

.avatar-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achiever-profile-card h5 {
    font-family: var(--heading-font);
    color: var(--emvii-dark-blue);
    font-size: 1.1rem;
    font-weight: 700;
}

.passed-sub {
    font-size: 0.8rem;
    color: #7d8c99;
    margin: 4px 0 15px 0;
}

.achiever-name {
    font-family: var(--heading-font);
    font-size: 1rem;
    color: var(--emvii-slate-text);
    font-weight: 700;
}

.star-rating-line {
    color: var(--emvii-gold);
    font-size: 0.85rem;
    margin-top: 8px;
}

.center-btn-row {
    text-align: center;
    margin-top: 40px;
}

.view-more-stories-btn {
    background-color: var(--white-surface);
    color: var(--emvii-dark-blue);
    padding: 14px 28px;
    border-radius: 4px;
    font-family: var(--heading-font);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--smooth-transition);
}

.view-more-stories-btn:hover {
    background-color: var(--emvii-gold);
    color: var(--white-surface);
}

/* --- 6. Founders Presentation Row Styling --- */
.founders-presentation-block {
    background-color: var(--emvii-light-slate);
}

.founders-flex-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.founder-card-item {
    background-color: var(--white-surface);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 25px rgba(0,0,0,0.02);
}

.founder-img-frame {
    width: 40%;
}

.founder-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-meta-details {
    width: 60%;
    padding: 30px;
}

.founder-meta-details h4 {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    color: var(--emvii-dark-blue);
}

.f-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--emvii-bright-blue);
    display: block;
    margin-bottom: 12px;
}

.founder-meta-details p {
    font-size: 0.9rem;
    color: #5c6b73;
    line-height: 1.5;
    margin-bottom: 20px;
}

.founder-social-links {
    display: flex;
    gap: 12px;
}

.founder-social-links a {
    width: 35px;
    height: 35px;
    background-color: var(--emvii-light-slate);
    color: var(--emvii-dark-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--smooth-transition);
}

.founder-social-links a:hover {
    background-color: var(--emvii-dark-blue);
    color: var(--white-surface);
}

/* --- 7. Deep Premium Footer Design --- */
.site-main-footer {
    background-color: #021e3b; /* Dark Navy contrast */
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0 0;
    font-size: 0.9rem;
}

.footer-columns-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    display: flex;
    /* flex-direction: column; */
    margin-bottom: 15px;
}

.f-logo-main {
    font-family: var(--heading-font);
    color: var(--white-surface);
    font-weight: 800;
    font-size: 1.5rem;
}

.f-logo-sub {
    font-family: var(--heading-font);
    color: var(--emvii-bright-blue);
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.footer-widget h5 {
    font-family: var(--heading-font);
    color: var(--white-surface);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-contact-list, 
.footer-navigation-list {
    list-style: none;
}

.footer-contact-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-list i {
    color: var(--emvii-gold);
}

.footer-navigation-list li {
    margin-bottom: 10px;
}

.footer-navigation-list a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--smooth-transition);
}

.footer-navigation-list a:hover {
    color: var(--white-surface);
    padding-left: 4px;
}

.footer-social-row {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-social-row a {
    color: var(--white-surface);
    background-color: rgba(255,255,255,0.05);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--smooth-transition);
}

.footer-social-row a:hover {
    background-color: var(--emvii-bright-blue);
}

.footer-copyright-line {
    text-align: center;
    padding: 20px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* --- Responsive Layout Configurations --- */
@media (max-width: 992px) {
    .top-utility-bar {
        display: none;
    }
    .hero-grid, .founders-flex-row {
        grid-template-columns: 1fr;
    }
    .services-layout-grid, .achievers-slider-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-columns-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-img-element {
        width: 100%;
        border-radius: 8px 8px 0 0;
        object-fit: cover;
        height: auto;
        padding-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-chat-btn {
        display: none;
    }
    .services-layout-grid, 
    .achievers-slider-container, 
    .footer-columns-grid, 
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    .founder-card-item {
        flex-direction: column;
    }
    .founder-img-frame, .founder-meta-details {
        width: 100%;
    }
    .utility-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}