/* ==========================================================================
   Smart Wise Solutions   — Master Stylesheet
   Organized by: Variables → Reset → Nav → Utilities → Components →
                 Homepage → About → Contact → Services → Legal → Footer → Modal
   ========================================================================== */

/* ═══════════════════════════════════════════════════════════════════════════
   1. CSS VARIABLES & RESET
   ═══════════════════════════════════════════════════════════════════════════ */
:root {
    --navy: #1A3C6E;
    --navy-dark: #0e2447;
    --navy-light: #2a5290;
    --cyan: #CCA268;
    --cyan-light: #e8d5b0;
    --cyan-dark: #b08a4a;
    --white: #ffffff;
    --light: #F4F6F9;
    --gray: #8899aa;
    --gray-dark: #3a4450;
    --border: #e2e6ea;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--gray-dark);
    line-height: 1.6;
    background: var(--white);
}

/* ═══════════════════════════════════════════════════════════════════════════
   2. NAVIGATION
   ═══════════════════════════════════════════════════════════════════════════ */
.ebs-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 24px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.ebs-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ebs-nav-logo {
    font-size: 21px;
    font-weight: 800;
    color: var(--navy);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ebs-nav-logo span {
    color: var(--cyan);
}

.ebs-nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
}

@media (min-width: 1024px) {
    .ebs-nav-links { gap: 36px; }
}

.ebs-nav-links a {
    color: var(--gray-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.ebs-nav-links a:hover {
    color: var(--cyan-dark);
}

.ebs-nav-cta {
    background: var(--cyan);
    color: var(--white) !important;
    padding: 9px 22px;
    border-radius: 6px;
    font-weight: 600 !important;
    font-size: 14px !important;
}

.ebs-nav-cta:hover {
    background: var(--cyan-dark) !important;
    color: var(--white) !important;
}

.ebs-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 101;
}

.ebs-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
}

.ebs-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.ebs-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.ebs-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1023px) {
    .ebs-nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        transition: right 0.35s ease;
        z-index: 100;
    }
    .ebs-nav-links.active { right: 0; }
    .ebs-hamburger { display: flex; }
    .ebs-nav-links a { font-size: 16px; padding: 8px 0; }
    .ebs-nav-cta {
        display: block !important;
        text-align: center;
        margin-top: 16px;
        padding: 14px 28px !important;
        border-radius: 8px !important;
        font-size: 15px !important;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   3. COMMON SECTION UTILITIES
   ═══════════════════════════════════════════════════════════════════════════ */
.ebs-section, .sec {
    padding: 100px 24px;
}

.ebs-section-alt, .sec-alt {
    background: var(--light);
}

.ebs-section-navy, .sec-navy {
    background: var(--navy);
}

.ebs-container, .con {
    max-width: 1200px;
    margin: 0 auto;
}

.con {
    max-width: 1100px;
}

.ebs-label, .label {
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.ebs-title, .title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 14px;
}

.title {
    font-size: clamp(28px, 4vw, 36px);
}

.ebs-title span, .title span {
    color: var(--cyan);
}

.ebs-title-light, .title-light {
    color: var(--white);
}

.ebs-sub, .sub {
    font-size: 17px;
    color: #667;
    max-width: 650px;
    line-height: 1.7;
}

.sub {
    font-size: 16px;
    max-width: 600px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   4. COMMON COMPONENTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Buttons ── */
.ebs-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--cyan);
    color: var(--white);
    padding: 15px 34px;
    border-radius: 9999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
}

.ebs-btn:hover {
    background: var(--cyan-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 162, 104, 0.3);
}

.ebs-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 16px 36px;
    border-radius: 9999px;
    font-size: 15.5px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-left: 10px;
    transition: all 0.25s;
    cursor: pointer;
}

.ebs-btn-outline:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}

/* ── 2-Column Layout ── */
.ebs-2col, .col2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.col2 { gap: 60px; }

