* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #87c735;
    --dark-navy: #0B2239;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #6B7280;
    --accent-green: #52C55D;
    --dark-grey: #111111;
}

body {
    font-family: 'Jost', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
}

h1 {
    margin: inherit !important;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1500px;
}

.container-fluid {
  max-width: 1700px;
}
/* Header */

.header {
position: relative;
z-index: 999;
}

.header .top-header {
position: relative;
background: var(--primary-green);
color: white;
font-size: 14px;
}

.header .top-header a {
  color: white;
}

.header .top-header ul {
display: flex;
justify-content: left;
padding-left: 0;
margin-bottom: 0;
list-style: none;
height: 100%;
align-items: center;
}

.header .top-header ul li {
margin-right: 20px;
padding: 10px 0;
}

.header .top-header ul.right {
justify-content: right;
display: inline-flex;
}

.header .top-header ul.social {
justify-content: right;
background: #00000036;
display: inline-flex;
padding: 0 20px;
}

.header .top-header ul.social li {
padding: 5px;
margin: 0;
}

.header .top-header ul.social li a {
padding: 5px;
font-size: 12px;
}

.header.stuck .bottom-header {
position: fixed;
top: 0;
background: #32343b;
padding: 10px;
}

.header .bottom-header {
position: relative;
width: 100%;
padding: 20px;
background: white;
color: white;
transition: all .5s ease;
}

.header.stuck .bottom-header .logo img {
max-height: 80px;
}

.header .bottom-header .logo img {
max-height: 120px;
transition: all .5s ease;
}

.header .bottom-header .menu-hold {
position: relative;
height: 100%;
}

.header .bottom-header .menu-hold ul.menu {
display: flex;
padding-left: 0;
margin-bottom: 0;
justify-content: center;
list-style: none;
height: 100%;
align-items: center;
}

.header .bottom-header .menu-hold ul.menu li {
position: relative;
margin: 0 5px;
}


.header .bottom-header .menu-hold ul.menu li a {
padding: 10px 15px;
text-transform: uppercase;
font-size: 14px;
color: var(--text-dark);
}

.header .bottom-header .call-block {
position: relative;
float: right;
top: 50%;
transform: translateY(-50%);
color: var(--text-dark);
}

.call-block {
    display: inline-flex;
}

.call-block span {
    font-weight: 700;
}

.call-block .i-hold {
    position: relative;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    margin-right: 20px;
}

/* Chevron icon next to parent links */
.menu > li > a i.fa-chevron-down {
    font-size: 9px;
    transition: transform .3s ease;
    margin-left: 3px;
}
 
.menu > li:hover > a i.fa-chevron-down {
    transform: rotate(180deg);
}
 
/* Standard dropdown panel */
.has-dropdown {
    position: relative;
}
 
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow:
        0 12px 40px rgba(0,0,0,0.12),
        0 4px 12px rgba(0,0,0,0.06);
    border-top: 3px solid var(--primary-green);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 8px 0;
    pointer-events: none;
    z-index: 100;
}
 
.has-dropdown:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
 
/* Dropdown links */
.dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
 
.dropdown ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 500;
    color: #1E293B;
    text-decoration: none;
    text-transform: none;
    transition: all .25s ease;
}
 
.dropdown ul li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--primary-green);
    border-radius: 1px;
    transition: width .25s ease;
    flex-shrink: 0;
}
 
.dropdown ul li a:hover::before {
    width: 14px;
}
 
.dropdown ul li a:hover {
    color: var(--primary-green);
    background: rgba(124,179,66,0.05);
    padding-left: 28px;
}
 
.dropdown ul li:last-child a {
    border-radius: 0 0 12px 12px;
}
 
/* Wide dropdown (Products — two columns) */
.dropdown--wide {
    min-width: 480px;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    padding: 12px 8px;
}
 
/*.has-dropdown:hover > .dropdown--wide {
    transform: translateX(-50%) translateY(0);
}*/
 
.dropdown--wide ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
 
.dropdown--wide ul li a {
    padding: 9px 20px;
    font-size: 13px;
}
 
.dropdown--wide ul li a:hover {
    padding-left: 24px;
}
 
