/* =========================================================
   FRANKLAND - COMPLETE CLEANED STYLESHEET
   ========================================================= */

/* =========================
   RESET & VARIABLES
========================= */

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

:root {
    --navy: #183D18;
    --blue: #275B22;
    --accent: #275B22;
    --accent-dark: #1F4A1B;
    --accent-light: #3A7A32;

    --white: #ffffff;
    --light: #f5f6fa;
    --gray: #64748b;
    --text: #334155;
    --border: #e2e8f0;
    --dark: #102510;

    --green: #275B22;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}


/* =========================================================
   TOPBAR
========================================================= */

.topbar {
    background: var(--navy);
    padding: 9px 0;
    font-size: 12.5px;
    color: #aab4d0;
}

.topbar-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left,
.topbar-right {
    display: flex;
    gap: 22px;
    align-items: center;
}

.topbar a,
.topbar span {
    color: #aab4d0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
}

.topbar-center {
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .5px;
}

.countdown {
    display: flex;
    gap: 6px;
    align-items: center;
}

.cd-box {
    background: rgba(255,255,255,.12);
    border-radius: 4px;
    padding: 2px 7px;
    font-weight: 700;
    color: #fff;
    font-size: 13px;
    min-width: 28px;
    text-align: center;
}

.cd-sep {
    color: #fff;
    font-weight: 700;
}


/* =========================================================
   HEADER
========================================================= */

header {
    background: #fff;
    box-shadow: 0 1px 0 var(--border);
    position: sticky;
    top: 0;
    z-index: 200;
    transition: box-shadow .3s;
    padding: 18px 0;
}

header.scrolled {
    box-shadow: 0 2px 20px rgba(39,91,34,.15);
}

nav {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    height: 96px;

    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 40px;
}


/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
}

.logo-center {
    grid-column: 1;
    justify-self: start;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -.3px;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.nav-links,
.nav-links-main {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.nav-links-main {
    grid-column: 2;
    justify-self: start;
}

.nav-links a,
.nav-links-main a {
    text-decoration: none;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    padding: 4px 0;
    position: relative;
    transition: color .2s;
}

.nav-links a::after,
.nav-links-main > li > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .25s;
}

.nav-links a:hover,
.nav-links-main a:hover {
    color: var(--accent);
}

.nav-links a:hover::after,
.nav-links-main > li > a:hover::after {
    width: 100%;
}

.nav-links .active,
.nav-links-main .active {
    color: var(--accent);
}

.nav-links .active::after,
.nav-links-main .active::after {
    width: 100%;
}

.nav-prominent {
    font-weight: 800 !important;
    font-size: 15.5px !important;
    letter-spacing: .2px;
}

.nav-item {
    position: relative;
}


/* =========================================================
   MEGA MENU
========================================================= */

.mega-drop {
    display: none;
    position: absolute;
    top: calc(90% + 6px);
    right: 0px;

    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;

    box-shadow: 0 16px 48px rgba(0,0,0,.12);

    padding: 18px;
    gap: 28px;

    min-width: 680px;
    z-index: 300;
}

.nav-item:hover .mega-drop {
    display: flex;
}

.mega-col h6 {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 12px;
}

.mega-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.mega-col a {
    font-size: 13.5px;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color .2s;
}

.mega-col a:hover {
    color: var(--accent);
}

.mega-col a svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    flex-shrink: 0;
}


/* =========================================================
   SIMPLE ABOUT DROPDOWN
========================================================= */

.simple-drop {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;

    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;

    box-shadow: 0 16px 48px rgba(0,0,0,.12);

    padding: 10px;
    min-width: 170px;
    z-index: 300;
}

.nav-item:hover .simple-drop {
    display: block;
}

.simple-drop a {
    display: block;
    padding: 9px 12px;
    font-size: 13.5px;
    color: var(--text);
    text-decoration: none;
    border-radius: 6px;
    transition: background .2s, color .2s;
}

.simple-drop a:hover {
    background: var(--light);
    color: var(--accent);
}


/* =========================================================
   NAV ICONS
========================================================= */

.nav-icons {
    grid-column: 3;
    justify-self: end;

    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-icon-btn {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    background: #fff;
    transition: background .2s;
    position: relative;
}

.nav-icon-btn:hover {
    background: var(--light);
}

.nav-icon-btn svg {
    width: 16px;
    height: 16px;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;

    width: 17px;
    height: 17px;

    background: var(--accent);
    color: #fff;

    border-radius: 50%;

    font-size: 9px;
    font-weight: 700;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn-quote,
.btn-primary,
.product-btn,
.mobile-quote-btn {
    background: var(--accent);
    color: #fff;
}

.btn-quote {
    padding: 9px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    transition: background .2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-quote:hover,
.btn-primary:hover,
.product-btn:hover,
.mobile-quote-btn:hover {
    background: var(--accent-dark);
}

.btn-primary {
    padding: 13px 30px;
    border-radius: 6px;

    font-size: 15px;
    font-weight: 600;

    border: none;
    cursor: pointer;

    font-family: 'Roboto', sans-serif;

    transition:
        background .2s,
        transform .15s,
        box-shadow .2s;

    box-shadow: 0 4px 16px rgba(39,91,34,.35);

    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(39,91,34,.45);
}

.btn-ghost {
    background: transparent;
    color: #fff;

    padding: 13px 30px;

    border-radius: 6px;
    border: 1.5px solid rgba(255,255,255,.45);

    font-size: 15px;
    font-weight: 500;

    cursor: pointer;

    font-family: 'Roboto', sans-serif;

    transition: background .2s, border-color .2s;

    text-decoration: none;
    display: inline-block;
}

.btn-ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.8);
}


/* =========================================================
   HERO SLIDER
========================================================= */

.hero-slider {
    position: relative;
    height: 88vh;
    min-height: 560px;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .8s ease;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    transform: scale(1.04);
    transition: transform 8s ease;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
}

.slide-content {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
}

.slide-content-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}

.slide-tag {
    display: inline-block;

    background: var(--accent);
    color: #fff;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    padding: 5px 14px;
    border-radius: 20px;

    margin-bottom: 18px;
}

.slide-content h1 {
    font-family: 'Roboto Slab', serif;

    font-size: clamp(34px,5vw,55px);
    font-weight: 800;

    color: #fff;

    line-height: 1.08;
    max-width: 620px;

    margin-bottom: 18px;
}

.slide-content p {
    font-size: 16px;
    color: #cbd5e1;

    max-width: 480px;

    line-height: 1.75;

    margin-bottom: 32px;
}

.slide-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* Slider navigation */

.slider-nav {
    position: absolute;
    bottom: 36px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    gap: 10px;

    z-index: 10;
}

