@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&family=Merriweather:wght@400;700&display=swap');

/* ================================================================
   VARIABLES
   ================================================================ */
:root {
    --primary: #1b6ca8;
    --primary-dark: #134e7a;
    --accent: #17a589;
    --white: #ffffff;
    --bg: #f5f8fb;
    --bg-alt: #eaf1f8;
    --text: #1a2e3b;
    --text-body: #3d5166;
    --text-muted: #7b93a8;
    --border: #d0e3f0;
    --shadow: 0 2px 12px rgba(27, 108, 168, 0.09);
    --shadow-md: 0 6px 28px rgba(27, 108, 168, 0.13);
    --radius: 10px;
    --radius-lg: 16px;
}

/* ================================================================
   BASE RESET
   ================================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    color: var(--text-body);
    background: var(--bg);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Merriweather', serif;
    color: var(--text);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* ================================================================
   TOPBAR
   ================================================================ */
.topbar {
    background: var(--primary-dark);
    padding: 10px 0;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.80);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
}

.topbar-item i {
    color: #7ecfb3;
    font-size: 0.88rem;
}

.topbar-social {
    display: flex;
    gap: 8px;
}

.topbar-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.80);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    transition: background 0.2s;
}

.topbar-social a:hover {
    background: var(--accent);
}

/* ================================================================
   NAVBAR
   ================================================================ */
.site-navbar {
    background: var(--white);
    border-bottom: 3px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 200;
    box-shadow: var(--shadow);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}



.logo {
    display: flex;
    align-items: center;
    margin-left: -70px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 100px;
    width: 300px;
    display: block;
    object-fit: cover;
}



.brand-name {
    font-family: 'Merriweather', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1;
}

.brand-name span {
    color: var(--accent);
}

.brand-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 600;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-body);
    padding: 9px 16px;
    border-radius: var(--radius);
    transition: color 0.2s, background 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--bg-alt);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white);
    padding: 11px 26px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 0.93rem;
    margin-left: 10px;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.nav-toggler {
    display: none;
    background: none;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 8px 12px;
    color: var(--primary-dark);
    font-size: 1.15rem;
}

/* ================================================================
   MOBILE MENU
   ================================================================ */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    flex-direction: column;
    padding: 28px;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 36px;
}

.mobile-close {
    width: 42px;
    height: 42px;
    background: var(--bg-alt);
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-link {
    padding: 14px 18px;
    border-radius: var(--radius);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s;
}

.mobile-link:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

.mobile-link i {
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.mobile-cta-wrap {
    margin-top: 24px;
}

.mobile-cta-wrap .nav-cta {
    width: 100%;
    justify-content: center;
    font-size: 1rem;
    padding: 14px;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1b6ca8 100%, #17a589 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat; */
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #a8e6d5;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 22px;
}

.hero-title .accent {
    color: #7ecfb3;
}

.hero-title .sub-line {
    display: block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.6em;
    font-weight: 400;
    font-family: 'Nunito', sans-serif;
    margin-top: 10px;
    letter-spacing: 0.01em;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.9;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 52px;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 1rem;
    transition: background 0.2s;
    border: none;
}

.btn-main:hover {
    background: #13907c;
    color: var(--white);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 13px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hstat-number {
    font-family: 'Merriweather', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.hstat-number span {
    color: #7ecfb3;
}

.hstat-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 5px;
}

/* Hero right panel */
.hero-panel-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 10px 0;
}

.hero-panel {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    padding: 36px;
    width: 100%;
    max-width: 400px;
}

.panel-title {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.panel-sub {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.42);
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    margin-bottom: 6px;
}

.panel-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.panel-row:last-of-type {
    border-bottom: none;
}

.panel-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: rgba(23, 165, 137, 0.20);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7ecfb3;
    font-size: 0.95rem;
}

.panel-label {
    color: rgba(255, 255, 255, 0.80);
    font-size: 0.92rem;
    font-weight: 600;
    flex: 1;
}

.panel-count {
    font-size: 0.80rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.08);
    padding: 3px 10px;
    border-radius: 20px;
}

.panel-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-top: 20px;
}

.panel-badge-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.panel-badge-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.panel-badge-value {
    font-size: 0.93rem;
    font-weight: 800;
    color: var(--text);
}

/* ================================================================
   TRUST STRIP
   ================================================================ */
.trust-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.strip-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* flex-wrap: wrap; */
}

.strip-item {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 26px 30px;
    border-right: 1px solid var(--border);
    transition: background 0.2s;
}

.strip-item:last-child {
    border-right: none;
}

.strip-item:hover {
    background: var(--bg-alt);
}

.strip-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.strip-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 3px;
    line-height: 1.2;
}