/* ── MOBILE DROPDOWNS ────────────────────── */
@media (max-width: 991px) {
    .dropdown,
    .dropdown--wide {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f8f8;
        border-radius: 8px;
        border-top: none;
        min-width: 0;
        left: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease, padding .35s ease;
        padding: 0;
        pointer-events: auto;
        margin-bottom: 4px;
    }
 
    .has-dropdown.open > .dropdown,
    .has-dropdown.open > .dropdown--wide {
        max-height: 800px;
        padding: 8px 0;
    }
 
    .dropdown--wide ul {
        grid-template-columns: 1fr;
    }
 
    .dropdown ul li a::before {
        display: none;
    }
 
    .dropdown ul li a {
        color: #333;
        padding: 10px 20px;
        font-size: 14px;
    }
 
    .dropdown ul li a:hover {
        color: var(--primary-green);
        padding-left: 24px;
    }
}

/* ── MOBILE MENU ─────────────────────────── */
/* Append this after your header CSS + dropdown CSS */

/* Hamburger toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all .3s ease;
    transform-origin: center;
}

/* Animate to X when open */
.menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Dark overlay */
.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0);
    z-index: 998;
    transition: background .4s ease;
}

.menu-overlay.active {
    display: block;
    background: rgba(0,0,0,0.55);
}

@media (max-width: 991px) {

    /* Show hamburger */
    .menu-toggle {
        display: flex;
    }

    /* Hide call block on mobile */
    .header .bottom-header .call-block {
        display: none;
    }

    /* Slide-out panel */
    .header .bottom-header .menu-hold {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        flex-direction: column;
        z-index: 1000;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        transition: left .4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: none;
        padding: 0;
    }

    .header .bottom-header .menu-hold.open {
        left: 0;
        box-shadow: 8px 0 40px rgba(0,0,0,0.15);
    }

    /* Mobile menu header with logo + close */
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        border-bottom: 1px solid #eee;
    }

    .mobile-menu-header img {
        height: 40px;
        width: auto;
    }

    .mobile-menu-close {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #f4f4f4;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .3s ease;
        flex-shrink: 0;
    }

    .mobile-menu-close:hover {
        background: var(--primary-green);
        color: #fff;
    }

    .mobile-menu-close svg {
        width: 14px;
        height: 14px;
    }

    /* Menu list layout */
    .header .bottom-header .menu-hold ul.menu {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 12px 0;
        height: auto;
    }

    .header .bottom-header .menu-hold ul.menu li {
        margin: 0;
    }

    .header .bottom-header .menu-hold ul.menu li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 24px;
        font-size: 15px;
        color: var(--text-dark);
        border-bottom: 1px solid #f0f0f0;
        text-transform: none;
    }

    .header .bottom-header .menu-hold ul.menu li:last-child > a {
        border-bottom: none;
    }

    .header .bottom-header .menu-hold ul.menu li a:hover,
    .header .bottom-header .menu-hold ul.menu li.open > a {
        color: var(--primary-green);
    }

    /* Chevron on mobile */
    .menu > li > a i.fa-chevron-down {
        font-size: 11px;
        transition: transform .3s ease;
        margin-left: auto;
    }

    .menu > li.open > a i.fa-chevron-down {
        transform: rotate(180deg);
    }

    .menu > li:hover > a i.fa-chevron-down {
        transform: none;
    }

    .menu > li.open:hover > a i.fa-chevron-down {
        transform: rotate(180deg);
    }

    /* Mobile dropdown sub-links */
    .dropdown ul li a {
        padding-left: 40px !important;
        font-size: 14px;
        color: #555;
        border-bottom: 1px solid #f5f5f5;
    }

    .dropdown ul li:last-child a {
        border-bottom: none;
        border-radius: 0;
    }

    .dropdown ul li a:hover {
        padding-left: 48px !important;
        background: rgba(124,179,66,0.06);
    }

    /* Mobile CTA at bottom */
    .mobile-menu-footer {
        padding: 20px 24px;
        margin-top: auto;
        border-top: 1px solid #eee;
    }

    .mobile-menu-footer .mobile-cta {
        display: block;
        width: 100%;
        padding: 14px;
        background: var(--primary-green);
        color: #fff;
        text-align: center;
        border-radius: 50px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: all .3s ease;
    }

    .mobile-menu-footer .mobile-cta:hover {
        opacity: 0.9;
        transform: translateY(-1px);
    }

    .mobile-menu-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 14px;
        font-size: 15px;
        font-weight: 600;
        color: var(--text-dark);
        text-decoration: none;
    }

    .mobile-menu-phone i {
        color: var(--primary-green);
    }
}

/* Hidden on desktop */
@media (min-width: 992px) {
    .mobile-menu-header,
    .mobile-menu-footer {
        display: none;
    }
}