.s-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: rgba(255,255,255,.35);

    border: none;
    cursor: pointer;

    transition: background .3s, width .3s;

    padding: 0;
}

.s-dot.active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
}

.slider-arrow {
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    z-index: 10;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: rgba(255,255,255,.15);

    border: 1.5px solid rgba(255,255,255,.35);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: background .2s;

    backdrop-filter: blur(4px);
}

.slider-arrow:hover {
    background: rgba(255,255,255,.3);
}

.slider-arrow svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.slider-prev {
    left: 28px;
}

.slider-next {
    right: 28px;
}


/* =========================================================
   HERO TRUST STRIP
========================================================= */

.hero-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    background: rgba(39,91,34,.15);

    backdrop-filter: blur(12px);

    border-top: 1px solid rgba(255,255,255,.1);
}

.hero-strip-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;

    display: flex;
}

.hs-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 28px;

    border-right: 1px solid rgba(255,255,255,.1);

    flex: 1;
}

.hs-item:first-child {
    padding-left: 0;
}

.hs-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    background: rgba(255,255,255,.12);

    border-radius: 8px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hs-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.hs-text h6 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.hs-text p {
    font-size: 11.5px;
    color: rgba(255,255,255,.65);
}


/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;

    display: grid;
    grid-template-columns: repeat(4,1fr);

    border-left: 1px solid var(--border);
}

.tb-item {
    padding: 24px 28px;

    display: flex;
    align-items: center;
    gap: 16px;

    border-right: 1px solid var(--border);
}

.tb-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    background: #eef7ec;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.tb-icon svg {
    width: 26px;
    height: 26px;

    fill: none;
    stroke: var(--accent);

    stroke-width: 1.5;
}

.tb-text h5 {
    font-size: 14px;
    font-weight: 700;

    color: var(--navy);

    margin-bottom: 3px;
}

.tb-text p {
    font-size: 12px;
    color: var(--gray);

    line-height: 1.5;
}


/* =========================================================
   SECTION LABEL
========================================================= */

.sec-label {
    display: flex;
    align-items: center;
    gap: 7px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--accent);

    margin-bottom: 14px;
}

.sec-label::before {
    content: '';

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--accent);

    display: inline-block;
}


/* =========================================================
   CATEGORIES
========================================================= */

.categories {
    padding: 80px 0;
    background: var(--light);
}

.cat-header {
    text-align: center;
    margin-bottom: 48px;
}

.cat-header h2 {
    font-family: 'Roboto Slab', serif;

    font-size: 38px;
    font-weight: 700;

    color: var(--navy);

    margin-bottom: 12px;
}

.cat-header p {
    font-size: 15px;
    color: var(--gray);

    max-width: 560px;

    margin: 0 auto;

    line-height: 1.75;
}

.cat-grid,
.cat-grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}

.cat-card {
    background: #fff;

    border-radius: 14px;

    overflow: hidden;

    position: relative;

    cursor: pointer;

    transition: transform .3s, box-shadow .3s;

    box-shadow: 0 2px 12px rgba(0,0,0,.06);

    text-decoration: none;

    display: block;
}

.cat-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 16px 48px rgba(0,0,0,.12);
}

.cat-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.cat-img-wrap img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform .5s;
}

.cat-card:hover .cat-img-wrap img {
    transform: scale(1.07);
}

.cat-badge {
    position: absolute;
    top: 14px;
    right: 14px;

    background: var(--navy);
    color: #fff;

    font-size: 11px;
    font-weight: 600;

    padding: 4px 12px;

    border-radius: 20px;
}

.cat-body {
    padding: 20px 22px;
}

.cat-body h3 {
    font-size: 17px;
    font-weight: 700;

    color: var(--navy);

    margin-bottom: 6px;
}

.cat-body p {
    font-size: 13px;
    color: var(--gray);

    line-height: 1.6;

    margin-bottom: 14px;
}

.cat-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    font-size: 13px;
    font-weight: 700;

    color: var(--accent);
}

.cat-link svg {
    width: 16px;
    height: 16px;

    fill: none;
    stroke: var(--accent);

    stroke-width: 2;

    transition: transform .2s;
}

.cat-card:hover .cat-link svg {
    transform: translateX(4px);
}


/* Featured category */