@media (max-width: 768px) {
    .ebs-2col, .col2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ── Checkmark List ── */
.ebs-benefits, .feat-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ebs-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
}

@media (max-width: 600px) {
    .ebs-benefits {
        grid-template-columns: 1fr;
    }
}

.ebs-benefits li, .feat-list li {
    padding: 14px 0 14px 30px;
    position: relative;
    font-size: 15px;
    color: #556;
    border-bottom: 1px solid var(--border);
}

.ebs-benefits li::before, .feat-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-weight: 700;
    font-size: 16px;
}

/* ── CTA Bar ── */
.cta-bar {
    background: linear-gradient(135deg, var(--navy), var(--navy-dark));
    padding: 80px 24px;
    text-align: center;
}

.cta-bar h2 {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-bar p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
}

.cta-bar a {
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   5. HOMEPAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.ebs-hero {
    position: relative;
    padding: 140px 24px 120px;
    text-align: center;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.ebs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(26, 60, 110, 0.93) 0%, rgba(14, 36, 71, 0.96) 100%);
    z-index: 0;
}

.ebs-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: 0 auto;
}

.ebs-hero .ebs-tagline {
    display: inline-block;
    background: rgba(204, 162, 104, 0.15);
    color: var(--cyan);
    padding: 7px 22px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.ebs-hero h1 {
    font-size: clamp(34px, 5.5vw, 58px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 20px;
}

.ebs-hero h1 span {
    color: var(--cyan);
    position: relative;
}

.ebs-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cyan);
    border-radius: 2px;
    opacity: 0.4;
}

.ebs-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 580px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.ebs-hero .ebs-sub-tagline {
    font-size: 15px;
    color: var(--cyan-light);
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* ── Stats Bar ── */
.ebs-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 600px) {
    .ebs-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ebs-stat {
    text-align: center;
    padding: 40px 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.ebs-stat:last-child {
    border-right: none;
}

.ebs-stat-num {
    font-size: 42px;
    font-weight: 800;
    color: var(--cyan);
}

.ebs-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ── Video Section ── */
.ebs-video-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(26, 60, 110, 0.2);
}

.ebs-video-wrap video,
.ebs-video-wrap iframe,
.ebs-video-wrap img {
    width: 100%;
    height: 380px;
    display: block;
    border: none;
    object-fit: cover;
    border-radius: 16px;
}

@media (max-width: 600px) {
    .ebs-video-wrap video,
    .ebs-video-wrap iframe,
    .ebs-video-wrap img {
        height: 220px;
    }
}

/* ── Service Cards ── */
.ebs-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 50px;
}

@media (max-width: 767px) {
    .ebs-cards {
        grid-template-columns: 1fr;
    }
}

.ebs-card {
    background: var(--white);
    border-radius: 14px;
    padding: 50px 28px 32px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 2px 16px rgba(26, 60, 110, 0.06);
    position: relative;
    margin-top: 40px;
}

.ebs-card:hover {
    box-shadow: 0 16px 40px rgba(26, 60, 110, 0.12);
    transform: translateY(-3px);
}

.ebs-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 20px rgba(204, 162, 104, 0.15);
    border: 3px solid rgba(204, 162, 104, 0.12);
}

.ebs-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.ebs-card p {
    font-size: 14px;
    color: #667;
    line-height: 1.6;
    margin-bottom: 14px;
}

.ebs-card-link {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--cyan);
    text-decoration: none;
}

.ebs-card-link:hover {
    color: var(--cyan-dark);
}

/* ── Supplier Ticker ── */
.ebs-suppliers {
    padding: 32px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.ebs-suppliers p {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.ebs-ticker {
    display: flex;
    width: max-content;
    align-items: center;
    will-change: transform;
}

.ebs-ticker img {
    height: 38px;
    width: auto;
    object-fit: contain;
    margin-right: 60px;
    transition: opacity 0.3s;
}

.ebs-ticker img:last-child {
    margin-right: 0;
}

.ebs-ticker img:hover {
    opacity: 0.7;
}

/* ── Trust Cards ── */
.ebs-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .ebs-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ebs-trust-grid {
        grid-template-columns: 1fr;
    }
}

.ebs-trust-card {
    text-align: center;
    padding: 35px 24px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--white);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.ebs-trust-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--cyan);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.ebs-trust-card:hover::after {
    transform: scaleX(1);
}