.strip-desc {
    font-size: 0.80rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* ================================================================
   SECTION COMMONS — shared padding/bg helpers
   ================================================================ */
.categories-section,
.featured-products-section,
.why-section,
.testimonials-section {
    padding: 96px 0;
}

.featured-products-section,
.testimonials-section {
    background: var(--bg-alt);
}

.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.sec-label::before {
    content: '';
    width: 26px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    display: inline-block;
}

.testimonials-section .sec-label::after {
    content: '';
    width: 26px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    display: inline-block;
}

.sec-title {
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
}

.sec-title .hl {
    color: var(--primary);
}

.sec-desc {
    font-size: 1rem;
    color: var(--text-muted);
    /* max-width: 540px; */
    line-height: 1.85;
}

.sec-line {
    width: 48px;
    height: 4px;
    background: var(--accent);
    border-radius: 3px;
    margin-top: 16px;
}

/* ================================================================
   PRODUCT CATEGORIES
   ================================================================ */
.categories-section .cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 56px;
}

.categories-section .cat-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}

.categories-section .cat-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.categories-section .cat-icon {
    width: 58px;
    height: 58px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: background 0.2s, color 0.2s;
}

.categories-section .cat-card:hover .cat-icon {
    background: var(--accent);
    color: var(--white);
}

.categories-section .cat-name {
    font-size: 1.06rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
    font-family: 'Nunito', sans-serif;
}

.categories-section .cat-desc {
    font-size: 0.89rem;
    color: var(--text-muted);
    line-height: 1.72;
    margin-bottom: 18px;
}

.categories-section .cat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 20px;
}

.categories-section .cat-tag {
    font-size: 0.74rem;
    font-weight: 700;
    background: var(--bg-alt);
    color: var(--primary);
    padding: 4px 11px;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.categories-section .cat-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.categories-section .cat-count {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.categories-section .cat-more {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ================================================================
   STATS BAND
   ================================================================ */
.stats-band {
    background: var(--primary);
    padding: 64px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
    text-align: center;
    padding: 20px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-cell:last-child {
    border-right: none;
}

.stat-number {
    font-family: 'Merriweather', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    color: #7ecfb3;
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ================================================================
   FEATURED PRODUCTS
   ================================================================ */
.featured-products-section .prod-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 36px;
}

.featured-products-section .prod-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.featured-products-section .ptab {
    padding: 9px 20px;
    border-radius: var(--radius);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-muted);
    background: var(--white);
    border: 1.5px solid var(--border);
    transition: all 0.2s;
}

.featured-products-section .ptab:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.featured-products-section .ptab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.featured-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 26px;
}

.featured-products-section .product-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.featured-products-section .product-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.featured-products-section .pc-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.35rem;
    margin-bottom: 18px;
    transition: background 0.2s, color 0.2s;
}

.featured-products-section .product-card:hover .pc-icon {
    background: var(--accent);
    color: var(--white);
}

.featured-products-section .pc-name {
    font-family: 'Merriweather', serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 7px;
    line-height: 1.3;
}

.featured-products-section .pc-comp {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 14px;
    flex-grow: 1;
}

.featured-products-section .pc-badge {
    display: inline-block;
    background: var(--bg-alt);
    color: var(--primary);
    font-size: 0.73rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: flex-start;
}

.featured-products-section .pc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.featured-products-section .pc-enquire {
    font-size: 0.86rem;
    font-weight: 800;
    color: var(--primary);
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.featured-products-section .pc-enquire:hover {
    color: var(--accent);
}

.featured-products-section .pc-save {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    transition: all 0.2s;
}

.featured-products-section .pc-save:hover {
    background: #fef2f2;
    color: #e05252;
    border-color: #fecaca;
}

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-section .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 26px;
    margin-top: 56px;
}

.why-section .why-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
}

.why-section .why-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.why-section .why-num {
    position: absolute;
    top: 18px;
    right: 22px;
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg-alt);
    line-height: 1;
    user-select: none;
}

.why-section .why-icon {
    width: 54px;
    height: 54px;
    background: var(--bg-alt);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.why-section .why-title {
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
    font-family: 'Nunito', sans-serif;
}

.why-section .why-desc {
    font-size: 0.89rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ================================================================
   TESTIMONIALS SLIDER
   ================================================================ */

.testimonials-section {
    text-align: center;
}

.testimonials-section .tslider-wrap {
    margin-top: 56px;
    position: relative;
}

.testimonials-section .tslider {
    overflow: hidden;
    width: 100%;
}

.testimonials-section .tslider-track {
    display: flex;
    gap: 26px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonials-section .tcard {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 30px;
    transition: box-shadow 0.2s, transform 0.2s;
    flex-shrink: 0;
}

.testimonials-section .tcard:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonials-section .tcard-stars {
    color: #e6a817;
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonials-section .tcard-text {
    font-size: 0.96rem;
    color: var(--text-body);
    line-height: 1.9;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonials-section .tcard-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.testimonials-section .tcard-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 0.92rem;
    flex-shrink: 0;
}

.testimonials-section .tcard-name {
    font-size: 0.96rem;
    font-weight: 800;
    color: var(--text);
}

.testimonials-section .tcard-role {
    font-size: 0.80rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.testimonials-section .tslider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

.testimonials-section .tslider-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--primary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    cursor: pointer;
    flex-shrink: 0;
}

.testimonials-section .tslider-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.testimonials-section .tslider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.testimonials-section .tdot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.testimonials-section .tdot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* ================================================================
   CONTACT / CTA
   ================================================================ */
.contact-section {
    background: var(--primary-dark);
    padding: 88px 0;
}

.contact-title {
    font-size: clamp(1.65rem, 3vw, 2.3rem);
    color: var(--white);
    margin-bottom: 14px;
}

.contact-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.58);
    margin-bottom: 34px;
    max-width: 460px;
    line-height: 1.85;
}

.contact-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 800;
    font-size: 0.97rem;
    transition: background 0.2s;
}

.btn-contact:hover {
    background: #13907c;
    color: var(--white);
}

.btn-contact-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 13px 28px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.97rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: border-color 0.2s, background 0.2s;
}

