:root {
    --sage-green: #27BA81;
    --sage-green-dark: #1ea36d;
    --sage-green-light: #f0f9f5;
    --sage-navy: #0f1c2b;
    --sage-text-dark: #1a1a1a;
    --sidebar-width: clamp(300px, 18vw, 380px);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-padding: clamp(20px, 5vw, 80px);
}

body.home, html {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

body.home {
    font-family: var(--font-body);
    color: var(--sage-text-dark);
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

/* Hide default theme elements */
.home #leap-header, 
.home #leap-header-wrapper,
.home #leap-top-bar,
.home #leap-footer, 
.home .footer-block, 
.home #main-sidebar,
.home .wiz-header-v1,
.home .wiz-header-v2,
.home .wiz-header-v3,
.home .leap-page-title,
.home .leap-contact-map,
.home .leap-header,
.home .leap-header-wrapper,
.home .leap-top-bar,
.home .leap-slider,
.home .leap-sidebar-header,
.home .leap-sidebar-main-top,
.home .leap-sidebar-header-full-width,
.home .leap-sidebar-main-content-top,
.home header.header,
.home .title-block,
#wpadminbar {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.home #leap-wrapper, 
.home #leap-content, 
.home #content,
.home .page-full-width,
.home #leap-content > .container-fluid, 
.home #leap-content > .container-fluid > .row,
.home #content > .page-full-width > .row {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sage-layout {
    display: flex;
    min-height: 100vh;
}

/* Mobile Header */
.mobile-header {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 70px;
    background: #fff; z-index: 2000;
    padding: 0 20px; align-items: center; justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.mobile-logo img { height: 40px; width: auto; }
.menu-toggle { background: none; border: none; font-size: 24px; color: var(--sage-navy); cursor: pointer; }

/* Sidebar State-of-the-Art Refinement */
.sage-sidebar {
    width: var(--sidebar-width);
    background: #ffffff;
    border-right: 1px solid rgba(0,0,0,0.06);
    position: relative; /* Changed from fixed to flow with page */
    z-index: 1500;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 10px 0 30px rgba(0,0,0,0.02);
}

.sage-sidebar::-webkit-scrollbar { display: none; }

.sidebar-logo { padding: 50px 35px; text-align: center; }
.sidebar-logo img { width: 100%; height: auto; transition: transform 0.4s ease; }
.sidebar-logo img:hover { transform: scale(1.02); }

.sidebar-menu { list-style: none; padding: 0; margin: 0; }
.sidebar-menu li { position: relative; margin-bottom: 2px; }

.sidebar-menu li a {
    display: flex !important;
    align-items: center !important;
    padding: 16px 28px !important;
    color: #444a51 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-left: 4px solid transparent !important;
    white-space: nowrap !important;
}

.sidebar-menu li a i:not(.arrow-icon) {
    width: 22px !important;
    margin-right: 15px !important;
    color: var(--sage-green) !important;
    text-align: center !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
}

.sidebar-menu li a span {
    white-space: nowrap !important;
    flex-shrink: 1 !important;
}

/* Perfect Hover State */
.sidebar-menu li a:hover {
    background: #f0f9f6 !important;
    color: var(--sage-green) !important;
    padding-left: 32px !important;
}
.sidebar-menu li a:hover i:not(.arrow-icon) {
    transform: scale(1.1) rotate(5deg) !important;
}

/* Perfect Active State */
.sidebar-menu li.active > a {
    background: var(--sage-green) !important;
    color: #ffffff !important;
    border-left-color: var(--sage-green-dark) !important;
}
.sidebar-menu li.active > a i {
    color: #ffffff !important;
}

.sidebar-menu li.has-dropdown .arrow-icon {
    margin-left: 12px !important;
    font-size: 10px !important;
    opacity: 0.6 !important;
    transition: transform 0.3s ease !important;
}
.sidebar-menu li.has-dropdown.open > a .arrow-icon,
.sidebar-menu li.has-dropdown:hover > a .arrow-icon {
    transform: rotate(180deg) !important;
}

/* Submenu Styling */
.submenu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    background: #f8faf9 !important;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s !important;
    visibility: hidden !important;
}
.sidebar-menu li.has-dropdown.open .submenu,
.sidebar-menu li.has-dropdown:hover .submenu {
    max-height: 400px !important;
    visibility: visible !important;
}
.submenu li a {
    padding: 12px 20px 12px 50px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #555 !important;
    background: transparent !important;
    border-left: none !important;
    white-space: nowrap !important; /* Force single line */
}
.submenu li a:hover {
    background: #eef5f2 !important;
    color: var(--sage-green) !important;
    padding-left: 55px !important;
}
.submenu li a i {
    font-size: 12px !important;
    opacity: 0.7 !important;
    width: 18px !important;
}

.sidebar-widgets { padding: 30px 20px; }
.advice-widget {
    background: var(--sage-green);
    border-radius: 15px !important;
    padding: 25px 15px !important;
    color: #fff;
    text-align: center;
    margin-bottom: 40px !important;
    box-shadow: 0 15px 35px rgba(1, 140, 94, 0.2) !important;
}
.advice-header { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 20px; }
.phone-circle { width: 42px; height: 42px; border: 1.5px solid rgba(255,255,255,0.6); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.advice-text { text-align: left; line-height: 1.3; font-size: 14px; font-weight: 500; }
.phone-number { display: block; font-size: 16px !important; font-weight: 800 !important; color: #fff !important; text-decoration: none !important; margin-bottom: 25px !important; letter-spacing: -0.5px; }
.btn-schedule { 
    display: inline-flex !important; 
    align-items: center !important; 
    justify-content: center !important;
    gap: 10px !important;
    background: var(--sage-green-dark) !important; 
    padding: 10px 16px !important; 
    border-radius: 10px !important; 
    color: #fff !important; 
    text-decoration: none !important; 
    font-size: 14px !important; 
    font-weight: 700 !important; 
    width: 100% !important;
    transition: all 0.3s ease !important;
}
.btn-schedule:hover { background: #004d33 !important; transform: translateY(-2px); }

.why-widget h3 { font-size: 14px; font-weight: 700; margin-bottom: 20px; }
.why-list-sidebar { list-style: none; padding: 0; }
.why-list-sidebar li { display: flex; gap: 12px; margin-bottom: 15px; }
.why-icon { color: var(--sage-green); font-size: 14px; }
.why-text strong { display: block; font-size: 12px; color: var(--sage-navy); }
.why-text span { font-size: 11px; color: #888; line-height: 1.3; display: block; }

.sidebar-social { padding: 35px 28px; border-top: 1px solid rgba(0,0,0,0.06); }
.sidebar-social h4 { font-size: 14px; font-weight: 700; margin-bottom: 18px; color: var(--sage-navy); text-transform: uppercase; letter-spacing: 0.5px; }
.social-links { display: flex; gap: 12px; }
.social-links a { 
    width: 36px; height: 36px; 
    background: #f8faf9; 
    border-radius: 10px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #444a51; 
    text-decoration: none; 
    font-size: 16px; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.04);
}

/* Individual Brand Hover States */
.social-links a:hover { transform: translateY(-5px); color: #fff !important; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.social-links a i.fa-linkedin:hover, .social-links a:has(.fa-linkedin):hover { background: var(--sage-green) !important; border-color: var(--sage-green) !important; }
.social-links a i.fa-twitter:hover, .social-links a:has(.fa-twitter):hover { background: var(--sage-green) !important; border-color: var(--sage-green) !important; }
.social-links a i.fa-facebook:hover, .social-links a:has(.fa-facebook):hover { background: var(--sage-green) !important; border-color: var(--sage-green) !important; }
.social-links a i.fa-envelope:hover, .social-links a:has(.fa-envelope):hover { background: var(--sage-green) !important; border-color: var(--sage-green) !important; }

/* Main Content */
.sage-main { 
    flex: 1; 
    margin-left: 0; /* No longer needed with flex flow */
    min-width: 0; /* Fix flex overflow */
    position: relative;
    top: 0 !important;
}

/* ==========================================================================
   ULTRA-CLEAR HERO (Maximized Video Visibility)
   ========================================================================== */
/* ==========================================================================
   PREMIUM ADVISORY HERO (Institutional Contrast)
   ========================================================================== */
.sage-hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Shifted up to avoid excessive top space on wide screens */
    padding-top: 32vh; /* Consistent relative positioning across all zoom levels */
    text-align: center;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    overflow: hidden;
    background: #000;
}

.hero-video-wrap {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    filter: brightness(1.05) !important;
}

/* Zero global overlays for maximum video clarity */
.hero-overlay {
    display: none !important;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: clamp(800px, 75vw, 1500px); /* Increased max-width for ultra-wide scaling */
}

.welcome-text {
    color: #fff;
    font-weight: 800;
    font-size: clamp(14px, 1.2vw, 24px); /* Increased scale factor */
    letter-spacing: clamp(4px, 0.5vw, 10px);
    text-transform: uppercase;
    margin-bottom: clamp(15px, 2vh, 30px);
    display: block;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-heading) !important;
    font-size: clamp(38px, 7vw, 80px) !important; /* Significantly increased max size */
    line-height: 1.05 !important;
    margin: 0 0 clamp(20px, 3vh, 45px) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    text-shadow: 0 0 50px rgba(0,0,0,0.5), 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s both;
}

.hero-title span {
    color: var(--sage-green) !important;
}

.hero-subtext {
    font-size: clamp(18px, 2vw, 36px);
    color: #ffffff; 
    margin-bottom: clamp(30px, 5vh, 60px);
    font-weight: 600;
    line-height: 1.4;
    opacity: 0.95;
    text-shadow: 0 0 30px rgba(0,0,0,0.4);
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-btns {
    display: flex;
    gap: clamp(15px, 2vw, 25px);
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Institutional Sharp Buttons */
.btn-hero-primary {
    background: var(--sage-green);
    color: #fff !important;
    padding: clamp(15px, 2vh, 25px) clamp(30px, 4vw, 60px);
    border-radius: 4px; 
    text-decoration: none !important;
    font-weight: 700;
    font-size: clamp(14px, 1.2vw, 20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none !important;
    display: inline-flex;
    align-items: center;
    gap: clamp(10px, 1vw, 15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    padding: clamp(15px, 2vh, 25px) clamp(30px, 4vw, 60px);
    border-radius: 4px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: clamp(14px, 1.2vw, 20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
}

.btn-hero-primary:hover {
    background: var(--sage-green-dark);
    transform: translateY(-3px);
}

.btn-hero-secondary:hover {
    background: #ffffff;
    color: var(--sage-navy) !important;
    transform: translateY(-3px);
}

/* Feature Bar */
.feature-bar { 
    background: var(--sage-green); 
    display: flex; 
    flex-wrap: nowrap; 
    padding: 30px var(--container-padding); 
    overflow-x: auto;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.feature-bar::-webkit-scrollbar { display: none; }

.feature-item { 
    flex: 1; 
    min-width: 200px; 
    display: flex; 
    gap: 15px; 
    align-items: center; 
    color: #fff; 
    padding: 10px 0; 
}
.feature-icon-box { 
    width: 48px; 
    height: 48px; 
    background: rgba(255,255,255,0.2); 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #fff; 
    font-size: 18px; 
    flex-shrink: 0;
    backdrop-filter: blur(5px);
}
.feature-text-box strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.feature-text-box span { font-size: 11px; opacity: 0.9; line-height: 1.3; display: block; }

/* Core Services */
.core-services { padding: 100px var(--container-padding); text-align: center; }
.section-title { font-family: var(--font-heading); font-size: 38px; color: var(--sage-navy); margin-bottom: 70px; font-weight: 700; position: relative; padding-bottom: 20px; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 3px; background: var(--sage-green); }

.services-grid { 
    display: flex; 
    gap: 30px; 
    flex-wrap: nowrap; 
    justify-content: center; 
    width: 100%;
}
.service-card { 
    flex: 1; 
    min-width: 0; 
    max-width: 380px; 
    text-align: center; 
}

.circle-wrap { 
    width: 280px; 
    height: 280px; 
    border-radius: 50%; 
    margin: 0 auto 30px; 
    position: relative; 
    border: 12px solid #f8f8f8; 
    overflow: hidden; 
    cursor: pointer;
}
.circle-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; transition: transform 0.5s ease; }
.circle-wrap::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(1, 140, 94, 0); transition: all 0.3s ease; z-index: 2; border-radius: 50%; }

.hover-content { 
    position: absolute; 
    top: 0; left: 0; width: 100%; height: 100%; 
    display: flex; align-items: center; justify-content: center; 
    padding: 30px; opacity: 0; transition: all 0.3s ease; z-index: 3; color: #fff; text-align: center; 
}
.hover-content h4 { font-size: 18px; font-weight: 700; font-family: var(--font-heading); line-height: 1.5; color: #fff !important; }

.service-card:hover .circle-wrap::after { background: rgba(1, 140, 94, 0.75); }
.service-card:hover .hover-content { opacity: 1; }
.service-card:hover .circle-wrap img { transform: scale(1.1); }

.circle-badge { 
    position: absolute; 
    bottom: -8px; 
    left: 50%; 
    transform: translateX(-50%); 
    width: 54px; 
    height: 54px; 
    background: #fff; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    box-shadow: 0 6px 20px rgba(0,0,0,0.12); 
    color: var(--sage-green); 
    font-size: 22px; 
    z-index: 5; 
}

.service-card { 
    flex: 1; 
    min-width: 0; 
    max-width: 380px; 
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card h3 { font-size: 20px; font-weight: 700; color: var(--sage-navy); margin-bottom: 12px; font-family: var(--font-heading); min-height: 48px; display: flex; align-items: center; justify-content: center; }
.service-card p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 24px; padding: 0 10px; flex-grow: 1; }
.learn-more { color: var(--sage-green); text-decoration: none; font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: all 0.3s ease; margin-top: auto; }
.learn-more:hover { gap: 10px; color: var(--sage-green-dark); }
.learn-more i { font-size: 12px; }

/* Why Banner */
.sage-layout .why-banner { 
    background: var(--sage-green) !important; 
    padding: 80px var(--container-padding) !important; 
    display: flex !important;
    align-items: center !important;
    gap: 60px !important;
    color: #fff !important;
    position: relative !important;
}
.sage-layout .why-banner-content { 
    flex: 1 !important; 
    padding: 0 !important;
    min-width: 0 !important;
}
.sage-layout .why-banner-content h2 { 
    font-size: 42px !important; 
    font-weight: 700 !important; 
    margin: 20px 0 25px !important; 
    line-height: 1.2 !important; 
    font-family: var(--font-heading) !important; 
    color: #fff !important;
}
.sage-layout .why-banner-content p { 
    font-size: 16px !important; 
    opacity: 0.9 !important; 
    line-height: 1.7 !important; 
    margin-bottom: 40px !important; 
    color: #fff !important;
}

.sage-layout .why-banner-img { 
    flex: 1 !important; 
    min-width: 0 !important;
    border-radius: 30px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
    height: 450px !important;
}
.sage-layout .why-banner-img img { 
    width: 100% !important; 
    height: 100% !important; 
    object-fit: cover !important; 
    display: block !important;
}

.sage-layout .check-list { list-style: none !important; padding: 0 !important; margin-bottom: 45px !important; }
.sage-layout .check-list li { display: flex !important; align-items: flex-start !important; gap: 15px !important; margin-bottom: 18px !important; font-weight: 500 !important; font-size: 16px !important; color: #fff !important; }
.sage-layout .check-list i { font-size: 20px !important; margin-top: 2px !important; color: #fff !important; }

.sage-layout .btn-started { 
    background: #fff !important; 
    color: var(--sage-navy) !important; 
    padding: 18px 50px !important; 
    border-radius: 50px !important; 
    text-decoration: none !important; 
    font-weight: 700 !important; 
    font-size: 15px !important; 
    display: inline-flex !important; 
    align-items: center !important; 
    gap: 12px !important; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important; 
    transition: all 0.3s ease !important; 
}
.sage-layout .btn-started:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2) !important;
}

/* Insights */
.insights { 
    padding: 100px var(--container-padding); 
    text-align: center; 
    background: #fff; 
}

.video-grid { 
    display: flex; 
    gap: 30px; 
    overflow-x: auto; 
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    margin-bottom: 40px;
}
.video-grid::-webkit-scrollbar { display: none; }

.video-card { 
    flex: 0 0 calc(50% - 15px); 
    min-width: 300px; 
    position: relative; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    height: 320px;
}
.video-thumb { width: 100%; height: 100%; position: relative; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }

.play-overlay { 
    position: absolute; 
    top: 50%; left: 50%; 
    transform: translate(-50%, -50%); 
    width: 64px; height: 64px; 
    background: rgba(255,255,255,0.2); 
    border: 2px solid #fff; 
    border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    color: #fff; font-size: 24px; 
    transition: all 0.3s ease;
    z-index: 5;
    cursor: pointer;
}
.play-overlay:hover { background: var(--sage-green); border-color: var(--sage-green); transform: translate(-50%, -50%) scale(1.1); }

.video-footer { 
    position: absolute; 
    bottom: 0; left: 0; 
    width: 100%; 
    padding: 25px; 
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%); 
    color: #fff; 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-end; 
    text-align: left; 
    z-index: 4;
}
.v-author { display: flex; align-items: center; gap: 12px; }
.v-author img { width: 44px; height: 44px; border-radius: 50%; border: 2px solid #fff; }
.v-author h4 { margin: 0 0 2px; font-size: 15px; font-weight: 700; color: #fff; }
.v-author span { font-size: 12px; opacity: 0.8; }
.v-time { 
    background: rgba(1, 140, 94, 0.4); 
    border: 1px solid var(--sage-green); 
    padding: 4px 12px; 
    font-size: 11px; 
    border-radius: 20px; 
    font-weight: 600;
}

.slider-dots { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.dot { 
    width: 10px; height: 10px; 
    background: #e0e0e0; 
    border-radius: 50%; 
    cursor: pointer; 
    transition: all 0.3s ease; 
}
.dot.active { background: var(--sage-green); transform: scale(1.2); }

/* Profile Showcase */
.profile-showcase { display: flex; gap: 60px; justify-content: center; flex-wrap: wrap; margin-top: 80px; }
.profile-card { flex: 1; min-width: 300px; max-width: 450px; }
.profile-img { width: 100%; margin-bottom: 25px; border-radius: 12px; overflow: hidden; }
.profile-img img { width: 100%; height: auto; transition: transform 0.5s ease; }
.profile-card:hover .profile-img img { transform: scale(1.05); }
.profile-card h3 { font-size: 20px; font-weight: 700; color: var(--sage-navy); margin-bottom: 10px; }
.p-author { display: block; font-size: 15px; font-weight: 700; color: var(--sage-navy); }
.p-title { display: block; font-size: 13px; color: #888; margin-top: 2px; }

/* Contact Bar */
.contact-row { 
    display: flex; 
    flex-wrap: nowrap; 
    background: #fff; 
    border-top: 1px solid #eee; 
    border-bottom: 1px solid #eee;
    padding: 0 var(--container-padding);
}
.c-item { 
    flex: 1; 
    padding: 40px 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    gap: 25px; 
    border-right: 1px solid #eee; 
    transition: background 0.3s ease;
}
.c-item:last-child { border-right: none; }
.c-item i { font-size: 42px; color: var(--sage-green); font-weight: 300; }
.c-item strong { display: block; font-size: 16px; color: var(--sage-navy); margin-bottom: 5px; font-weight: 700; }
.c-item span { font-size: 14px; color: #666; line-height: 1.4; display: block; }

/* ==========================================================================
   PREMIUM NAVY FOOTER REDESIGN
   ========================================================================== */
.sage-footer-modern {
    background: #0f1c2b !important;
    color: #ffffff !important;
    padding: 100px 0 0 !important;
    font-family: var(--font-body);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    padding-bottom: 80px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-tagline {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    max-width: 450px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--sage-green);
}

/* Contact Block */
.footer-contact-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item .icon-box {
    width: 36px;
    height: 36px;
    background: rgba(39, 186, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage-green);
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item span, .contact-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--sage-green);
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--sage-green);
    border-color: var(--sage-green);
    transform: translateY(-5px);
}

/* Insights Column */
.insights-group {
    margin-bottom: 60px;
}

.footer-post-mini {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.post-date-box {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    flex-shrink: 0;
}

.post-date-box span {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--sage-green);
    margin-top: 4px;
}

.post-content a {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 5px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.post-content a:hover {
    color: var(--sage-green);
}

.post-meta {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

/* Tweets */
.footer-tweet {
    background: rgba(255,255,255,0.03);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.footer-tweet i {
    color: var(--sage-green);
    font-size: 20px;
    margin-bottom: 15px;
    display: block;
}

.footer-tweet p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.tweet-time {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 35px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.bottom-links {
    display: flex;
    gap: 30px;
}

.bottom-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bottom-links a:hover {
    color: #ffffff;
}

/* Cleanup old styles */
.sage-footer, .f-grid, .f-col, .f-post, .tweet-box, .f-list, .f-bottom {
    display: none !important;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .footer-bottom-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Accreditation Column Layout - Static & Professional */
.accred-grid { 
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
    align-items: flex-start; 
}
.accred-box { 
    background: transparent !important; 
    border-radius: 0; 
    padding: 0 !important; 
    display: flex; 
    align-items: center; 
    justify-content: flex-start; 
    height: auto !important; 
    box-shadow: none !important;
    /* Static only - no transitions or hover states */
    transition: none !important;
}
.accred-box.wide { grid-column: auto; height: auto !important; }
.accred-box img { 
    max-width: 260px !important; 
    max-height: 100px !important; 
    opacity: 1 !important; 
    display: block !important; 
    object-fit: contain;
    /* Static only - no filters or mix-blend-modes */
    filter: none !important;
    mix-blend-mode: normal !important;
}

/* Button Refinement - Lift Effect */
.btn-all-posts, .btn-directions, .f-col .widget a.button { 
    display: inline-flex !important; 
    align-items: center !important; 
    gap: 12px !important; 
    padding: 16px 32px !important; 
    border-radius: 12px !important; 
    font-size: 15px !important; 
    font-weight: 800 !important; 
    margin-top: 20px !important; 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    background: var(--sage-green) !important;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(1, 140, 94, 0.2) !important;
}
.btn-all-posts { background: rgba(255,255,255,0.1) !important; border: 2px solid rgba(255,255,255,0.1) !important; }
.btn-all-posts:hover, .btn-directions:hover, .f-col .widget a.button:hover { 
    transform: translateY(-6px) scale(1.02) !important; 
    box-shadow: 0 20px 40px rgba(1, 140, 94, 0.4) !important; 
}

.f-accred-row {
    margin: 0 auto;
    padding: 0;
    text-align: center;
    width: 100%;
}

.f-accred-row h3, 
.f-accred-row .widget-title {
    font-size: 22px !important;
    font-weight: 800 !important;
    margin-bottom: 40px !important;
    color: #ffffff !important;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    text-align: center;
}

.f-accred-row h3::after,
.f-accred-row .widget-title::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 40px !important;
    height: 3px !important;
    background: #ffffff !important;
    border-radius: 2px !important;
}

.f-accred-row .accred-grid, 
.f-accred-row .accred-grid-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 40px !important;
    margin-top: 20px !important;
    list-style: none !important;
    padding: 0 !important;
}

.f-accred-row .accred-box,
.f-accred-row .accred-grid > div,
.f-accred-row .accred-grid-row > div {
    flex: 0 0 auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.f-accred-row img {
    max-height: 80px !important;
    width: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto !important;
}

/* White Background Section for Accreditations */
.sage-accreditations {
    background: #ffffff !important;
    padding: 80px var(--container-padding) !important;
    border-top: 1px solid #eee;
    text-align: center !important;
}

.sage-accreditations .f-accred-row {
    max-width: 1200px;
    margin: 0 auto;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 40px !important;
}

/* Targeting any container that might hold the logos */
.sage-accreditations .f-accred-row > div:not(h3):not(.widget-title),
.sage-accreditations .accred-grid,
.sage-accreditations .accred-grid-row,
.sage-accreditations .widget > div {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 40px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
}

/* Targeting logo wrappers */
.sage-accreditations .accred-box,
.sage-accreditations div[class*="accred"] > div {
    flex: 0 0 auto !important;
    width: auto !important;
    display: block !important;
}

.sage-accreditations h3, 
.sage-accreditations .widget-title {
    color: var(--sage-navy) !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    margin-bottom: 50px !important;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.f-bottom { 
    padding-top: 50px; 
    border-top: 1px solid rgba(255,255,255,0.2); 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 14px; 
    color: #ffffff; 
    opacity: 0.8;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS - Total Device Sovereignty Sweep
   ========================================================================== */

@media (max-width: 1200px) {
    :root { --container-padding: 40px; --sidebar-width: 280px; }
    .sage-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
    /* Sidebar as Mobile Menu */
    .sage-sidebar { 
        transform: translateX(-100%); 
        width: 100% !important; 
        max-width: 320px;
        box-shadow: 20px 0 50px rgba(0,0,0,0.3);
    }
    .sage-sidebar.active { transform: translateX(0); }
    
    .sage-sidebar {
        position: fixed; /* Restore fixed/absolute for mobile drawer if needed */
        height: 100vh;
        z-index: 2500;
        overflow-y: auto;
    }
    .sage-main { 
        margin-left: 0 !important; 
        width: 100% !important; 
        padding-top: 70px !important; 
    }
    
    .mobile-header { display: flex !important; }
    
    /* Hero Adaptation */
    .sage-hero { height: auto !important; padding: 120px 20px 80px !important; text-align: center; justify-content: center; }
    .hero-content { width: 100% !important; align-items: center; }
    .hero-content h1 { font-size: 38px !important; line-height: 1.2 !important; }
    .hero-content p { font-size: 16px !important; margin: 25px 0 35px !important; }
    .hero-btns { flex-direction: column; width: 100%; gap: 15px !important; }
    .hero-btns .btn-hero-primary, .hero-btns .btn-hero-secondary { 
        width: 100% !important; 
        display: flex !important; 
        justify-content: center !important; 
        align-items: center !important;
        padding-left: 0 !important; 
        padding-right: 0 !important; 
        text-align: center !important;
    }
    
    .hero-video-wrap { filter: brightness(0.6); }
    .hero-overlay { background: rgba(255,255,255,0.7) !important; }

    /* Force Core Services to Single Column */
    .services-grid { 
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important; 
        gap: 40px !important; 
        padding: 0 20px !important; 
    }
    .service-card { width: 100% !important; max-width: 100% !important; }

    /* Profile Showcase & Contact Row Stacking */
    .profile-showcase, .contact-row { 
        flex-direction: column !important; 
        padding-left: 20px !important; 
        padding-right: 20px !important; 
    }
    .profile-card, .c-item { 
        width: 100% !important; 
        border-right: none !important; 
        border-bottom: 1px solid #eee !important;
        padding: 30px 10px !important;
    }
    .c-item:last-child { border-bottom: none !important; }

    /* Force Feature Bar (Circles) to Single Column */
    .feature-bar { 
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 50px !important; 
        padding: 60px 20px !important; 
    }
    .feature-item { width: 100% !important; justify-content: center; }
}

@media (max-width: 768px) {
    /* Section Titles */
    .section-title { font-size: 32px !important; margin-bottom: 40px !important; padding: 0 15px; }
    
    .service-card { padding: 40px 25px !important; }
    .circle-wrap { width: 220px !important; height: 220px !important; }
    
    /* Why Chosen Banner */
    .why-banner { flex-direction: column !important; padding: 60px 20px !important; }
    .why-banner-content { width: 100% !important; padding-right: 0 !important; text-align: center; }
    .why-banner-content .check-list { display: inline-block; text-align: left; margin: 30px 0 !important; }
    .why-banner-img { width: 100% !important; margin-top: 50px !important; border-radius: 20px !important; overflow: hidden; }
    
    /* Insights Slider */
    .video-grid { display: flex !important; overflow-x: auto !important; -webkit-overflow-scrolling: touch; }
    .video-card { min-width: 85vw !important; margin-right: 20px !important; margin-bottom: 30px !important; }
    
    /* Wall of Trust */
    .trust-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 15px !important; padding: 0 10px !important; }
    
    /* Footer */
    .f-grid { grid-template-columns: 1fr !important; gap: 50px !important; }
    .sage-footer { padding: 80px 25px 40px !important; }
    .f-bottom { flex-direction: column !important; text-align: center; gap: 20px; }
    
    .f-contact-col { text-align: center; }
    .f-list li { justify-content: center; }
    .social-links { justify-content: center; }
    .accred-grid { justify-content: center; }
}

@media (max-width: 480px) {
    .section-title { font-size: 28px !important; }
    .hero-content h1 { font-size: 32px !important; }
    .phone-number { font-size: 20px !important; }
    .circle-wrap { width: 180px !important; height: 180px !important; }
    .trust-grid { grid-template-columns: 1fr !important; }
}