.ebs-trust-card:hover {
    border-color: var(--cyan);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 60, 110, 0.10);
}

.ebs-trust-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.ebs-trust-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.ebs-trust-card p {
    font-size: 14px;
    color: #667;
    line-height: 1.6;
}

/* ── Gradient Cards ── */
.ebs-gcards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ebs-gcard {
    border-radius: 14px;
    padding: 30px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border: 1px solid rgba(204, 162, 104, 0.15);
}

.ebs-gcard-alt {
    background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
}

.ebs-gcard-num {
    font-size: 32px;
    font-weight: 800;
}

.ebs-gcard-text {
    font-size: 14px;
    opacity: 0.85;
    margin-top: 8px;
}

/* ── Testimonials Slider ── */
.ebs-testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.ebs-testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.ebs-testimonial {
    flex: 0 0 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 45px 40px;
    text-align: center;
}

.ebs-testimonial .ebs-stars {
    color: var(--cyan);
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.ebs-testimonial p {
    font-size: 16px;
    color: #445;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ebs-testimonial .ebs-author {
    font-weight: 700;
    color: var(--navy);
    font-size: 16px;
}

.ebs-testimonial .ebs-role {
    font-size: 13px;
    color: var(--gray);
    margin-top: 4px;
}

.ebs-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.ebs-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.ebs-slider-dot.active {
    background: var(--cyan);
    width: 28px;
    border-radius: 5px;
}

.ebs-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--border);
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--navy);
    z-index: 3;
    left: -58px;
}

.ebs-slider-arrow:last-of-type {
    left: auto;
    right: -58px;
}

.ebs-slider-arrow:hover {
    background: var(--cyan);
    color: var(--white);
    border-color: var(--cyan);
}

/* ── Blog Cards ── */
.ebs-blog {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .ebs-blog {
        grid-template-columns: 1fr;
    }
}

.ebs-blog-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.ebs-blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.ebs-blog-header {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
    background: linear-gradient(135deg, var(--navy), var(--cyan-dark));
}

.ebs-blog-body {
    padding: 22px;
}

.ebs-blog-date {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ebs-blog-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 12px;
}

.ebs-blog-body a {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--cyan-dark);
    text-decoration: none;
}

.ebs-blog-body a:hover {
    color: var(--navy);
}

/* ── Homepage CTA ── */
.ebs-cta {
    padding: 90px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1556761175-b413da4baf72?w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.ebs-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 60, 110, 0.94) 0%, rgba(14, 36, 71, 0.97) 100%);
    z-index: 0;
}

.ebs-cta::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(204, 162, 104, 0.10) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
}

.ebs-cta-inner {
    position: relative;
    z-index: 1;
}

.ebs-cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.ebs-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin: 0 auto 32px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   6. ABOUT PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── About Hero ── */
.about-hero {
    background: var(--navy);
    padding: 120px 24px 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(204, 162, 104, 0.12), transparent 65%);
    border-radius: 50%;
    z-index: 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(204, 162, 104, 0.06), transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

.about-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 750px;
    margin: 0 auto;
}

.about-hero .breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 18px;
}

.about-hero .breadcrumb a {
    color: var(--cyan);
    text-decoration: none;
}

.about-hero h1 {
    font-size: clamp(34px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 18px;
}

.about-hero h1 span {
    color: var(--cyan);
    position: relative;
}

.about-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cyan);
    opacity: 0.4;
    border-radius: 2px;
}

.about-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 550px;
    margin: 0 auto;
}