.cat-featured {
    grid-column: span 2;

    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cat-featured .cat-img-wrap {
    height: 100%;
    min-height: 300px;
}

.cat-featured .cat-body {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 36px 32px;
}

.cat-featured .cat-body h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cat-featured .cat-body p {
    font-size: 14px;
    margin-bottom: 20px;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    padding: 100px 0 90px;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-dots {
    position: absolute;

    top: -20px;
    left: -20px;

    width: 110px;
    height: 110px;

    background-image:
        radial-gradient(
            circle,
            var(--border) 1.5px,
            transparent 1.5px
        );

    background-size: 14px 14px;

    z-index: 0;
}

.about-img-wrap img {
    position: relative;

    z-index: 1;

    width: 100%;
    height: 460px;

    object-fit: cover;

    border-radius: 12px;

    display: block;
}

.about-badge {
    position: absolute;

    right: -18px;
    bottom: 36px;

    z-index: 2;

    background: var(--accent);
    color: #fff;

    border-radius: 12px;

    padding: 18px 22px;

    text-align: center;

    box-shadow: 0 12px 32px rgba(39,91,34,.35);

    animation: float 3.5s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.about-badge .num {
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.about-badge .lbl {
    font-size: 11px;
    font-weight: 500;

    opacity: .85;

    margin-top: 5px;

    line-height: 1.3;
}

.about h2 {
    font-family: 'Roboto Slab', serif;

    font-size: 38px;
    font-weight: 700;

    color: var(--navy);

    line-height: 1.2;

    margin-bottom: 16px;
}

.about p {
    font-size: 15px;
    color: var(--gray);

    line-height: 1.8;

    margin-bottom: 24px;
}

.about-mission {
    background: var(--light);

    border-radius: 10px;

    padding: 22px 26px;

    display: flex;
    gap: 16px;

    align-items: flex-start;

    margin-bottom: 32px;

    border-left: 4px solid var(--accent);
}

.mission-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    background: var(--accent);

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-icon svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.about-mission h4 {
    font-size: 15px;
    font-weight: 700;

    color: var(--navy);

    margin-bottom: 6px;
}

.about-mission p {
    font-size: 13px;

    margin: 0;

    line-height: 1.65;
}


/* About stats */

.about-stats {
    display: flex;

    border: 1px solid var(--border);

    border-radius: 12px;

    overflow: hidden;
}

.about-stat {
    flex: 1;

    padding: 18px 20px;

    text-align: center;

    border-right: 1px solid var(--border);
}

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

.about-stat .num {
    font-size: 28px;
    font-weight: 900;

    color: var(--navy);

    line-height: 1;
}

.about-stat .lbl {
    font-size: 11px;
    color: var(--gray);

    margin-top: 4px;
}

.about-stats-2 .about-stat {
    flex: 1;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    padding: 100px 0;

    background: var(--light);

    position: relative;

    overflow: hidden;
}

.services-header {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: start;

    margin-bottom: 56px;
}

.services h2 {
    font-family: 'Roboto Slab', serif;

    font-size: 40px;
    font-weight: 700;

    color: var(--navy);

    line-height: 1.18;
}

.services-desc {
    font-size: 15px;
    color: var(--gray);

    line-height: 1.8;

    padding-top: 4px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);

    gap: 20px;
}

.svc-card {
    background: #fff;

    border-radius: 14px;

    padding: 28px 24px;

    display: flex;
    flex-direction: column;

    gap: 14px;

    box-shadow: 0 2px 12px rgba(0,0,0,.05);

    transition: transform .25s, box-shadow .25s;

    cursor: default;

    border-bottom: 3px solid transparent;
}

.svc-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 14px 40px rgba(39,91,34,.10);

    border-bottom-color: var(--accent);
}

.svc-icon {
    width: 56px;
    height: 56px;

    border-radius: 14px;

    background: #eef7ec;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.svc-icon svg {
    width: 28px;
    height: 28px;

    stroke: var(--accent);

    fill: none;

    stroke-width: 1.6;
}

.svc-card h4 {
    font-size: 15px;
    font-weight: 700;

    color: var(--navy);
}

.svc-card p {
    font-size: 13px;
    color: var(--gray);

    line-height: 1.7;
}

.svc-learn {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    font-size: 12.5px;
    font-weight: 700;

    color: var(--accent);

    margin-top: auto;

    text-decoration: none;
}

.svc-learn svg {
    width: 14px;
    height: 14px;

    fill: none;

    stroke: var(--accent);

    stroke-width: 2;

    transition: transform .2s;
}

.svc-card:hover .svc-learn svg {
    transform: translateX(4px);
}


/* =========================================================
   PROCESS
========================================================= */

.process {
    padding: 80px 0;

    background: var(--navy);

    position: relative;

    overflow: hidden;
}

.process::before {
    content: '';

    position: absolute;

    top: -100px;
    right: -100px;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(39,91,34,.08);
}

.process-header {
    text-align: center;

    margin-bottom: 56px;
}

.process-header .sec-label {
    justify-content: center;

    color: #86d67d;
}

.process-header .sec-label::before {
    background: #86d67d;
}

.process-header h2 {
    font-family: 'Roboto Slab', serif;

    font-size: 38px;
    font-weight: 700;

    color: #fff;

    line-height: 1.2;
}

.process-header p {
    font-size: 15px;

    color: #94a3b8;

    max-width: 520px;

    margin: 12px auto 0;

    line-height: 1.75;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);

    position: relative;
}

.process-steps::before {
    content: '';

    position: absolute;

    top: 36px;
    left: 12.5%;
    right: 12.5%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.15),
            rgba(255,255,255,.15),
            transparent
        );

    z-index: 0;
}

.step {
    text-align: center;

    padding: 0 20px;

    position: relative;

    z-index: 1;
}

.step-num {
    width: 72px;
    height: 72px;

    border-radius: 50%;

    background: rgba(39,91,34,.25);

    border: 1px solid rgba(134,214,125,.4);

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    font-family: 'Roboto Slab', serif;

    font-size: 24px;
    font-weight: 800;

    color: #fff;

    transition: background .3s;
}

.step:hover .step-num {
    background: var(--accent);

    border-color: var(--accent-light);
}

.step h4 {
    font-size: 15px;
    font-weight: 700;

    color: #fff;

    margin-bottom: 8px;
}

.step p {
    font-size: 13px;

    color: #94a3b8;

    line-height: 1.7;
}


/* =========================================================
   BRANDS
========================================================= */

.brands {
    background: #fff;

    padding: 28px 0;

    border-top: 2px solid #eef7ec;
    border-bottom: 2px solid #eef7ec;
}

.brands-inner {
    max-width: 1240px;

    margin: 0 auto;

    padding: 0 28px;

    display: flex;
    align-items: center;

    overflow: hidden;

    position: relative;
}

.brands-label {
    font-size: 12.5px;
    font-weight: 600;

    color: var(--gray);

    white-space: nowrap;

    margin-right: 32px;

    flex-shrink: 0;
}

.brands-track {
    display: flex;

    gap: 48px;

    animation: brandScroll 14s linear infinite;

    align-items: center;
}

@keyframes brandScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.brand-logo {
    font-size: 17px;
    font-weight: 700;

    color: var(--accent);

    letter-spacing: -.5px;

    white-space: nowrap;

    display: flex;
    align-items: center;

    gap: 8px;
}

.brand-logo svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: var(--accent);

    stroke-width: 1.5;
}


/* =========================================================
   FAQ
========================================================= */

.faq {
    padding: 100px 0;

    background: var(--navy);

    position: relative;

    overflow: hidden;
}

.faq::before {
    content: '';

    position: absolute;

    top: -100px;
    right: -100px;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    background: rgba(39,91,34,.08);

    pointer-events: none;
}

.faq-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: start;
}

.faq-img-frame {
    border-radius: 16px;

    overflow: hidden;

    height: 520px;
}

.faq-img-frame img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center top;
}

.faq .sec-label {
    color: #86d67d;
}

.faq .sec-label::before {
    background: #86d67d;
}

.faq h2 {
    font-family: 'Roboto Slab', serif;

    font-size: 38px;
    font-weight: 700;

    color: #fff;

    line-height: 1.2;

    margin-bottom: 14px;
}