.blog-surround .container {
	max-width: 1000px;
}

.blog-sidebar h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.sidebar-post {
    margin-bottom: 15px;
}

.sidebar-post-inner {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.sidebar-post-inner:hover {
	text-decoration: none;
}

.sidebar-thumb img {
    width: 130px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.sidebar-content h4 {
    font-size: 14px;
    margin: 0 0 5px;
       color: var(--primary-green);
}

.sidebar-date {
    font-size: 12px;
    color: #777;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 700px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/*.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(rgba(11, 34, 57, 0.85), rgba(11, 34, 57, 0.85)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 700"><rect fill="%230B2239" width="1920" height="700"/></svg>');
    background-size: cover;
    opacity: 0.9;
}*/

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 34, 57, 0.85), rgba(11, 34, 57, 0.85));
    opacity: 0.5;
}

.hero video {
    min-height: 100%;
    z-index: -1;
    min-width: 100%;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*max-width: 100%;*/
}

.video-wrap {
    position: absolute;
    max-width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.hero-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
    padding: 60px 0;
}

.hero-label {
    display: inline-block;
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-label::before {
    content: '◆';
    margin-right: 8px;
}

.hero-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.15;
    text-transform: uppercase;
    color: white;
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--primary-green);
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 500px;
}

.hero-btn {
    display: inline-block;
    background: white;
    color: var(--dark-navy);
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.3);
}

.hero-btn:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(76, 175, 80, 0.4);
}

.sub {
    color: var(--primary-green);
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 3px;
}

.cfhold {
    position: relative;
    padding: 30px;
    border-radius: 30px;
    text-align: center;
    background: rgb(0 0 0 / 12%);
    backdrop-filter: saturate(180%) blur(10px);
}

.cfhold .btn {
    display: block;
    width: 100%;
}

.cfhold .wpcf7-spinner {
    position: absolute;
}

.hero-image {
    position: relative;
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Stats Bar */
.stats-bar {
    background: white;
    padding: 60px 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.05);
}

.stats-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #e5e7eb, transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--dark-navy);
    display: block;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label-main {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-navy);
    display: block;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-bg);
}

.about-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 100%;
}

.about-img {
    border-radius: 12px;
    overflow: hidden;
    background: #ccc;
    background-size: cover;
    background-position: center;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img:nth-child(1) {
    grid-row: 1 / 3;
}

.about-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 8px solid var(--light-bg);
}

.badge-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.badge-text {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.about-content {
}

.section-label {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-navy);
    margin-bottom: 24px;
}

.section-title.white {
    color: white;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.cta-btn {
    display: inline-block;
    background: var(--dark-navy);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    color: var(--text-light);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), transparent);
}

.services-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header .section-label {
    background: var(--primary-green);
}

.services-header .section-title {
    max-width: 700px;
    margin: 0 auto 20px;
}

.services-header .section-description {
color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 200px;
    background: #e5e7eb;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon-badge {
    position: absolute;
    bottom: -30px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--dark-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.service-content {
    padding: 50px 24px 30px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.service-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: var(--dark-navy);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--primary-green);
}

/* Why Choose Us */
.why-choose {
    padding: 100px 0;
    background: white;
}

.why-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.why-item {
    display: flex;
    gap: 24px;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    flex-shrink: 0;
}

.why-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.why-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.appointment-section {
    background: var(--dark-navy);
    border-radius: 16px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.appointment-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), transparent);
}

.appointment-content {
    position: relative;
    z-index: 1;
}

.appointment-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.appointment-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-tab {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: white;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.service-tab:hover,
.service-tab.active {
    background: var(--primary-green);
}

.appointment-form {
    position: relative;
    z-index: 1;
}

.form-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
    text-align: center;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea,
.appointment-form button,
.form-control {
    height: unset !important;
    width: 100%;
    padding: 14px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    margin-bottom: 16px;
    font-family: 'Jost', sans-serif;
}

.appointment-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(255, 255, 255, 0.15);
    color: inherit;
}

.appointment-form button,
.appointment-form .wpcf7-submit {
    background: var(--primary-green);
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.appointment-form button:hover
.appointment-form .wpcf7-submit:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
}

/* Skills Section */
.skills-section {
    background: var(--light-bg);
    padding: 100px 0;
}

.skills-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.skills-image {
    height: 600px;
    background: #ccc;
    border-radius: 12px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.skills-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skills-content {
}

.user-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.user-avatars {
    display: flex;
    margin-left: -10px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--light-bg);
    background: #ccc;
    margin-left: -10px;
}