/* ── Image Banner ── */
.img-banner {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

@media (max-width: 600px) {
    .img-banner { height: 200px; }
}

.img-banner-wrap {
    position: relative;
    margin-top: -1px;
}

.img-banner-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--white), transparent);
}

/* ── Mission & Vision ── */
.mv-values-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: -28px;
    position: relative;
    z-index: 2;
    padding: 0 24px;
}

.mv-value-chip {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    box-shadow: 0 2px 12px rgba(26, 60, 110, 0.04);
    transition: all 0.25s;
}

.mv-value-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 60, 110, 0.08);
    border-color: var(--cyan);
}

.mv-main-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 4px 24px rgba(26, 60, 110, 0.04);
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .mv-main-card { padding: 40px 28px; }
}

.mv-split {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 700px) {
    .mv-split { grid-template-columns: 1fr; gap: 30px; }
}

.mv-divider {
    width: 1px;
    background: var(--border);
    height: 100%;
    min-height: 120px;
}

@media (max-width: 700px) {
    .mv-divider { width: 100%; height: 1px; min-height: 0; }
}

.mv-col {
    text-align: center;
    padding: 0 10px;
}

.mv-col-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}

.mv-col:first-child .mv-col-icon {
    background: rgba(204, 162, 104, 0.08);
    color: var(--cyan);
}

.mv-col:last-child .mv-col-icon {
    background: rgba(26, 60, 110, 0.06);
    color: var(--navy);
}

.mv-col h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.mv-col p {
    font-size: 14.5px;
    color: #667;
    line-height: 1.7;
}

/* ── Stat Cards ── */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 700px) {
    .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-card {
    background: var(--white);
    border-radius: 14px;
    padding: 35px 24px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 12px 35px rgba(26, 60, 110, 0.08);
    transform: translateY(-2px);
}

.stat-num {
    font-size: 40px;
    font-weight: 800;
    color: var(--cyan);
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── Timeline ── */
.timeline {
    position: relative;
    padding-left: 28px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--border);
    border-radius: 1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 28px;
    padding-left: 12px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -23px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--cyan);
    z-index: 1;
}

.timeline-year {
    font-size: 13px;
    font-weight: 700;
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.timeline-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.timeline-item p {
    font-size: 13.5px;
    color: #667;
    line-height: 1.5;
}

/* ── About Image ── */
.about-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(26, 60, 110, 0.1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   7. CONTACT PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Contact Hero ── */
.contact-hero {
    background: linear-gradient(160deg, var(--navy), var(--navy-dark));
    padding: 90px 24px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(204, 162, 104, 0.08), transparent 70%);
    border-radius: 50%;
}

.contact-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero .breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.contact-hero .breadcrumb a {
    color: var(--cyan);
    text-decoration: none;
}

.contact-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
}

.contact-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
}

.sec-btm {
    padding: 100px 24px 140px;
}

/* ── Contact Info Cards ── */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-top: 50px;
    margin-bottom: 60px;
}

@media (max-width: 1100px) {
    .info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .info-grid { grid-template-columns: 1fr; }
}

.info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 50px 28px 32px;
    text-align: center;
    transition: all 0.35s;
    box-shadow: 0 2px 16px rgba(26, 60, 110, 0.06);
    border: 1px solid transparent;
    position: relative;
    margin-top: 40px;
}

.info-card:hover {
    box-shadow: 0 20px 50px rgba(26, 60, 110, 0.10);
    transform: translateY(-4px);
    border-color: var(--cyan);
}

.info-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 20px rgba(204, 162, 104, 0.15);
    border: 3px solid rgba(204, 162, 104, 0.12);
}

.info-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.info-card p {
    font-size: 13.5px;
    color: #667;
    line-height: 1.6;
}

/* ── Contact Form ── */
.contact-form {
    background: var(--white);
    border-radius: 16px;
    padding: 45px 40px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(26, 60, 110, 0.04);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--cyan);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 500px) {
    .form-row { grid-template-columns: 1fr; }
}

/* ── Map ── */
.map-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 300px;
}