.faq-intro {
    font-size: 15px;

    color: #94a3b8;

    line-height: 1.8;

    margin-bottom: 36px;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.faq-q {
    width: 100%;

    background: none;

    border: none;

    text-align: left;

    padding: 18px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    font-size: 15px;

    font-weight: 600;

    color: #fff;

    font-family: 'Roboto', sans-serif;

    gap: 12px;
}

.faq-arrow {
    width: 28px;
    height: 28px;

    border-radius: 50%;

    border: 1.5px solid rgba(255,255,255,.25);

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    transition: background .2s, transform .3s;
}

.faq-arrow svg {
    width: 13px;
    height: 13px;

    fill: #fff;

    transition: transform .3s;
}

.faq-item.open .faq-arrow {
    background: var(--accent);

    border-color: var(--accent);
}

.faq-item.open .faq-arrow svg {
    transform: rotate(180deg);
}

.faq-a {
    font-size: 14px;

    color: #94a3b8;

    line-height: 1.75;

    padding-bottom: 18px;

    display: none;
}

.faq-item.open .faq-a {
    display: block;
}


/* =========================================================
   FOOTER
========================================================= */

.footer-top-bar {
    background: var(--navy);

    padding: 16px 0;
}

.footer-top-bar-inner {
    max-width: 1240px;

    margin: 0 auto;

    padding: 0 28px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}

.footer-top-bar a,
.footer-top-bar span {
    color: #aab4d0;

    text-decoration: none;

    font-size: 13px;

    display: flex;

    align-items: center;

    gap: 6px;
}

.footer-top-bar-links {
    display: flex;

    gap: 20px;
}

footer {
    background: var(--dark);

    color: #94a3b8;

    padding: 64px 0 0;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1.4fr;

    gap: 48px;

    margin-bottom: 48px;
}

.footer-grid-simple {
    grid-template-columns: 1.4fr 1fr;
}

.footer-brand-logo {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 14px;
}

.footer-brand-logo span {
    font-size: 20px;

    font-weight: 700;

    color: #fff;
}

.footer-brand p {
    font-size: 14px;

    line-height: 1.75;

    color: #64748b;

    max-width: 270px;
}

.footer-socials {
    display: flex;

    gap: 8px;

    margin-top: 22px;
}

.footer-soc {
    width: 36px;
    height: 36px;

    border-radius: 8px;

    border: 1px solid #1e293b;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #64748b;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: all .2s;
}

.footer-soc:hover {
    background: var(--accent);

    border-color: var(--accent);

    color: #fff;
}

.footer-col h5 {
    font-size: 13px;

    font-weight: 700;

    color: #fff;

    margin-bottom: 20px;

    letter-spacing: .5px;

    text-transform: uppercase;
}

.footer-contact-heading {
    font-size: 22px !important;

    text-transform: none !important;

    letter-spacing: 0 !important;

    margin-bottom: 22px !important;
}

.footer-col ul {
    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-col a {
    color: #64748b;

    text-decoration: none;

    font-size: 13.5px;

    transition: color .2s;

    display: flex;

    align-items: center;

    gap: 6px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col a svg {
    width: 13px;
    height: 13px;

    fill: currentColor;

    opacity: .5;
}

.footer-bottom {
    border-top: 1px solid #1e293b;

    padding: 20px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    font-size: 13px;

    color: #475569;
}

.footer-bottom-links {
    display: flex;

    gap: 20px;
}

.footer-bottom a {
    color: #475569;

    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.sr {
    opacity: 0;

    transform: translateY(28px);

    transition: opacity .65s ease, transform .65s ease;
}

.sr.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   STICKY SIDEBAR
========================================================= */

.sticky-side {
    position: fixed;

    right: 0;
    top: 50%;

    transform: translateY(-50%);

    z-index: 50;

    display: flex;

    flex-direction: column;
}

.sticky-btn {
    background: var(--navy);

    color: #fff;

    width: 38px;

    padding: 12px 0;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition: background .2s;
}

.sticky-btn:hover {
    background: var(--accent);
}

.sticky-btn svg {
    width: 16px;
    height: 16px;

    fill: #fff;
}

.sticky-btn:first-child {
    border-radius: 6px 0 0 0;
}

.sticky-btn:last-child {
    border-radius: 0 0 0 6px;
}


/* =========================================================
   FLOATING CONTACT BUTTON
========================================================= */

.contact-fab {
    position: fixed;

    right: 24px;
    bottom: 24px;

    z-index: 9999;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 12px;
}

.fab-btn {
    width: 58px;
    height: 58px;

    border-radius: 50%;

    border: none;

    background: var(--accent);

    color: #fff;

    font-size: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 0 8px 24px rgba(39,91,34,.4);

    transition: transform .25s ease, background .25s ease;

    animation: fabPulse 2.4s infinite;
}

.fab-btn:hover {
    transform: scale(1.08);

    background: var(--accent-dark);
}

.fab-menu {
    display: flex;

    flex-direction: column;

    gap: 10px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s;
}

.fab-menu.active {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.fab-item {
    display: flex;

    align-items: center;

    gap: 8px;

    background: #fff;

    color: #1e293b;

    font-size: 14px;

    font-weight: 600;

    padding: 12px 18px;

    border-radius: 30px;

    text-decoration: none;

    box-shadow: 0 6px 18px rgba(0,0,0,.15);

    white-space: nowrap;

    transition: background .2s ease, transform .2s ease;
}

.fab-item:hover {
    transform: translateX(-4px);
}

.fab-item.call:hover {
    background: #dcfce7;
}

.fab-item.email:hover {
    background: #dbeafe;
}

@keyframes fabPulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(39,91,34,.4);
    }

    50% {
        box-shadow:
            0 8px 24px rgba(39,91,34,.65),
            0 0 0 8px rgba(39,91,34,.12);
    }
}


/* =========================================================
   MOBILE MENU - DESKTOP DEFAULT
========================================================= */

.mobile-menu-btn,
.mobile-menu {
    display: none;
}


/* =========================================================
   INNER PAGE HERO
========================================================= */

.page-hero {
    position: relative;

    padding: 150px 0 80px;

    background:
        linear-gradient(
            180deg,
            rgba(16,37,16,.88),
            rgba(16,37,16,.88)
        ),
        url('assets/Image6.jpeg') center / cover;

    text-align: center;

    overflow: hidden;
}

.page-hero-tag {
    display: inline-block;

    background: var(--accent);

    color: #fff;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    padding: 5px 14px;

    border-radius: 20px;

    margin-bottom: 18px;
}

.page-hero h1 {
    font-family: 'Roboto Slab', serif;

    font-size: 44px;

    font-weight: 800;

    color: #fff;

    line-height: 1.15;

    margin-bottom: 14px;
}

.page-hero p {
    font-size: 15.5px;

    color: #cbd5c9;

    max-width: 520px;

    margin: 0 auto;

    line-height: 1.7;
}

.breadcrumb {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    margin-top: 20px;

    font-size: 13px;

    color: #aab4a8;

    font-weight: 500;
}

.breadcrumb a {
    color: #cbd5c9;

    text-decoration: none;

    transition: color .2s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span.sep {
    color: #5a6d58;
}

.breadcrumb span.current {
    color: var(--accent-light);
}


/* =========================================================
   SERVICES PAGE
========================================================= */

.services-page {
    padding: 90px 0;

    background: #fff;
}

.svc-grid-6 {
    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 28px;
}

.svc-card-lg {
    background: var(--light);

    border-radius: 14px;

    padding: 32px 28px;

    display: flex;

    flex-direction: column;

    gap: 14px;

    transition:
        transform .25s,
        box-shadow .25s,
        background .25s;

    border-bottom: 3px solid transparent;
}

.svc-card-lg:hover {
    transform: translateY(-5px);

    background: #fff;

    box-shadow: 0 16px 44px rgba(0,0,0,.09);

    border-bottom-color: var(--accent);
}

.svc-card-lg .svc-icon {
    width: 56px;
    height: 56px;

    border-radius: 12px;

    background: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.svc-card-lg:hover .svc-icon {
    background: var(--accent);
}

.svc-card-lg:hover .svc-icon svg {
    stroke: #fff;
}

.svc-card-lg .svc-icon svg {
    width: 26px;
    height: 26px;

    stroke: var(--accent);

    fill: none;

    stroke-width: 1.6;

    transition: stroke .2s;
}

.svc-card-lg h4 {
    font-size: 16.5px;

    font-weight: 700;

    color: var(--navy);
}

.svc-card-lg p {
    font-size: 13.5px;

    color: var(--gray);

    line-height: 1.7;
}

.svc-card-lg ul {
    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 6px;

    margin-top: 2px;
}

.svc-card-lg ul li {
    font-size: 12.5px;

    color: var(--text);

    display: flex;

    align-items: center;

    gap: 7px;

    font-weight: 500;
}

.svc-card-lg ul li svg {
    width: 13px;
    height: 13px;

    fill: var(--accent);

    flex-shrink: 0;
}

.svc-cta {
    margin-top: 70px;

    background: var(--navy);

    border-radius: 18px;

    padding: 56px 60px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    flex-wrap: wrap;
}

.svc-cta h3 {
    font-family: 'Roboto Slab', serif;

    color: #fff;

    font-size: 26px;

    font-weight: 700;

    margin-bottom: 8px;
}

.svc-cta p {
    color: #aab4a8;

    font-size: 14px;
}

.svc-cta-btns {
    display: flex;

    gap: 14px;

    flex-shrink: 0;
}


/* =========================================================
   GALLERY PAGE
========================================================= */

.gallery-page {
    padding: 90px 0;

    background: #fff;
}

.gallery-filters {
    display: flex;

    justify-content: center;

    gap: 10px;

    flex-wrap: wrap;

    margin: 36px 0 44px;
}

.gf-btn {
    background: var(--light);

    border: 1px solid var(--border);

    color: var(--text);

    font-size: 13px;

    font-weight: 600;

    padding: 10px 22px;

    border-radius: 30px;

    cursor: pointer;

    font-family: 'Roboto', sans-serif;

    transition: all .2s;
}

.gf-btn:hover {
    background: #e2e8f0;
}

.gf-btn.active {
    background: var(--accent);

    border-color: var(--accent);

    color: #fff;
}

.gallery-item {
    position: relative;
}

.gallery-item.gi-hidden {
    display: none;
}

.gallery-item-cat {
    position: absolute;

    bottom: 10px;
    left: 10px;

    background: rgba(16,37,16,.82);

    color: #fff;

    font-size: 11px;

    font-weight: 600;

    padding: 4px 12px;

    border-radius: 20px;

    letter-spacing: .3px;

    pointer-events: none;
}

.gallery-loadmore {
    display: flex;

    justify-content: center;

    margin-top: 44px;
}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page {
    padding: 90px 0;

    background: #fff;
}

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1.15fr;

    gap: 56px;

    align-items: start;
}

.contact-info-list {
    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-top: 28px;
}

.contact-info-card {
    display: flex;

    gap: 16px;

    align-items: flex-start;

    background: var(--light);

    border-radius: 12px;

    padding: 20px 22px;
}

.contact-info-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    border-radius: 10px;

    background: var(--accent);

    display: flex;

    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 21px;
    height: 21px;

    fill: #fff;

    stroke: none;
}

.contact-info-card h5 {
    font-size: 14.5px;

    font-weight: 700;

    color: var(--navy);

    margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 13.5px;

    color: var(--gray);

    line-height: 1.6;

    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--accent);
}

.contact-socials {
    display: flex;

    gap: 8px;

    margin-top: 6px;
}

.contact-form-wrap {
    background: var(--light);

    border-radius: 16px;

    padding: 44px 40px;
}

.contact-form-wrap h3 {
    font-family: 'Roboto Slab', serif;

    font-size: 24px;

    font-weight: 700;

    color: var(--navy);

    margin-bottom: 6px;
}

.contact-form-wrap > p {
    font-size: 13.5px;

    color: var(--gray);

    margin-bottom: 26px;
}

.contact-form {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 7px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 12.5px;

    font-weight: 600;

    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid var(--border);

    border-radius: 8px;

    padding: 12px 14px;

    font-size: 13.5px;

    font-family: 'Roboto', sans-serif;

    color: var(--text);

    background: #fff;

    transition:
        border-color .2s,
        box-shadow .2s;

    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;

    border-color: var(--accent);

    box-shadow: 0 0 0 3px rgba(39,91,34,.12);
}

.form-group textarea {
    resize: vertical;

    min-height: 120px;
}

.form-submit-btn {
    grid-column: 1 / -1;

    background: var(--accent);

    color: #fff;

    padding: 14px 30px;

    border-radius: 8px;

    font-size: 14.5px;

    font-weight: 600;

    border: none;

    cursor: pointer;

    font-family: 'Roboto', sans-serif;

    transition: background .2s, transform .15s;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;
}

.form-submit-btn:hover {
    background: var(--accent-dark);

    transform: translateY(-1px);
}

.form-note {
    grid-column: 1 / -1;

    font-size: 12px;

    color: var(--gray);

    margin-top: -6px;
}

.form-success {
    display: none;

    grid-column: 1 / -1;

    background: #e6f4ea;

    border: 1px solid #b7e0c3;

    color: #1f4a1b;

    padding: 14px 18px;

    border-radius: 8px;

    font-size: 13.5px;

    font-weight: 500;

    align-items: center;

    gap: 8px;
}

.form-success.show {
    display: flex;
}

.contact-map {
    margin-top: 60px;

    border-radius: 16px;

    overflow: hidden;

    border: 1px solid var(--border);

    height: 380px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;

    border: 0;

    display: block;
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 991px) {

    .container,
    .topbar-inner,
    nav,
    .slide-content-inner,
    .hero-strip-inner,
    .footer-top-bar-inner,
    .brands-inner {
        padding-left: 15px;
        padding-right: 15px;
    }


    /* Hide desktop topbar */

    .topbar {
        display: none;
    }


    /* Mobile header */

    header {
        padding: 10px 0;
    }

    nav {
        display: flex;

        height: auto;

        min-height: 70px;

        padding-top: 10px;
        padding-bottom: 10px;

        align-items: center;

        justify-content: space-between;

        gap: 15px;
    }

    .logo img {
        width: 180px !important;
        height: auto !important;
    }


    /* Hide desktop navigation */

    .nav-links,
    .nav-links-main,
    .nav-icons {
        display: none;
    }

    .mega-drop,
    .simple-drop {
        display: none !important;
    }


    /* Mobile menu button */

    .mobile-menu-btn {
        display: flex;

        align-items: center;
        justify-content: center;

        width: 45px;
        height: 45px;

        flex-shrink: 0;

        background: var(--accent);

        color: #fff;

        font-size: 24px;

        border: none;

        border-radius: 6px;

        cursor: pointer;

        position: relative;

        z-index: 9999;
    }


    /* Mobile menu */

    .mobile-menu {
        display: block;

        position: fixed;

        top: 0;
        right: -100%;

        width: 320px;
        max-width: 90%;

        height: 100vh;
        height: 100dvh;

        background: #fff;

        z-index: 10000;

        transition: right .4s ease;

        overflow-y: auto;

        box-shadow: -5px 0 20px rgba(0,0,0,.15);
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu-header {
        display: flex;

        justify-content: space-between;

        align-items: center;

        padding: 20px;

        border-bottom: 1px solid #eee;
    }

    .mobile-menu-header img {
        width: 180px;
    }

    #closeMenu {
        font-size: 24px;

        cursor: pointer;

        width: 40px;
        height: 40px;

        display: flex;

        align-items: center;
        justify-content: center;
    }

    .mobile-menu ul {
        list-style: none;

        padding: 0;

        margin: 0;
    }

    .mobile-menu ul li {
        border-bottom: 1px solid #f1f1f1;
    }

    .mobile-menu ul li a {
        display: block;

        padding: 15px 20px;

        color: var(--navy);

        text-decoration: none;

        font-weight: 500;
    }

    .mobile-menu ul li a:hover {
        color: var(--accent);

        background: #f8fafc;
    }

    .mobile-submenu {
        display: none;

        background: #f8fafc;
    }

    .mobile-submenu li a {
        padding-left: 40px !important;

        font-size: 14px;
    }

    .mobile-dropdown.active .mobile-submenu {
        display: block;
    }

    .mobile-quote-btn {
        display: block;

        margin: 20px;

        text-align: center;

        background: var(--accent);

        color: #fff;

        text-decoration: none;

        padding: 14px;

        border-radius: 6px;

        font-weight: 600;
    }


    /* Hero */

    .hero-slider {
        height: auto;

        min-height: 650px;
    }

    .slide-content h1 {
        font-size: 34px;

        line-height: 1.2;
    }

    .slide-content p {
        font-size: 14px;
    }

    .slide-btns {
        flex-direction: column;

        align-items: flex-start;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;

        text-align: center;
    }

    .slider-arrow {
        display: none;
    }


    /* Hero strip */

    .hero-strip-inner {
        flex-direction: column;
    }

    .hs-item {
        width: 100%;

        border-right: none;

        border-bottom: 1px solid rgba(255,255,255,.1);

        padding: 15px;
    }

    .hs-item:first-child {
        padding-left: 15px;
    }


    /* Trust */

    .trust-bar-inner {
        grid-template-columns: 1fr;
    }

    .tb-item {
        border-right: none;

        border-bottom: 1px solid var(--border);
    }


    /* Categories */

    .cat-grid,
    .cat-grid-3 {
        grid-template-columns: 1fr;
    }

    .cat-featured {
        grid-column: span 1;

        grid-template-columns: 1fr;
    }


    /* About */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-img-wrap img {
        height: 320px;
    }

    .about-badge {
        right: 10px;
    }

    .about-stats {
        flex-direction: column;
    }

    .about-stat {
        border-right: none;

        border-bottom: 1px solid var(--border);
    }

    .about-stat:last-child {
        border-bottom: none;
    }


    /* Services */

    .services-header,
    .faq-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }


    /* Process */

    .process-steps {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }


    /* FAQ */

    .faq-img-frame {
        height: 350px;
    }


    /* Footer */

    .footer-grid,
    .footer-grid-simple {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 12px;

        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;

        justify-content: center;
    }


    /* Sticky sidebar */

    .sticky-side {
        display: none;
    }


    /* Contact */

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

}


/* =========================================================
   SERVICES TABLET
========================================================= */

@media (max-width: 900px) {

    .svc-grid-6 {
        grid-template-columns: repeat(2,1fr);
    }

}


/* =========================================================
   INNER HERO MOBILE
========================================================= */

@media (max-width: 700px) {

    .page-hero {
        padding: 110px 0 60px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

}


/* =========================================================
   SERVICES SMALL MOBILE
========================================================= */

@media (max-width: 600px) {

    .svc-grid-6 {
        grid-template-columns: 1fr;
    }

    .svc-cta {
        padding: 36px 26px;

        text-align: center;

        justify-content: center;
    }

    .svc-cta-btns {
        width: 100%;

        flex-direction: column;
    }

}


/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 576px) {

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }


    /* Typography */

    h1 {
        font-size: 28px !important;
    }

    h2 {
        font-size: 28px !important;
    }

    .slide-content h1 {
        font-size: 28px !important;
    }

    .cat-header h2,
    .about h2,
    .services h2,
    .faq h2 {
        font-size: 28px !important;
    }


    /* Header */

    .logo img {
        width: 150px !important;
    }

    .mobile-menu-btn {
        width: 42px;

        height: 42px;

        font-size: 21px;
    }


    /* Buttons */

    .btn-primary,
    .btn-ghost,
    .btn-quote {
        width: 100%;
    }


    /* Hero */

    .hero-slider {
        min-height: 700px;
    }

    .slide-content-inner {
        padding-left: 18px;

        padding-right: 18px;
    }


    /* Categories */

    .cat-img-wrap {
        height: 210px;
    }


    /* About */

    .about,
    .services,
    .faq {
        padding-top: 70px;

        padding-bottom: 70px;
    }

    .about-img-wrap img {
        height: 280px;
    }


    /* Services */

    .services-grid {
        grid-template-columns: 1fr;
    }


    /* Process */

    .process-steps {
        grid-template-columns: 1fr;
    }


    /* Contact form */

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group,
    .form-group.full {
        grid-column: 1 / -1;
    }

    .contact-form-wrap {
        padding: 32px 20px;
    }

    .contact-map {
        height: 300px;
    }


    /* FAB */

    .contact-fab {
        right: 16px;

        bottom: 16px;
    }

    .fab-btn {
        width: 50px;

        height: 50px;

        font-size: 20px;
    }

}