.user-count {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-navy);
}

.user-label {
    font-size: 14px;
    color: var(--text-light);
}

.skills-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 24px;
}

.skills-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.skill-bars {
    margin-bottom: 40px;
}

.skill-item {
    margin-bottom: 24px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skill-name {
    font-weight: 600;
    color: var(--dark-navy);
}

.skill-percentage {
    font-weight: 700;
    color: var(--primary-green);
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    border-radius: 10px;
    transition: width 1s ease;
}

/* Case Studies */
.case-studies {
    padding: 100px 0;
    background: var(--dark-navy);
}

.case-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.case-header {
    text-align: center;
    margin-bottom: 60px;
}

.case-header .section-label {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.case-header .section-title {
    color: white;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.case-image {
    width: 100%;
    height: 280px;
    background: #e5e7eb;
    position: relative;
    background-size: cover;
    background-position: center;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-tags {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.case-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--dark-navy);
}

.case-content {
    padding: 30px;
}

.case-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 20px;
    line-height: 1.4;
}

.case-details {
    display: grid;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.case-detail {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px;
    font-size: 13px;
}

.case-detail-label {
    color: var(--text-light);
    font-weight: 500;
}

.case-detail-value {
    color: var(--dark-navy);
    font-weight: 600;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: var(--light-bg);
}

.team-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.team-image {
    width: 100%;
    height: 400px;
    background: #e5e7eb;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-social {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.team-social:hover {
    background: var(--dark-navy);
    transform: scale(1.1);
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 6px;
}

.team-role {
    font-size: 14px;
    color: var(--text-light);
}

/* Process Section */
.process {
    padding: 100px 0;
    background: white;
}

.process-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-navy);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 3px solid var(--primary-green);
    border-radius: 50%;
    opacity: 0.3;
}

.process-step:nth-child(2) .step-number {
    background: var(--dark-navy);
    color: white;
}

.process-step:nth-child(2) .step-number::before {
    border-color: var(--dark-navy);
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.process-cta {
    margin-top: 60px;
    background: var(--primary-green);
    border-radius: 16px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.process-cta-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.process-cta-btn {
    background: white;
    color: var(--dark-navy);
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.process-cta-btn:hover {
    background: var(--dark-navy);
    color: white;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials {
  position: relative;
    padding: 100px 0;
    /*background: var(--dark-navy);*/
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    z-index: 9;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-navy);
  opacity: 0.7;
  z-index: -1;
}

.testimonials-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header .section-label {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.testimonials-header .section-title {
    color: white;
}

.testimonials-header .section-description {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ccc;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
}

.testimonial-author p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-rating {
    color: #FFC107;
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 15px;
}

/* Partners */
.partners {
    background: white;
    padding: 60px 0;
}

.partners-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.partners-text {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 40px;
}

.partners-text span {
    color: var(--primary-green);
    font-weight: 600;
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    height: 40px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: var(--light-bg);
}

.blog-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.blog-image {
    width: 100%;
    height: 250px;
    background-position: center;
    /*background: #e5e7eb;*/
    background-size: cover;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.blog-category {
    padding: 4px 12px;
    background: var(--primary-green);
    color: white;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.blog-date {
    color: var(--text-light);
    font-size: 13px;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-link {
    color: var(--dark-navy);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-link:hover {
    color: var(--primary-green);
}

/* Footer */
footer {
    background: var(--white);
    color: var(--text-dark);
    padding: 80px 0 0;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 300px repeat(3, 1fr);
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-green);
}

.footer-column h4 {
    color: var(--text-dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 16px;
}

.footer-contact-text h5 {
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.footer-contact-text p {
    color: var(--text-dark);
    font-size: 14px;
}

.footer-newsletter h4 {
    margin-bottom: 16px;
}

.footer-newsletter p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 12px 24px;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--accent-green);
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-dark);
}

.footer-bottom a {
    color: var(--primary-green);
    text-decoration: none;
}

.footer-links--double {
    columns: 2;
    column-gap: 20px;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        flex-direction: column;
        gap: 8px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .about-container,
    .skills-container,
    .appointment-section,
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .case-grid,
    .team-grid,
    .process-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/*new sections*/

/* ═══════════════════════════════════════════
   MyHomeSolar — Banner, FAQ, Accreditations
   ═══════════════════════════════════════════ */

/* ── BANNER ──────────────────────────────── */
.banner {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    background: #0B1D2E;
    color: white;
}

.banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(108deg, rgba(11,29,46,0.93) 0%, rgba(11,29,46,0.72) 50%, rgba(11,29,46,0.30) 100%);
}

.banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.banner__content {
    position: relative;
    z-index: 1;
    max-width: 560px;
    padding: 100px 0;
}

.banner__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #7CB342;
    margin-bottom: 24px;
    animation: fadeUp .5s ease both;
}

.banner__tag::before {
    content: '';
    width: 28px;
    height: 2px;
    background: #7CB342;
    border-radius: 1px;
}

.banner__heading {
    font-size: clamp(36px, 4.5vw, 58px);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    margin-bottom: 20px;
    animation: fadeUp .5s ease .08s both;
}

.banner__heading em {
    font-style: normal;
    color: #7CB342;
}

.banner__text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
    max-width: 460px;
    animation: fadeUp .5s ease .16s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all .3s ease;
    animation: fadeUp .5s ease .24s both;
}

.btn--primary {
    background: #F5911E;
    color: #fff;
    box-shadow: 0 4px 24px rgba(245,145,30,0.35);
}

.btn--primary:hover {
    background: #FF9F2E;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245,145,30,0.45);
}

.btn__arrow {
    transition: transform .3s ease;
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

/* ── FAQ ─────────────────────────────────── */
.faq {
    background: #F4F7FA;
    padding: 100px 0 110px;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7CB342, #F5911E, #7CB342);
}

.faq__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-heading {
    font-size: clamp(30px, 3.5vw, 44px);
    font-weight: 700;
    color: #1E293B;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtext {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 50px;
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.faq__item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: all .3s ease;
    cursor: pointer;
}

.faq__item:hover {
    border-color: rgba(124,179,66,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.faq__item.active {
    border-color: #7CB342;
    box-shadow: 0 8px 32px rgba(124,179,66,0.1);
}

.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    gap: 16px;
    user-select: none;
}

.faq__q-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq__number {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(124,179,66,0.15);
    color: #7CB342;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s ease;
}

.faq__item.active .faq__number {
    background: #7CB342;
    color: #fff;
}

.faq__q-text {
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    line-height: 1.4;
}

.faq__toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F4F7FA;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s ease;
}

.faq__item.active .faq__toggle {
    background: #7CB342;
    transform: rotate(45deg);
}

.faq__toggle svg {
    width: 14px;
    height: 14px;
    color: #64748B;
    transition: color .3s ease;
}

.faq__item.active .faq__toggle svg {
    color: #fff;
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

.faq__answer-inner {
    padding: 0 28px 24px 80px;
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
}

/* ── ACCREDITATIONS ──────────────────────── */
.accreditations {
    background: #0B1D2E;
    padding: 64px 0 72px;
    overflow: hidden;
}

.accreditations__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.accreditations__header {
    text-align: center;
    margin-bottom: 44px;
}
}

.accreditations__title {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 600;
    color: #fff;
    margin-top: 8px;
}

.logo-slider {
    width: 100%;
    mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: marquee 28s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 150px;
    padding: 10px 20px;
    margin: 0 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    /*opacity: 0.5;*/
    transition: all .35s ease;
}

.logo-item:hover {
    opacity: 1;
    background: rgba(255,255,255,0.06);
    border-color: rgba(124,179,66,0.25);
}

.logo-item img {
    height: 100%;
    width: auto;
    /*max-width: 140px;*/
    max-height: 140px;
    object-fit: contain;
    /*filter: brightness(0) invert(1);*/
    transition: filter .35s ease;
}

.logo-item:hover img {
    filter: drop-shadow(0 0 8px rgba(124,179,66,0.5));
}

.accred-footer {
    text-align: center;
    margin-top: 36px;
    font-size: 13px;
    color: #94A3B8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.accred-footer svg {
    color: #7CB342;
}

/* ── SHARED ──────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .banner__content { padding: 80px 0; }
    .faq__grid { grid-template-columns: 1fr; }
    .faq__answer-inner { padding-left: 28px; }
    .logo-track { gap: 40px; }

    .process-cta {
    	display: block;
    }

    .process-cta-btn {
    	display: block;
    	margin-top: 10px;
    }

    .header .top-header {
    	display: none;
    }

    .section-title {
    	font-size: 35px;
    	line-height: 35px;
    }
}

@media (max-width: 480px) {
    .banner { min-height: 480px; }
}