.btn-contact-outline:hover {
    border-color: rgba(255, 255, 255, 0.70);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
}

.contact-info-box {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    padding: 38px;
}

.cib-title {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.cib-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.cib-item:last-child {
    margin-bottom: 0;
}

.cib-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7ecfb3;
    font-size: 0.9rem;
    margin-top: 2px;
}

.cib-lbl {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.40);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
    margin-bottom: 3px;
}

.cib-val {
    font-size: 0.96rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
    background: #0d1e2e;
    color: rgba(255, 255, 255, 0.55);
    padding: 72px 0 0;
}
.foot-logo{
    margin-left: -70px;
}
.foot-logo img {
    height: 200px;
    width: 350px;

}

.foot-brand-name {
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.foot-brand-name span {
    color: #7ecfb3;
}

.foot-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 8px;
    line-height: 1.7;
    max-width: 230px;
}

.foot-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.foot-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.82rem;
    transition: background 0.2s, color 0.2s;
}

.foot-social a:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

.foot-col {
    margin-bottom: 40px;
}

.foot-heading {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.10em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.foot-links li {
    margin-bottom: 10px;
}

.foot-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    gap: 7px;
    transition: color 0.2s, padding-left 0.2s;
}

.foot-links a::before {
    content: '›';
    color: #7ecfb3;
    font-size: 1.05rem;
}

.foot-links a:hover {
    color: #7ecfb3;
    padding-left: 4px;
}

.foot-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.fci-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7ecfb3;
    font-size: 0.82rem;
    margin-top: 2px;
}

.fci-strong {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.80rem;
    margin-bottom: 2px;
    font-weight: 700;
}

.fci-val {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.55;
}

.foot-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    margin-top: 12px;
}

.foot-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.foot-copy {
    font-size: 0.80rem;
    color: rgba(255, 255, 255, 0.26);
}

.foot-legal {
    display: flex;
    gap: 18px;
}

.foot-legal a {
    font-size: 0.80rem;
    color: rgba(255, 255, 255, 0.26);
    transition: color 0.2s;
}

.foot-legal a:hover {
    color: #7ecfb3;
}

/* ================================================================
   BACK TO TOP
   ================================================================ */
.back-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, background 0.2s;
    z-index: 99;
}

.back-top.visible {
    opacity: 1;
    pointer-events: all;
}

.back-top:hover {
    background: var(--accent);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 992px) {

    .navbar-menu,
    .nav-cta {
        display: none;
    }

    .nav-toggler {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-cell:nth-child(2) {
        border-right: none;
    }

    .stat-cell:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.18);
    }

    .stat-cell:nth-child(4) {
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        border-right: none;
    }

    .strip-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .strip-item:last-child {
        border-bottom: none;
    }

    .testimonials-section .tslider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .categories-section,
    .featured-products-section,
    .why-section,
    .testimonials-section {
        padding: 64px 0;
    }

    .hero {
        padding: 64px 0;
    }

    .hero-panel-wrap {
        padding-top: 36px;
    }

    .topbar-right {
        display: none;
    }

    .categories-section .cat-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .featured-products-section .products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-section .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-section .tslider {
        grid-template-columns: 1fr;
    }

    .featured-products-section .prod-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        gap: 24px;
    }
}

@media (max-width: 540px) {
    .categories-section .cat-grid {
        grid-template-columns: 1fr;
    }

    .featured-products-section .products-grid {
        grid-template-columns: 1fr;
    }

    .why-section .why-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn-main,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .contact-btns {
        flex-direction: column;
    }

    .btn-contact,
    .btn-contact-outline {
        width: 100%;
        justify-content: center;
    }

    .foot-bottom-inner {
        flex-direction: column;
        align-items: center;
    }

    .foot-legal {
        justify-content: center;
    }
}
.featured-products-section .product-card .img-box {
    width: 100%;
    height: 184px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
}

.featured-products-section .product-card .img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 16px;
}
   