/* =========================================================
   FRANKLAND PAGE FIX PATCH
   Services + Gallery + Contact + Mobile
========================================================= */

/* ---------- DESKTOP HEADER ---------- */

@media (min-width: 992px) {

    #main-header nav {
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        align-items: center !important;
        gap: 35px;
    }

    #main-header .logo-center {
        grid-column: 1;
        justify-self: start;
    }

    #main-header .nav-links,
    #main-header .nav-links-main {
        grid-column: 2;

        display: flex !important;
        flex-direction: row !important;

        align-items: center;
        justify-content: flex-start;

        gap: 28px;

        width: auto;

        list-style: none;
    }

    #main-header .nav-icons {
        grid-column: 3;

        display: flex !important;

        align-items: center;

        justify-self: end;
    }

    .mobile-menu,
    .mobile-menu-btn {
        display: none !important;
    }
}


/* =========================================================
   INNER PAGE HERO
========================================================= */

.page-hero {
    position: relative;

    padding: 100px 0 80px;

    background:
        linear-gradient(
            rgba(16,37,16,.88),
            rgba(16,37,16,.88)
        ),
        url('../assets/Image6.jpeg') center center / cover no-repeat;

    text-align: center;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-tag {
    display: inline-block;

    padding: 6px 15px;

    margin-bottom: 18px;

    background: #275B22;

    color: #fff;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;
}

.page-hero h1 {
    color: #fff;

    font-family: 'Roboto Slab', serif;

    font-size: 46px;

    line-height: 1.15;

    margin-bottom: 15px;
}

.page-hero p {
    max-width: 600px;

    margin: 0 auto;

    color: #d4ddd3;

    font-size: 15px;

    line-height: 1.7;
}

.breadcrumb {
    display: flex;

    justify-content: center;
    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 20px;

    font-size: 13px;
}

.breadcrumb a {
    color: #fff;

    text-decoration: none;
}

.breadcrumb .sep {
    color: rgba(255,255,255,.5);
}

.breadcrumb .current {
    color: #86d67d;
}


/* =========================================================
   SERVICES PAGE
========================================================= */

.services-page {
    padding: 90px 0;

    background: #fff;
}

.svc-grid-6 {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;
}

.svc-card-lg {
    background: #f5f6fa;

    border-radius: 14px;

    padding: 32px 28px;

    display: flex;

    flex-direction: column;

    gap: 14px;

    border-bottom: 3px solid transparent;

    transition:
        transform .25s,
        box-shadow .25s,
        background .25s;
}

.svc-card-lg:hover {
    transform: translateY(-5px);

    background: #fff;

    box-shadow: 0 16px 44px rgba(0,0,0,.09);

    border-bottom-color: #275B22;
}

.svc-card-lg .svc-icon {
    width: 56px;
    height: 56px;

    border-radius: 12px;

    background: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.svc-card-lg .svc-icon svg {
    width: 26px;
    height: 26px;

    stroke: #275B22;

    fill: none;

    stroke-width: 1.6;
}

.svc-card-lg:hover .svc-icon {
    background: #275B22;
}

.svc-card-lg:hover .svc-icon svg {
    stroke: #fff;
}

.svc-card-lg h4 {
    font-size: 16.5px;

    font-weight: 700;

    color: var(--navy);
}

.svc-card-lg p {
    font-size: 13.5px;

    color: var(--gray);

    line-height: 1.7;
}

.svc-card-lg ul {
    list-style: none;

    display: flex;

    flex-direction: column;

    gap: 7px;
}

.svc-card-lg ul li {
    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 12.5px;

    color: var(--text);
}

.svc-card-lg ul li svg {
    width: 13px;
    height: 13px;

    fill: #275B22;

    flex-shrink: 0;
}


/* SERVICES CTA */

.svc-cta {
    margin-top: 70px;

    background: var(--navy);

    border-radius: 18px;

    padding: 56px 60px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    flex-wrap: wrap;
}

.svc-cta h3 {
    color: #fff;

    font-family: 'Roboto Slab', serif;

    font-size: 26px;

    margin-bottom: 8px;
}

.svc-cta p {
    color: #aab4a8;

    font-size: 14px;
}

.svc-cta-btns {
    display: flex;

    align-items: center;

    gap: 14px;
}


/* =========================================================
   GALLERY PAGE
========================================================= */

.gallery-page {
    padding: 90px 0;

    background: #fff;
}

.gallery-filters {
    display: flex;

    justify-content: center;

    gap: 10px;

    flex-wrap: wrap;

    margin: 36px 0 44px;
}

.gf-btn {
    padding: 10px 22px;

    background: var(--light);

    border: 1px solid var(--border);

    border-radius: 30px;

    color: var(--text);

    font-family: 'Roboto', sans-serif;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition: all .2s ease;
}

.gf-btn:hover {
    border-color: #275B22;

    color: #275B22;
}

.gf-btn.active {
    background: #275B22;

    border-color: #275B22;

    color: #fff;
}


/* GALLERY GRID */

.gallery-grid {
    display: grid !important;

    grid-template-columns: repeat(3, minmax(0,1fr));

    gap: 25px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    border-radius: 12px;

    cursor: pointer;

    min-width: 0;
}

.gallery-item img {
    display: block;

    width: 100%;
    height: 320px;

    object-fit: cover;

    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item.gi-hidden {
    display: none !important;
}

.gallery-item-cat {
    position: absolute;

    left: 12px;
    bottom: 12px;

    padding: 6px 14px;

    background: rgba(16,37,16,.85);

    color: #fff;

    border-radius: 20px;

    font-size: 12px;
    font-weight: 600;

    z-index: 2;
}


/* =========================================================
   GALLERY LIGHTBOX
========================================================= */

.lightbox {
    position: fixed;

    inset: 0;

    z-index: 99999;

    background: rgba(0,0,0,.92);

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.lightbox.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}

.lightbox img {
    display: block;

    max-width: 90vw;
    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 8px;
}

.lightbox-close {
    position: absolute;

    top: 25px;
    right: 25px;

    width: 44px;
    height: 44px;

    border: none;

    border-radius: 50%;

    background: #fff;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 2;
}

.lightbox-close svg {
    width: 20px;
    height: 20px;

    fill: #102510;
}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page {
    padding: 90px 0;

    background: #fff;
}

.contact-grid {
    display: grid;

    grid-template-columns: minmax(0,1fr) minmax(0,1.15fr);

    gap: 56px;

    align-items: start;
}

.contact-info-list {
    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-top: 28px;
}

.contact-info-card {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding: 20px 22px;

    background: var(--light);

    border-radius: 12px;
}

.contact-info-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

    background: #275B22;

    border-radius: 10px;

    display: flex;

    align-items: center;
    justify-content: center;
}

.contact-info-icon svg {
    width: 21px;
    height: 21px;

    fill: #fff;
}

.contact-info-card h5 {
    margin-bottom: 4px;

    color: var(--navy);

    font-size: 14.5px;

    font-weight: 700;
}

.contact-info-card p,
.contact-info-card a {
    color: var(--gray);

    font-size: 13.5px;

    line-height: 1.6;

    text-decoration: none;
}

.contact-info-card a:hover {
    color: #275B22;
}


/* CONTACT FORM */

.contact-form-wrap {
    padding: 44px 40px;

    background: var(--light);

    border-radius: 16px;
}

.contact-form-wrap h3 {
    margin-bottom: 6px;

    color: var(--navy);

    font-family: 'Roboto Slab', serif;

    font-size: 24px;
}

.contact-form-wrap > p {
    margin-bottom: 26px;

    color: var(--gray);

    font-size: 13.5px;
}

.contact-form {
    display: grid;

    grid-template-columns: repeat(2, minmax(0,1fr));

    gap: 18px;
}

.form-group {
    display: flex;

    flex-direction: column;

    gap: 7px;

    min-width: 0;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--navy);

    font-size: 12.5px;

    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    display: block;

    width: 100%;

    max-width: 100%;

    padding: 12px 14px;

    border: 1px solid var(--border);

    border-radius: 8px;

    background: #fff;

    color: var(--text);

    font-family: 'Roboto', sans-serif;

    font-size: 13.5px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;

    border-color: #275B22;

    box-shadow: 0 0 0 3px rgba(39,91,34,.12);
}

.form-group textarea {
    min-height: 120px;

    resize: vertical;
}

.form-submit-btn {
    grid-column: 1 / -1;

    padding: 14px 30px;

    background: #275B22;

    color: #fff;

    border: none;

    border-radius: 8px;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    font-size: 14px;

    font-weight: 600;
}

.form-submit-btn:hover {
    background: #1F4A1B;
}

.form-note {
    grid-column: 1 / -1;

    color: var(--gray);

    font-size: 12px;
}

.form-success {
    display: none;

    grid-column: 1 / -1;

    padding: 14px 18px;

    background: #e6f4ea;

    border: 1px solid #b7e0c3;

    border-radius: 8px;

    color: #1f4a1b;

    font-size: 13px;

    align-items: center;

    gap: 8px;
}

.form-success.show {
    display: flex;
}


/* CONTACT MAP */

.contact-map {
    height: 380px;

    margin-top: 60px;

    border: 1px solid var(--border);

    border-radius: 16px;

    overflow: hidden;
}

.contact-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================================
   MOBILE MENU
========================================================= */

@media (max-width: 991px) {

    #main-header {
        padding: 8px 0;
    }

    #main-header nav {
        display: flex !important;

        height: auto !important;

        min-height: 70px;

        justify-content: space-between;

        align-items: center;
    }

    #main-header .nav-links,
    #main-header .nav-links-main,
    #main-header .nav-icons {
        display: none !important;
    }

    #main-header .logo {
        margin: 0;
    }

    #main-header .logo img {
        width: 180px !important;

        height: auto !important;
    }


    /* IMPORTANT:
       overrides old display:none !important */

    body > .mobile-menu-btn {
        display: flex !important;

        position: fixed;

        top: 36px;
        right: 18px;

        width: 45px;
        height: 45px;

        align-items: center;
        justify-content: center;

        background: #275B22;

        color: #fff;

        border-radius: 6px;

        cursor: pointer;

        z-index: 10001;
    }

    body > .mobile-menu {
        display: block !important;

        position: fixed;

        top: 0;
        right: -100%;

        width: 320px;

        max-width: 90vw;

        height: 100vh;
        height: 100dvh;

        background: #fff;

        z-index: 10002;

        overflow-y: auto;

        transition: right .35s ease;

        box-shadow: -5px 0 25px rgba(0,0,0,.15);
    }

    body > .mobile-menu.active {
        right: 0;
    }

    .mobile-menu-header {
        display: flex;

        align-items: center;
        justify-content: space-between;

        padding: 18px 20px;

        border-bottom: 1px solid #eee;
    }

    .mobile-menu-header img {
        width: 170px;

        height: auto;
    }

    #closeMenu {
        width: 40px;
        height: 40px;

        display: flex;

        align-items: center;
        justify-content: center;

        font-size: 23px;

        cursor: pointer;
    }

    .mobile-menu ul {
        margin: 0;

        padding: 0;

        list-style: none;
    }

    .mobile-menu > ul > li {
        border-bottom: 1px solid #eee;
    }

    .mobile-menu ul li a {
        display: block;

        padding: 15px 20px;

        color: #183D18;

        text-decoration: none;

        font-size: 15px;

        font-weight: 500;
    }

    .mobile-menu ul li a.active {
        color: #275B22;

        font-weight: 700;
    }

    .mobile-submenu {
        display: none;

        background: #f7f9f7;
    }

    .mobile-dropdown.active > .mobile-submenu {
        display: block;
    }

    .mobile-submenu li a {
        padding-left: 40px !important;

        font-size: 14px;
    }

    .mobile-quote-btn {
        display: block;

        margin: 20px;

        padding: 14px 18px;

        background: #275B22;

        color: #fff !important;

        border-radius: 6px;

        text-align: center;

        text-decoration: none;

        font-weight: 600;
    }


    /* Inner pages */

    .page-hero {
        padding: 70px 0 60px;
    }

    .page-hero h1 {
        font-size: 36px;
    }


    /* Services */

    .svc-grid-6 {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }


    /* Gallery */

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    }


    /* Contact */

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

}


/* =========================================================
   PHONE
========================================================= */

@media (max-width: 600px) {

    .page-hero {
        padding: 60px 0 50px;
    }

    .page-hero h1 {
        font-size: 31px !important;
    }


    /* Services */

    .svc-grid-6 {
        grid-template-columns: 1fr;
    }

    .svc-cta {
        padding: 36px 24px;

        text-align: center;

        justify-content: center;
    }

    .svc-cta-btns {
        width: 100%;

        flex-direction: column;
    }

    .svc-cta-btns a {
        width: 100%;

        text-align: center;
    }


    /* Gallery */

    .gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .gallery-item img {
        height: 260px;
    }


    /* Contact */

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group,
    .form-group.full {
        grid-column: 1 / -1;
    }

    .contact-form-wrap {
        padding: 30px 20px;
    }

    .contact-map {
        height: 300px;
    }

}


/* =========================================================
   SAFETY FIXES
========================================================= */

img {
    max-width: 100%;
}

svg {
    max-width: 100%;
}

.contact-grid > *,
.svc-grid-6 > *,
.gallery-grid > * {
    min-width: 0;
}