@media (max-width: 600px) {
    .map-wrap { height: 200px; }
}

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

.contact-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-cols { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   8. SERVICE PAGE STYLES
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Service Hero ── */
.svc-hero {
    background: linear-gradient(160deg, var(--navy), var(--navy-dark));
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.svc-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(204, 162, 104, 0.1), transparent 70%);
    border-radius: 50%;
}

.svc-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.svc-hero .breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.svc-hero .breadcrumb a {
    color: var(--cyan);
    text-decoration: none;
}

.svc-hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 16px;
}

.svc-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* ── Options Grid ── */
.opt-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 600px) {
    .opt-grid { grid-template-columns: 1fr; }
}

.opt-card {
    background: var(--white);
    border-radius: 14px;
    padding: 30px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--cyan);
    transition: all 0.3s;
}

.opt-card:hover {
    box-shadow: 0 8px 30px rgba(26, 60, 110, 0.08);
}

.opt-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.opt-card p {
    font-size: 14px;
    color: #667;
    line-height: 1.6;
}

/* ── Steps Grid ── */
.step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .step-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 400px) {
    .step-grid { grid-template-columns: 1fr; }
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 8px 25px rgba(26, 60, 110, 0.06);
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cyan);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 14px;
}

.step-card h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.step-card p {
    font-size: 12.5px;
    color: #667;
    line-height: 1.5;
}

/* ── Partner Strip ── */
.partner-strip {
    background: var(--light);
    padding: 40px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partner-strip p {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.partner-logos span {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-dark);
    letter-spacing: 1px;
}

/* ── FAQ ── */
.faq-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-wrap details {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px 24px;
    margin-bottom: 8px;
    cursor: pointer;
}

.faq-wrap details[open] {
    border-color: var(--cyan);
}

.faq-wrap summary {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    outline: none;
}

.faq-wrap details p {
    font-size: 15px;
    color: #667;
    margin-top: 12px;
    line-height: 1.7;
}

/* ── Feature Grid (Broadband, Waste Management, etc.) ── */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .feat-grid { grid-template-columns: 1fr; }
}

.feat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s;
}

.feat-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 12px 35px rgba(26, 60, 110, 0.08);
}

.fc-icon, .feat-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.feat-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.feat-card p {
    font-size: 13.5px;
    color: #667;
    line-height: 1.5;
}

/* ── Benefit Grid (Bank Accounts) ── */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .benefit-grid { grid-template-columns: 1fr; }
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 12px 35px rgba(26, 60, 110, 0.08);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 14px;
}

.benefit-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.benefit-card p {
    font-size: 13.5px;
    color: #667;
    line-height: 1.5;
}

/* ── Step Info (Bank Accounts horizontal steps) ── */
.step-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.step-info p {
    font-size: 14px;
    color: #667;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   9. LEGAL PAGES STYLES (Privacy Policy / Terms & Conditions)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Small Hero ── */
.hero-sm {
    background: linear-gradient(160deg, var(--navy), var(--navy-dark));
    padding: 70px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-sm::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(204, 162, 104, 0.08), transparent 70%);
    border-radius: 50%;
}

.hero-sm-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero-sm .breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.hero-sm .breadcrumb a {
    color: var(--cyan);
    text-decoration: none;
}

.hero-sm h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--white);
}

.hero-sm p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

/* ── Content Section ── */
.content-sec {
    padding: 80px 24px;
}

.content-con {
    max-width: 800px;
    margin: 0 auto;
}

.content-con h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin: 36px 0 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.content-con h2:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}

.content-con h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin: 20px 0 8px;
}

.content-con p,
.content-con li {
    font-size: 15px;
    color: #556;
    line-height: 1.75;
}

.content-con ul {
    margin: 8px 0 16px 20px;
}

.content-con li {
    margin-bottom: 4px;
}

.content-con a {
    color: var(--cyan);
    text-decoration: underline;
}

.content-con a:hover {
    color: var(--cyan-dark);
}

/* ═══════════════════════════════════════════════════════════════════════════
   10. FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.ebs-footer {
    background: var(--navy-dark);
    padding: 60px 24px 30px;
    color: rgba(255, 255, 255, 0.7);
}

.ebs-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .ebs-footer-grid {
        grid-template-columns: 1fr;
    }
}

.ebs-footer h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.ebs-footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.ebs-footer a:hover {
    color: var(--cyan);
}

.ebs-footer input,
.ebs-footer-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 14px;
    margin-bottom: 10px;
}

.ebs-footer input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.ebs-footer .ebs-sub-btn,
.ebs-footer .sub-btn {
    background: var(--cyan);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.ebs-footer .ebs-sub-btn:hover,
.ebs-footer .sub-btn:hover {
    background: var(--cyan-dark);
}

.ebs-footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   11. QUOTE MODAL
   ═══════════════════════════════════════════════════════════════════════════ */
#quote-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

#quote-modal .modal-box {
    background: var(--white);
    border-radius: 14px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

#quote-modal .modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-dark);
}

#quote-modal h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

#quote-modal .modal-sub {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 24px;
}

#quote-modal form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

#quote-modal input,
#quote-modal select {
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
}

#quote-modal select {
    color: var(--gray-dark);
}

#quote-modal button[type="submit"] {
    background: var(--cyan);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

#quote-modal button[type="submit"]:hover {
    background: var(--cyan-dark);
}

#quote-success {
    display: none;
    text-align: center;
    padding: 30px;
    color: var(--cyan-dark);
    font-weight: 700;
    font-size: 18px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   12. BROWSER EDGE CASES & FIXES
   ═══════════════════════════════════════════════════════════════════════════ */
/* Ensure images don't overflow their containers */
img {
    max-width: 100%;
    height: auto;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Standardise focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}


/* ═══════════════════════════════════════════════════════════════════════════
   13. bank-accounts
   ═══════════════════════════════════════════════════════════════════════════ */

.step-grid1{display:flex;flex-direction:column;gap:18px}
.step-card1{display:flex;align-items:flex-start;gap:16px}
.step-num1{width:40px;height:40px;border-radius:50%;background:var(--cyan);color:var(--white);display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:700;flex-shrink:0}
.step-info1 h5{font-size:16px;font-weight:700;color:var(--navy);margin-bottom:2px}
.step-info1 p{font-size:14px;color:#667;line-height:1.5}


/* ═══════════════════════════════════════════════════════════════════════════
   14. broadband
   ═══════════════════════════════════════════════════════════════════════════ */

.step-grid2{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}@media(max-width:600px){.step-grid2{grid-template-columns:1fr}}
.step-card2{background:var(--white);border:1px solid var(--border);border-radius:14px;padding:32px 24px;text-align:center;transition:all .3s}
.step-card2:hover{border-color:var(--cyan);box-shadow:0 8px 25px rgba(26,60,110,.06)}
.step-num2{width:48px;height:48px;border-radius:50%;background:var(--cyan);color:var(--white);display:flex;align-items:center;justify-content:center;font-size:22px;font-weight:700;margin:0 auto 16px}
.step-card2 h5{font-size:16px;font-weight:700;color:var(--navy);margin-bottom:6px}
.step-card2 p{font-size:13px;color:#667;line-height:1.5}


/* ═══════════════════════════════════════════════════════════════════════════
   15. Header logo
   ═══════════════════════════════════════════════════════════════════════════ */

.ebs-nav-logo img {
    height: 48px;      /* Adjust as needed */
    width: auto;
    display: block;
}

.ebs-nav-logo {
    display: flex;
    align-items: center;
}

/* ═══════════════════════════════════════════════════════════════════════════
   16.  Footer logo
   ═══════════════════════════════════════════════════════════════════════════ */

.footer-logo {
    height: 50px;   /* Adjust to suit your design */
    width: auto;
    display: block;
}