:root {
    --primary: #446124;
    /* Deep Forest Green */
    --primary-700: #334a1b;
    /* Darker Green */
    --primary-900: #1c2a0f;
    /* Deep Charcoal Green */
    --accent: #7cb63a;
    /* Vibrant Leaf Green */
    --accent-700: #659b2d;
    /* Rich Leaf Green */
    --accent-light: #f3f9eb;
    /* Subtle green background */
    --ink: #1e293b;
    /* Clean Dark Slate */
    --muted: #64748b;
    /* Cool Gray */
    --line: #e2e8f0;
    /* Slate border */
    --soft: #f8fafc;
    /* Pure Soft White/Gray */
    --white: #ffffff;
    --shadow: 0 12px 28px -6px rgba(28, 42, 15, 0.08), 0 4px 10px -2px rgba(28, 42, 15, 0.04);
    --border-radius: 6px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Poppins", Arial, sans-serif;
    line-height: 1.65;
    background-color: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: #ffffff;
    box-shadow: 0 4px 22px rgba(12, 45, 78, 0.08);
}

.masthead {
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%22300%22 height=%22120%22 viewBox=%220 0 300 120%22%3E%3Cg transform=%22translate(30, 25) rotate(15)%22%3E%3Ccircle cx=%220%22 cy=%220%22 r=%227%22 fill=%22none%22 stroke=%22%23446124%22 stroke-width=%221.2%22 stroke-opacity=%220.12%22/%3E%3Cline x1=%22-7%22 y1=%220%22 x2=%227%22 y2=%220%22 stroke=%22%23446124%22 stroke-width=%221%22 stroke-opacity=%220.12%22/%3E%3C/g%3E%3Cg transform=%22translate(95, 75) rotate(-35)%22%3E%3Crect x=%22-10%22 y=%22-5%22 width=%2220%22 height=%2210%22 rx=%225%22 fill=%22none%22 stroke=%22%23446124%22 stroke-width=%221.2%22 stroke-opacity=%220.12%22/%3E%3Cline x1=%220%22 y1=%22-5%22 x2=%220%22 y2=%225%22 stroke=%22%23446124%22 stroke-width=%221%22 stroke-opacity=%220.12%22/%3E%3C/g%3E%3Cg transform=%22translate(155, 30) rotate(20)%22%3E%3Cpath d=%22M-4,-12 L4,-12 M-2,-12 L-2,-7 L-6,-4 L-6,12 L6,12 L6,-4 L2,-7 L2,-12%22 fill=%22none%22 stroke=%22%23446124%22 stroke-width=%221.2%22 stroke-opacity=%220.12%22/%3E%3C/g%3E%3Cg transform=%22translate(215, 85) rotate(-45)%22%3E%3Crect x=%22-3%22 y=%22-10%22 width=%226%22 height=%2218%22 fill=%22none%22 stroke=%22%23446124%22 stroke-width=%221.2%22 stroke-opacity=%220.12%22/%3E%3Cline x1=%220%22 y1=%22-10%22 x2=%220%22 y2=%22-15%22 stroke=%22%23446124%22 stroke-width=%221%22 stroke-opacity=%220.12%22/%3E%3Cline x1=%220%22 y1=%228%22 x2=%220%22 y2=%2214%22 stroke=%22%23446124%22 stroke-width=%221%22 stroke-opacity=%220.12%22/%3E%3C/g%3E%3Cg transform=%22translate(270, 35) rotate(10)%22%3E%3Cpath d=%22M0,-10 C4,-4 7,-1 7,3 C7,7 4,10 0,10 C-4,10 -7,7 -7,3 C-7,-1 -4,-4 0,-10 Z%22 fill=%22none%22 stroke=%22%23446124%22 stroke-width=%221.2%22 stroke-opacity=%220.12%22/%3E%3C/g%3E%3C/svg%3E");
}

.masthead__inner {
    display: grid;
    grid-template-columns: 360px 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 110px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: -40px;
}

.brand-logo-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.brand-logo-text {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.masthead__content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-left: auto;
    gap: 10px;
}

.contact-strip,
.utility-row,
.languages,
.hero__actions,
.category-strip__inner,
.quote-band__inner,
.region-list {
    display: flex;
    align-items: center;
}

.contact-strip {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px 18px;
    color: #24435e;
    font-size: 14px;
    font-weight: 600;
}

.contact-strip a {
    position: relative;
    white-space: nowrap;
}

.contact-strip a+a::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    width: 1px;
    height: 14px;
    background: #c7d6e2;
    transform: translateY(-50%);
}

.utility-row {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 14px;
}

.search-form {
    display: grid;
    grid-template-columns: minmax(190px, 260px) 82px;
    height: 38px;
    border: 1px solid #cddbe7;
    background: #fff;
}

.search-form input {
    min-width: 0;
    padding: 0 12px;
    border: 0;
    outline: none;
    color: var(--ink);
}

.search-form button {
    border: 0;
    color: #fff;
    background: var(--primary);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.languages {
    flex-wrap: wrap;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
}

.languages a {
    padding: 6px 9px;
    color: var(--primary-900);
    background: #eef6fb;
    border-left: 3px solid var(--accent);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    padding: 10px 14px;
    color: var(--primary-900);
    background: #fff;
    font-weight: 800;
    cursor: pointer;
}

.menu-bar {
    background: linear-gradient(90deg, var(--primary) 0%, #b39659 50%, var(--accent) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(68, 97, 36, 0.15);
}

.primary-menu {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    min-height: 50px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-menu>li {
    position: relative;
}

.primary-menu>li>a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 16px;
    white-space: nowrap;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.2s ease-in-out;
}

.primary-menu>li:first-child>a {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.primary-menu>li>a:hover,
.primary-menu>li.is-active>a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.25);
}

.has-dropdown>a::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 8px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(255, 255, 255, 0.7);
    transition: transform 0.25s ease, border-top-color 0.25s ease;
}

.has-dropdown:hover>a::after {
    transform: rotate(180deg);
    border-top-color: #fff;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 100;
    min-width: 250px;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    background: #fff;
    border-top: 4px solid var(--accent);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 10px 22px;
    color: var(--primary-900);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dropdown a:hover {
    color: #fff;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    padding-left: 26px;
}

.dropdown li.is-child-active a {
    color: var(--accent);
    background: rgba(124, 93, 237, 0.05);
    padding-left: 24px;
}

.hero {
    position: relative;
    min-height: 610px;
    color: #fff;
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(28, 42, 15, 0.88), rgba(68, 97, 36, 0.46), rgba(179, 150, 89, 0.14)),
        url("../images/slide_01.jpg") center / cover no-repeat;
}

.hero__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 92px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.hero__content {
    position: relative;
    z-index: 1;
    padding: 118px 0 150px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 760px;
    margin: 0 0 14px;
    font-size: clamp(42px, 6vw, 70px);
    line-height: 1.04;
    font-weight: 800;
}

.hero p:not(.eyebrow) {
    max-width: 650px;
    margin: 0 0 30px;
    color: #eef8ff;
    font-size: 20px;
}

.hero__actions {
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border: 0;
    font-weight: 800;
    cursor: pointer;
}

.button--primary {
    color: #fff;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    box-shadow: 0 9px 24px rgba(47, 131, 207, 0.28);
}

.button--secondary,
.button--light {
    color: var(--primary-900);
    background: #fff;
}

.category-strip {
    position: relative;
    z-index: 2;
    margin-top: -52px;
}

.category-strip__inner {
    justify-content: center;
    flex-wrap: wrap;
    background: #fff;
    box-shadow: var(--shadow);
}

.category-strip a {
    flex: 1 1 220px;
    padding: 22px 18px;
    color: var(--primary-900);
    text-align: center;
    border-right: 1px solid var(--line);
    border-bottom: 4px solid transparent;
    font-weight: 800;
}

.category-strip a:hover {
    color: var(--primary);
    border-bottom-color: var(--accent);
}

.section {
    padding: 50px 0;
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
}

.split--reverse {
    grid-template-columns: 0.95fr 1.05fr;
}

.split img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(19, 53, 81, 0.12);
}

h2 {
    margin: 0 0 12px;
    color: #132c45;
    font-size: clamp(28px, 3.5vw, 38px);
    line-height: 1.16;
}

.check-list,
.product-card ul {
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.check-list li,
.product-card li {
    position: relative;
    padding-left: 24px;
    margin: 8px 0;
}

.check-list li::before,
.product-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    background: var(--accent);
}

.quote-band {
    color: #fff;
    background: linear-gradient(90deg, var(--primary-900), var(--primary), var(--accent));
}

.quote-band__inner {
    justify-content: space-between;
    gap: 20px;
    padding: 30px 0;
}

.quote-band h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(24px, 4vw, 34px);
}

.products-section,
.why,
.brochures {
    background: var(--soft);
}

.section-title {
    max-width: 740px;
    margin: 0 auto 38px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.product-card {
    display: grid;
    grid-template-columns: 42% 1fr;
    min-height: 320px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 26px rgba(15, 40, 70, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 40, 70, 0.15);
}

.product-card__img-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.product-card__img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover .product-card__img-container img {
    transform: scale(1.08);
}

.product-card__body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card h3,
.team-grid h3,
.footer h3 {
    margin: 0 0 12px;
}

.text-link {
    display: inline-flex;
    margin-top: 18px;
    color: var(--accent);
    font-weight: 800;
}

.text-link:hover {
    color: var(--primary);
}

.quality {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(28, 42, 15, 0.92), rgba(124, 182, 58, 0.76)),
        url("../images/slide_02.jpg") center / cover no-repeat;
}

.quality h2 {
    color: #fff;
}

.quality-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.quality-list {
    display: grid;
    gap: 14px;
}

.quality-list span {
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.13);
    border-left: 4px solid var(--accent);
    font-weight: 800;
}

.why__grid,
.stats,
.team-grid,
.brochure-grid,
.contact-cards,
.footer__grid,
.mission-grid {
    display: grid;
    gap: 18px;
}

.why__grid {
    grid-template-columns: repeat(3, 1fr);
}

.why__grid div {
    padding: 22px;
    border-left: 4px solid var(--accent);
    background: #fff;
    color: var(--primary-900);
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(15, 40, 70, 0.06);
}

.stats {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 34px;
}

.stats div {
    padding: 28px 18px;
    color: #fff;
    text-align: center;
    background: var(--primary-900);
}

.stats strong {
    display: block;
    color: var(--accent);
    font-size: 34px;
    line-height: 1;
}

.region-list {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.region-list span {
    padding: 9px 14px;
    color: var(--primary-900);
    background: #eaf4fb;
    font-weight: 800;
}

.region-button {
    margin-top: 24px;
}

.quote-card-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 50px 60px;
    color: #ffffff;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary) 50%, var(--accent) 100%);
    box-shadow: 0 16px 40px rgba(27, 94, 163, 0.12);
    position: relative;
    overflow: hidden;
}

.quote-card-modern::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.quote-card-modern::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.quote-card-content {
    flex: 1;
    z-index: 1;
}

.eyebrow-cta {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-light);
    margin: 0 0 10px 0;
    opacity: 0.9;
}

.title-cta {
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.desc-cta {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
    max-width: 620px;
}

.quote-card-action {
    z-index: 1;
}

.btn-cta-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: var(--primary-900);
    padding: 15px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
}

.btn-cta-modern i {
    transition: transform 0.2s ease;
}

.btn-cta-modern:hover {
    background: var(--accent-light);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.15);
}

.btn-cta-modern:hover i {
    transform: translateX(4px);
}

.mission {
    background: #fff;
}

.mission-grid {
    grid-template-columns: repeat(3, 1fr);
}

.mission-grid article {
    padding: 28px;
    border-top: 4px solid var(--accent);
    background: var(--soft);
    box-shadow: 0 10px 24px rgba(15, 40, 70, 0.07);
}

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

.team-grid article {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line);
}

.team-grid img {
    width: 180px;
    aspect-ratio: 1;
    object-fit: cover;
    border: 8px solid #d9dada;
}

.team-grid span {
    color: var(--primary);
    font-weight: 800;
}

.brochure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.brochure-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 24px 16px;
    box-shadow: 0 4px 18px rgba(10, 37, 66, 0.02);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    cursor: pointer;
    min-height: 180px;
    justify-content: space-between;
}

.brochure-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 16px 36px rgba(27, 94, 163, 0.08);
}

.brochure-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(124, 93, 237, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 20px;
    transition: all 0.3s ease;
}

.brochure-card:hover .brochure-icon-wrapper {
    background: var(--primary);
    color: #ffffff;
}

.brochure-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-900);
    line-height: 1.4;
    margin-bottom: 12px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brochure-download-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.brochure-card:hover .brochure-download-text {
    color: var(--accent);
}

.contact-cards {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.contact-card-item {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent);
    border-radius: var(--border-radius);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    color: inherit !important;
}

.contact-card-item:hover {
    transform: translateY(-3px);
    border-left-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(10, 37, 66, 0.05);
}

.contact-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: grid;
    place-items: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card-item:hover .contact-card-icon {
    background: var(--primary);
    color: #ffffff;
}

.contact-card-details {
    flex: 1;
}

.contact-card-details strong {
    display: block;
    color: var(--primary-900);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-card-details span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.contact-form {
    display: grid;
    gap: 14px;
    padding: 28px;
    background: var(--soft);
    border: 1px solid var(--line);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #cfd9e2;
    color: var(--ink);
    background: #fff;
}

.page-hero {
    position: relative;
    padding: 10px 0 12px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(28, 42, 15, 0.96), rgba(68, 97, 36, 0.82), rgba(124, 182, 58, 0.76)),
        url("../images/slide_02.jpg") center / cover no-repeat;
}

.page-hero h1 {
    margin: 2px 0 0;
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.1;
    font-weight: 700;
}

.page-hero p {
    max-width: 720px;
    margin: 1;
    color: #edf6ff;
    font-size: 10px;
    line-height: 1.3;
    opacity: 0.95;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: #dcecff;
    font-size: 11px;
    font-weight: 600;
}

.breadcrumb span::before {
    content: "/";
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.62);
}

.catalog-section {
    padding: 30px 0 45px;
    background: #fff;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 285px 1fr;
    gap: 24px;
    align-items: start;
}

.catalog-sidebar {
    position: sticky;
    top: 170px;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 12px 26px rgba(15, 40, 70, 0.08);
}

.catalog-sidebar h2 {
    margin: 0;
    padding: 16px 18px;
    color: #fff;
    background: linear-gradient(90deg, var(--primary-900), var(--primary));
    font-size: 22px;
}

.catalog-sidebar nav {
    display: grid;
    max-height: calc(100vh - 240px);
    overflow-y: auto;
}

.catalog-sidebar a {
    padding: 10px 18px;
    color: #28455f;
    border-bottom: 1px solid #edf2f6;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.18s ease, background 0.18s ease, padding-left 0.18s ease;
}

.catalog-sidebar a:hover,
.catalog-sidebar a.is-current {
    color: var(--accent);
    background: #f4f7ff;
    padding-left: 24px;
}

.catalog-content {
    min-width: 0;
}

.dosage-tabs {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
}

.dosage-tabs a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    color: #ffffff;
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 700;
    font-size: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    cursor: pointer;
    text-decoration: none;
}

.dosage-tabs a.active,
.dosage-tabs a:hover {
    transform: translateY(-4px);
}

.dosage-tabs a.active {
    border-color: #ffffff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.dosage-tabs__image {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.dosage-tabs a:hover .dosage-tabs__image {
    transform: scale(1.1);
}

.dosage-tabs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.catalog-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 16px;
    margin-bottom: 12px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: var(--border-radius);
}

.catalog-tools p {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
}

.catalog-tools h2 {
    margin: 2px 0 0 0;
    font-size: clamp(20px, 3vw, 26px);
    color: var(--primary-900);
}

.catalog-search {
    display: grid;
    grid-template-columns: minmax(180px, 280px) 80px;
    height: 38px;
    border: 1px solid #cbd9e5;
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.catalog-search input {
    min-width: 0;
    padding: 0 14px;
    border: 0;
    outline: none;
    font-size: 13px;
}

.catalog-search button {
    border: 0;
    color: #fff;
    background: var(--accent);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
}

.catalog-list {
    display: grid;
    gap: 16px;
}

.catalog-group {
    border: 1px solid var(--line);
    background: #fff;
}

.catalog-group h3 {
    margin: 0;
    padding: 16px 20px;
    color: var(--primary-900);
    background: linear-gradient(90deg, #f3f9eb, #f9f6ef);
    border-bottom: 1px solid var(--line);
    font-size: 22px;
}

.catalog-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 16px;
    padding: 12px 0;
}

.catalog-links span {
    display: flex;
    align-items: flex-start;
    padding: 6px 12px;
    color: #4b5563;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    transition: all 0.22s ease;
    cursor: default;
}

.catalog-links span::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #9ca3af;
    margin-right: 10px;
    margin-top: 8px;
    flex-shrink: 0;
    transition: all 0.22s ease;
}

.catalog-links span:hover {
    color: var(--accent);
    padding-left: 18px;
    background: transparent !important;
}

.catalog-links span:hover::before {
    background: var(--accent);
    width: 6px;
    height: 6px;
    margin-right: 8px;
    margin-top: 7px;
}

.footer {
    color: #cbd5e1;
    background: #071727;
    border-top: 5px solid var(--accent);
    padding: 60px 0 0 0;
}

/* Footer Top Bar - 3 Contact Cards */
.footer-top-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 30px;
}

.foot-top-box a {
    display: block;
    margin: 0 !important;
    text-decoration: none !important;
    transform: none !important;
}

.foot-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-700) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 20px 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.foot-top-box a:hover .foot-top {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.2);
}

.foot-top-txt p {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 4px 0;
}

.foot-top-txt h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.foot-top-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.foot-top-box a:hover .foot-top-img {
    background: rgba(255, 255, 255, 0.25);
}

.foot-top-img img {
    width: 24px;
    height: auto;
    display: block;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.foot-top-box a:hover .foot-top-img img {
    transform: scale(1.1);
}

/* Footer Main Layout */
.footer-main-row {
    display: grid;
    grid-template-columns: 1.1fr 1.6fr 1.3fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--accent);
}

.footer h3 .title-highlight {
    color: var(--accent);
}

/* Contact List inside footer */
.contact-info {
    padding: 0;
    margin: 0;
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
}

.contact-info li span {
    flex: 1;
}

.contact-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-subtitle {
    color: var(--accent);
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.contact-link {
    color: inherit;
    display: inline !important;
    margin: 0 !important;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #ffffff !important;
    text-decoration: underline !important;
    transform: none !important;
}

/* Link Columns inside footer */
.footer-links-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.links-group .links-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent);
    margin: 0 0 12px 0;
}

.links-group ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.links-group li {
    margin-bottom: 8px;
}

.links-group a {
    display: inline-block;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.2s ease;
    margin: 0 !important;
    text-decoration: none;
}

.links-group a:hover {
    color: #ffffff !important;
    transform: translateX(4px);
}

/* Certifications Column */
.footer-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.footer-badges a {
    display: block;
    background: #ffffff;
    padding: 8px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    margin: 0 !important;
}

.footer-badges a:hover {
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.footer-badges img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer__bottom {
    padding: 24px;
    text-align: center;
    font-size: 13px;
    color: #64748b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.whatsapp-float {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 999;
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.whatsapp-icon-wrapper {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.whatsapp-icon-wrapper::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.25);
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.whatsapp-label {
    background: #ffffff;
    color: #1e293b;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px 8px 24px;
    border-radius: 0 20px 20px 0;
    margin-left: -15px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: translateX(-15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.whatsapp-float:hover .whatsapp-label {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.whatsapp-float:hover .whatsapp-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: 50%;
}

@media (max-width: 1100px) {
    .masthead__inner {
        grid-template-columns: 310px 1fr auto;
    }

    .brand {
        gap: 10px;
    }

    .brand-logo-icon {
        width: 78px;
        height: 78px;
    }

    .brand-logo-text {
        height: 78px;
    }

    .primary-menu>li>a {
        padding: 0 10px;
        font-size: 12px;
    }
}

@media (max-width: 920px) {
    .masthead__inner {
        grid-template-columns: 1fr auto;
        gap: 14px;
        padding: 12px 0;
    }

    .brand {
        gap: 8px;
    }

    .brand-logo-icon {
        width: 68px;
        height: 68px;
    }

    .brand-logo-text {
        height: 68px;
    }

    .masthead__content {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        order: 3;
        width: 100%;
        margin-top: 10px;
    }

    .contact-list {
        display: none !important;
    }

    .header-search-row {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }

    .header-search {
        width: 100% !important;
    }

    .multi_language_box {
        display: flex !important;
        justify-content: center;
        width: 100%;
    }

    .contact-strip,
    .utility-row {
        justify-content: flex-start;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .menu-bar {
        display: none;
    }

    .menu-bar.is-open {
        display: block;
    }

    .primary-menu {
        flex-direction: column;
        align-items: stretch;
        min-height: 0;
    }

    .primary-menu>li>a {
        justify-content: start;
        height: auto;
        min-height: 46px;
        padding: 12px 16px;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown {
        position: static;
        display: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
    }

    .has-dropdown.is-open .dropdown {
        display: block;
    }

    .has-dropdown.is-open>a::after {
        transform: rotate(180deg);
        border-top-color: #fff;
    }

    .split,
    .split--reverse,
    .product-grid,
    .team-grid,
    .footer__grid,
    .quality-panel,
    .mission-grid,
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .why__grid,
    .stats,
    .brochure-grid,
    .catalog-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .dosage-tabs {
        grid-template-columns: repeat(4, 1fr);
    }

    .catalog-sidebar {
        position: static;
    }

    .catalog-sidebar nav {
        max-height: 310px;
    }

    .catalog-tools {
        align-items: stretch;
        flex-direction: column;
    }

    .quote-card-modern {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 30px;
        gap: 24px;
    }

    .desc-cta {
        margin: 0 auto;
    }

    .btn-cta-modern {
        width: 100%;
        justify-content: center;
    }

    /* Welcome section and slider mobile overrides */
    .welcome-row {
        flex-direction: column;
        gap: 30px;
    }

    .welcome-text,
    .welcome-sidebar {
        flex: 1 1 100%;
        width: 100%;
    }

    .read-more-link.inline-lg {
        display: none;
    }

    .read-more-link.block-sm {
        display: inline-block;
        margin-top: 10px;
        margin-left: 0;
    }

    .slider-track {
        gap: 12px;
    }

    .slider-item {
        flex: 0 0 140px;
    }

    .slider-item a,
    .view-all-item .view-all-link {
        height: 110px;
    }

    /* Services section mobile overrides */
    .services-row {
        flex-direction: column;
        gap: 30px;
    }

    .services-col-left,
    .services-col-right {
        flex: 1 1 100%;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .contact-strip a {
        white-space: normal;
    }

    .contact-strip a+a::before {
        display: none;
    }

    .search-form {
        grid-template-columns: 1fr 76px;
        width: 100%;
    }

    .hero {
        min-height: 540px;
    }

    .hero__content {
        padding: 86px 0 122px;
    }

    .section {
        padding: 62px 0;
    }

    .product-card,
    .team-grid article,
    .why__grid,
    .stats,
    .brochure-grid,
    .catalog-links {
        grid-template-columns: 1fr;
    }

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

    .product-card {
        min-height: 0;
    }

    .product-card img {
        height: 220px;
    }

    .catalog-search {
        grid-template-columns: 1fr 82px;
    }
}

/* Sidebar Layout for Subpages */
.section-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 25px;
    padding: 30px 0;
    align-items: start;
}

.section-sidebar {
    position: sticky;
    top: 130px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.section-sidebar__title {
    margin: 0;
    padding: 14px 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-700));
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-sidebar nav {
    display: flex;
    flex-direction: column;
}

.section-sidebar nav a {
    padding: 11px 20px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid var(--line);
    transition: all 0.2s ease;
}

.section-sidebar nav a:last-child {
    border-bottom: none;
}

.section-sidebar nav a:hover,
.section-sidebar nav a.is-active {
    color: var(--accent);
    background: var(--soft);
    padding-left: 24px;
    border-left: 4px solid var(--accent);
}

.section-content {
    background: #fff;
}

.section-content h2 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 26px;
    color: var(--primary-900);
}

.section-content h3 {
    margin-top: 22px;
    margin-bottom: 8px;
    font-size: 18px;
}

.section-content p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.grid-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.grid-card {
    padding: 18px 20px;
    background: var(--soft);
    border-top: 3px solid var(--accent);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.grid-card h3 {
    margin-top: 0;
    margin-bottom: 6px;
    color: var(--primary);
    font-size: 16px;
}

.styled-bullet-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.styled-bullet-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--ink);
}

.styled-bullet-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
}

@media (max-width: 920px) {
    .section-layout {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }

    .section-sidebar {
        position: static;
    }

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

/* Category Bar below Hero */
.category-bar {
    padding: 30px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
}

.category-bar__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.category-bar__item {
    width: 128px;
    border-radius: var(--border-radius);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    overflow: hidden;
    color: var(--white) !important;
}

.category-bar__item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 6px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--white) !important;
    text-decoration: none;
    height: 100%;
}

.category-bar__item img {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    transition: transform 0.25s ease;
}

.category-bar__item:hover {
    transform: translateY(-4px);
}

.category-bar__item:hover img {
    transform: scale(1.1);
}

/* Category Colors (Vibrant Dynamic Palette Colors) */
.bg-orange {
    background: #fbe433;
    /* Rich Yellow/Gold */
    color: #2b2500 !important;
}

.bg-orange a {
    color: #2b2500 !important;
}

.bg-orange:hover {
    background: linear-gradient(135deg, #fff176, #fbe433);
    box-shadow: 0 8px 20px rgba(251, 228, 51, 0.5);
}

.bg-blue {
    background: #006FDB;
    /* Dark Blue */
}

.bg-blue:hover {
    background: linear-gradient(135deg, #0088FF, #006FDB);
    box-shadow: 0 8px 20px rgba(0, 111, 219, 0.4);
}

.bg-green {
    background: #B3814B;
    /* Eye Drop Color */
}

.bg-green:hover {
    background: linear-gradient(135deg, #cda270, #B3814B);
    box-shadow: 0 8px 20px rgba(179, 129, 75, 0.4);
}

.bg-red {
    background: #B52F28;
    /* Reddish */
}

.bg-red:hover {
    background: linear-gradient(135deg, #D43E36, #B52F28);
    box-shadow: 0 8px 20px rgba(181, 47, 40, 0.4);
}

.bg-purple {
    background: #BD8DE2;
    /* Purple */
}

.bg-purple:hover {
    background: linear-gradient(135deg, #D3ACEC, #BD8DE2);
    box-shadow: 0 8px 20px rgba(189, 141, 226, 0.4);
}

.bg-navy-blue {
    background: #394651;
    /* Syrup Color */
}

.bg-navy-blue:hover {
    background: linear-gradient(135deg, #536473, #394651);
    box-shadow: 0 8px 20px rgba(57, 70, 81, 0.4);
}

.bg-teal {
    background: #00695C;
    /* Dark Teal */
}

.bg-teal:hover {
    background: linear-gradient(135deg, #00897B, #00695C);
    box-shadow: 0 8px 20px rgba(0, 105, 92, 0.4);
}

.bg-yellow {
    background: #8F1C62;
    /* Other Color */
}

.bg-yellow:hover {
    background: linear-gradient(135deg, #b03681, #8F1C62);
    box-shadow: 0 8px 20px rgba(143, 28, 98, 0.4);
}

@media (max-width: 768px) {
    .category-bar__list {
        gap: 10px;
    }

    .category-bar__item {
        width: calc(50% - 10px);
    }
}

/* Feature Bullets & Welcome Section Styling */
.intro {
    background: transparent;
}

.intro__text h2 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-900);
}

.lead-text {
    font-size: 17px;
    color: var(--primary-700);
    font-weight: 500;
    margin-bottom: 20px;
}

.feature-bullets {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.bullet-icon {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.bullet-item div {
    flex: 1;
}

.bullet-item strong {
    display: block;
    color: var(--primary-900);
    font-size: 16px;
    margin-bottom: 4px;
}

.bullet-item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.intro__image-wrapper img {
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Stats & Capabilities Styling */
.stats-section {
    background: var(--soft);
}

.stats-banner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.stats-banner__title h2 {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 0;
    color: var(--primary-900);
}

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

.stat-card {
    padding: 24px 16px;
    text-align: center;
    background: var(--soft);
    border-radius: var(--border-radius);
    border-top: 3px solid var(--primary);
}

.stat-value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Region Tags Styling */
.region-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.region-tag {
    padding: 8px 16px;
    background: var(--soft);
    color: var(--primary);
    border: 1px solid var(--line);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.region-tag:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Custom Checklist Styling */
.custom-check-list {
    padding: 0;
    margin: 24px 0;
    list-style: none;
}

.custom-check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--muted);
}

.custom-check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 18px;
}

.custom-check-list li strong {
    color: var(--primary-900);
    display: inline;
}

/* Section Description Styling */
.section-desc {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
}

@media (max-width: 920px) {
    .stats-banner {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* ==========================================================================
   Home Page Redesign Custom Styling
   ========================================================================== */

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 380px;
    color: #fff;
    overflow: hidden;
    background: #052a4b;
}

.slide-item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-item__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-item__media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(28, 42, 15, 0.88) 0%, rgba(68, 97, 36, 0.46) 60%, rgba(179, 150, 89, 0.1) 100%);
}

.slide-item__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 92px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.slide-item__content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.slide-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide-eyebrow {
    margin: 0 0 10px;
    color: #ffd740;
    /* Bright gold for high readability */
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.slide-title {
    margin: 0 0 12px;
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 500;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.slide-border {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 6px auto 14px auto;
}

.slide-desc {
    margin: 0 auto;
    text-align: center;
    color: #eef8ff;
    font-size: 16px;
    font-weight: 400;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.slide-item h2 {
    max-width: 760px;
    margin: 0 0 14px;
    font-size: clamp(38px, 5.5vw, 64px);
    line-height: 1.05;
    font-weight: 500;
}

.slide-item p:not(.eyebrow) {
    max-width: 650px;
    margin: 0 0 30px;
    color: #eef8ff;
    font-size: 19px;
    line-height: 1.5;
}

/* Company Welcome & Product Gallery Section */
.welcome-section {
    padding: 35px 0;
    background: #ffffff;
}

.welcome-row {
    display: flex;
    gap: 30px;
    margin-bottom: 24px;
}

.welcome-text {
    flex: 1 1 70%;
    min-width: 0;
}

.welcome-sidebar {
    flex: 0 0 28%;
    min-width: 280px;
}

.welcome-title {
    font-size: 28px;
    color: var(--primary-900);
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.5px;
}

.welcome-title .word-highlight {
    color: var(--primary);
}

.welcome-lead {
    font-size: 18px;
    font-weight: 400;
    color: var(--primary);
    line-height: 1.5;
    margin-bottom: 16px;
    font-style: italic;
}

.welcome-body {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

.read-more-link {
    color: var(--accent);
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.2s ease;
    margin-left: 6px;
}

.read-more-link:hover {
    color: var(--primary);
}

.read-more-link.inline-lg {
    display: inline;
}

.read-more-link.block-sm {
    display: none;
}

.get-business-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #ffffff;
    padding: 30px 24px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 200px;
}

.get-business-card .card-text {
    font-size: 18px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.get-business-card .card-text span {
    font-size: 26px;
    font-weight: 800;
    display: block;
}

.get-business-card .card-text small {
    font-size: 16px;
    font-weight: 700;
    display: block;
    margin-top: 4px;
}

.get-business-card .btn-request {
    width: 90%;
    background: #ffffff;
    color: var(--primary-900);
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 13px;
    padding: 12px 20px;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: inline-block;
}

.get-business-card .btn-request:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    background: var(--soft);
    color: var(--primary);
}

/* Welcome Gallery / Slider */
.welcome-slider {
    padding-bottom: 16px;
    border-bottom: 5px solid var(--accent);
    margin-top: 24px;
}

.slider-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 15px 5px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.slider-track::-webkit-scrollbar {
    height: 6px;
}

.slider-track::-webkit-scrollbar-track {
    background: var(--soft);
    border-radius: 3px;
}

.slider-track::-webkit-scrollbar-thumb {
    background: var(--line);
    border-radius: 3px;
}

.slider-track::-webkit-scrollbar-thumb:hover {
    background: var(--muted);
}

.slider-item {
    flex: 0 0 170px;
    scroll-snap-align: start;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.slider-item a {
    display: block;
    height: 135px;
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.slider-item a:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(10, 37, 66, 0.1);
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-item .new-tag {
    position: absolute;
    top: 0;
    left: 0;
    background: var(--accent);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    text-transform: uppercase;
    z-index: 2;
    border-radius: 4px 0 4px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.slider-item-title {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-900);
    margin-top: 10px;
    line-height: 1.35;
    text-align: center;
}

.view-all-item .view-all-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 135px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 4px;
    font-weight: 800;
    font-size: 15px;
    color: var(--primary);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.view-all-item .view-all-link:hover {
    background: var(--white);
    border-color: var(--accent);
    transform: translateY(-3px);
    color: var(--accent);
    box-shadow: 0 8px 18px rgba(10, 37, 66, 0.1);
}

/* Services Page Redesign Grid */
.our-services-section {
    background: #ffffff;
    padding: 35px 0;
}

.services-main-title {
    font-size: 28px;
    color: var(--primary-900);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 24px;
    text-transform: uppercase;
    text-align: center;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.5px;
}

.services-main-title .word-highlight {
    color: var(--primary);
}

.services-row {
    display: flex;
    gap: 24px;
}

.services-col-left {
    flex: 1 1 50%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.services-col-right {
    flex: 1 1 50%;
    min-width: 0;
}

.services-text {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    text-align: justify;
}

.underline-link {
    align-self: flex-start;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
    margin-top: 14px;
    margin-bottom: 24px;
    display: inline-block;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.underline-link:hover {
    color: var(--accent);
    border-bottom-color: var(--primary);
}

.services-quote-strip {
    background: var(--primary-900);
    color: #ffffff;
    padding: 28px 24px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow);
    margin-top: auto;
}

.quote-strip-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.quote-strip-title .quote-highlight {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}

.quote-strip-btn {
    background: var(--accent);
    color: #ffffff;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 4px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.quote-strip-btn:hover {
    transform: translateY(-2px);
    background: var(--accent-700);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    display: block;
}

.p-border {
    display: flex;
    align-items: center;
    padding: 48px 24px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--border-radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.p-border:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.p-border img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.p-border:hover img {
    transform: scale(1.1);
}

.p-border a {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-900);
    margin-left: 20px;
    line-height: 1.4;
    text-align: left;
    transition: color 0.2s ease;
}

.p-border a:hover {
    color: var(--accent);
}

/* Dosage Range Section */
.dosage-range-section {
    background: var(--soft);
}

.category_range_box {
    border-radius: 8px;
    max-width: 100%;
    text-align: left;
    display: flex;
    padding: 0;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    padding: 40px 30px;
    gap: 40px;
}

.category_range_box .list.links_ul {
    list-style: none;
    position: relative;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.category_range_box .list.links_ul p {
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: left;
    padding: 0 0 12px 0;
    position: relative;
    color: var(--primary);
    border-bottom: 2px solid var(--line);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
}

.category_range_box .list.links_ul p::after {
    content: '';
    border-bottom: 2px solid var(--accent);
    width: 60px;
    height: 2px;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.category_range_box .list.links_ul li.first_li {
    width: 50%;
    padding: 0;
    list-style: none;
}

.category_range_box .list.links_ul li.first_li ul.links_ul_inner {
    padding: 0;
    list-style: none;
    margin: 0;
}

.category_range_box .list.links_ul li.first_li ul.links_ul_inner li {
    margin-bottom: 12px;
    padding: 0;
    position: relative;
    padding-left: 20px;
    list-style: none;
    transition: margin-left 0.2s ease;
}

/* Custom Bullet Points */
.category_range_box .list.links_ul li.first_li ul.links_ul_inner li::before {
    content: '';
    background: url('../images/bullets_number.png');
    position: absolute;
    left: 0;
    width: 14px;
    height: 14px;
    background-size: contain;
    background-repeat: no-repeat;
    top: 5px;
}

.category_range_box .list.links_ul li.first_li ul.links_ul_inner li a {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    display: inline-block;
    transition: color 0.2s ease, transform 0.2s ease;
}

.category_range_box .list.links_ul li.first_li ul.links_ul_inner li a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

/* Why Us Section */
.why-us {
    position: relative;
    color: #ffffff !important;
    background-color: var(--primary) !important;
    min-height: 450px;
    display: flex;
    align-items: center;
    padding: 35px 0;
    overflow: visible;
}

.why-us .images {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: url('../images/why-us.png') no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
}

/* Subtle overlay to keep image fully visible */
.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.why-us .absolute {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    z-index: 3;
}

.why-us .row,
.global .row,
.dedicated-to-customers .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
    align-items: flex-start;
}

.why-us .col-lg-6,
.why-us .col-md-6,
.why-us .col-sm-6,
.why-us .col-xs-12,
.global .col-lg-6,
.global .col-md-6,
.global .col-sm-6,
.global .col-xs-12,
.dedicated-to-customers .col-lg-6,
.dedicated-to-customers .col-md-6,
.dedicated-to-customers .col-sm-6,
.dedicated-to-customers .col-xs-12 {
    position: relative;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

@media (min-width: 768px) {

    .why-us .col-lg-6,
    .why-us .col-md-6,
    .why-us .col-sm-6,
    .global .col-lg-6,
    .global .col-md-6,
    .global .col-sm-6,
    .dedicated-to-customers .col-lg-6,
    .dedicated-to-customers .col-md-6,
    .dedicated-to-customers .col-sm-6 {
        width: 50%;
    }
}

.why-us .text {
    padding-top: 10px;
    position: relative;
}

.why-us .text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff !important;
    margin-top: 0;
    margin-bottom: 24px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.5px;
}

.why-us .text h3 span.word1 {
    color: #ffffff !important;
}

.why-us .text h3 span.word2 {
    color: var(--accent-light) !important;
}

.why-us .text ul {
    padding: 10px 0 0 0;
    margin: 0;
    column-count: 2;
    column-gap: 30px;
    list-style: none;
}

.why-us .text ul li {
    list-style: none;
    padding: 6px 0 6px 24px;
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 14px;
    color: #ffffff !important;
    font-weight: 500;
    box-sizing: border-box;
}

.why-us .text ul li::before {
    content: "\f046";
    /* check-square-o */
    font-family: 'FontAwesome';
    color: #ffffff !important;
    position: absolute;
    left: 0;
    top: 6px;
    font-size: 14px;
}

.why-us .content ul {
    padding: 30px 0 0 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 30px;
}

.why-us .content li {
    flex: 1;
    list-style: none;
    padding: 0;
}

.why-us .content .info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.why-us .content .info div {
    min-width: 35px;
}

.why-us .content .info div img {
    width: 35px;
    height: auto;
}

.why-us .content .info span {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9) !important;
}

.why-us .content .info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff !important;
    margin-top: 0;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.why-us .list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.why-us .list li {
    list-style: none;
    width: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: solid 1px rgba(255, 255, 255, 0.15);
    margin: -1px 0 0 -1px;
    transition: background 0.3s ease;
}

.why-us .list li:hover {
    background: rgba(255, 255, 255, 0.15);
}

.why-us .list li>div {
    padding: 48px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.why-us .list li img {
    max-height: 40px;
    max-width: 50px;
    margin-bottom: 12px;
}

.why-us .list li span {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    color: #ffffff !important;
}

@media (max-width: 920px) {
    .why-us .list li>div {
        padding: 30px 10px;
    }

    .why-us .list li span {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .why-us {
        min-height: auto;
        display: flex;
        flex-direction: column;
        padding: 40px 0;
    }

    .why-us::before {
        display: none !important;
    }

    .why-us .images {
        display: none;
    }

    .why-us .absolute {
        position: relative !important;
        top: auto !important;
        transform: none !important;
        padding: 0 !important;
    }

    .why-us .text ul {
        column-count: 1;
    }

    .why-us .content ul {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .why-us .list li {
        width: 100%;
    }
}

/* Dynamic Accordion System */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    border: 1px solid var(--line);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: var(--soft);
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-900);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.accordion-header:hover {
    background: #eef6fb;
    color: var(--primary);
}

.accordion-header::after {
    content: "\f078" !important;
    font-family: 'FontAwesome' !important;
    font-size: 11px;
    transition: transform 0.25s ease;
    color: var(--muted);
}

.accordion-item.active {
    border-color: var(--accent);
}

.accordion-item.active .accordion-header {
    background: var(--accent);
    color: #ffffff;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(180deg);
    color: #ffffff !important;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.accordion-content-inner {
    padding: 20px 24px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    text-align: justify;
}

.accordion-content-inner img {
    margin-right: 18px;
    margin-bottom: 12px;
    float: left;
    border-radius: 4px;
    border: 1px solid var(--line);
    max-width: 140px;
    height: auto;
}

/* Dedicated Pillars Section Styling */
.dedicated-to-customers {
    background: var(--soft);
}

.dedicated-main-img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.dedicated-to-customers .col-lg-6 p {
    color: var(--ink);
    font-size: 15px;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 24px;
}

.accordion-read-more {
    font-weight: 700;
    color: var(--primary);
    text-decoration: underline;
    margin-left: 6px;
    display: inline-block;
    transition: color 0.2s ease;
}

.accordion-read-more:hover {
    color: var(--accent);
}

/* responsive grids */
@media (max-width: 992px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .p-border {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .p-border a {
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
    }

    .services-quote-strip {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .quote-strip-title {
        margin-bottom: 10px;
    }

    .hero-slider {
        height: 320px;
    }

    .category_range_box {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }

    .category_range_box .list.links_ul {
        width: 100%;
        display: block;
    }

    .category_range_box .list.links_ul li.first_li {
        width: 49%;
        display: inline-block;
    }

    .category_range_box .list.links_ul li.first_li ul.links_ul_inner li {
        margin-left: 0 !important;
        /* Reset staircase alignment */
    }
}

@media (max-width: 575px) {
    .category_range_box .list.links_ul li.first_li {
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }

    .category_range_box .list.links_ul li.first_li:last-child {
        margin-bottom: 0;
    }
}

/* Aligned Header Elements matching Wellona style */
.contact-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
    color: var(--primary-900);
    font-size: 14px;
    font-weight: 600;
}

.contact-list li {
    display: inline-flex;
    align-items: center;
}

.contact-list li strong {
    color: var(--primary);
    font-weight: 700;
    margin-right: 4px;
}

.contact-list li strong i {
    color: var(--accent);
    margin-right: 6px;
    font-size: 14px;
}

.header-search-row {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.header-search {
    display: flex;
    align-items: center;
    border: 1px solid #cddbe7;
    background: #fff;
    height: 38px;
    border-radius: 4px;
    overflow: hidden;
    flex: 1;
    min-width: 260px;
}

.header-search input {
    border: 0;
    outline: none;
    padding: 0 12px;
    width: 100%;
    font-size: 13px;
    color: var(--ink);
}

.header-search button {
    border: 0;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 0 16px;
    height: 100%;
    cursor: pointer;
    transition: background 0.2s ease;
}

.header-search button:hover {
    background: var(--accent);
}

/* Compact regions accordion */
#regions-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

#regions-accordion .accordion-item {
    list-style: none;
    margin-top: 10px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

#regions-accordion .accordion-header {
    position: relative;
    font-size: 15px;
    font-weight: 600;
    border: solid 1px var(--line);
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 10px 15px;
    cursor: pointer;
    color: var(--ink);
    user-select: none;
    font-family: "Poppins", sans-serif;
    transition: all 0.2s ease;
}

#regions-accordion .accordion-header::after {
    content: "\f0fe" !important;
    /* fa-plus-square-o icon */
    font-family: 'FontAwesome' !important;
    font-size: 14px;
    color: var(--muted);
    transform: none !important;
}

#regions-accordion .accordion-item.active {
    border-color: transparent;
}

#regions-accordion .accordion-item.active .accordion-header {
    color: #ffffff !important;
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
}

#regions-accordion .accordion-item.active .accordion-header::after {
    content: "\f146" !important;
    /* fa-minus-square-o icon */
    color: #ffffff !important;
}

#regions-accordion .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

#regions-accordion .accordion-content-inner {
    padding: 14px 0 7px 0;
    font-size: 14px;
    color: var(--ink);
    line-height: 1.6;
    text-align: justify;
}

.global .col-lg-6 p {
    color: var(--ink);
    font-size: 15px;
    margin-top: 0;
    margin-bottom: 20px;
}

.global .col-lg-6 p.text-justify {
    line-height: 1.75;
    text-align: justify;
}

.global .col-lg-6 p.font-semibold {
    font-weight: 600;
}

.global .col-lg-6 img {
    max-width: 450px;
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
}

@media (max-width: 768px) {

    .global .row,
    .dedicated-to-customers .row {
        flex-direction: column;
        gap: 20px;
    }

    .global .col-lg-6,
    .dedicated-to-customers .col-lg-6 {
        width: 100%;
    }

    .global .col-lg-6 img,
    .dedicated-to-customers .col-lg-6 img {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 920px) {
    .footer-top-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }

    .footer-main-row {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 480px) {
    .footer-links-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .whatsapp-label {
        display: none !important;
    }
}

/* ==========================================================================
   About Us and Subpages Redesign Styling
   ========================================================================== */

.about-split-row {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.about-split-row--reverse {
    flex-direction: row-reverse;
}

.about-content-left {
    flex: 1 1 60%;
    min-width: 0;
}

.about-content-right {
    flex: 1 1 40%;
    min-width: 0;
}

.about-image-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(10, 37, 66, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(10, 37, 66, 0.15);
}

.about-image-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.about-image-card:hover img {
    transform: scale(1.04);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}

.about-stats-grid--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 24px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}

.about-stat-item {
    text-align: center;
}

.about-stat-number {
    display: block;
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 8px;
    white-space: nowrap;
}

.about-stat-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-900);
    letter-spacing: 0.5px;
}

.grid-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.grid-card:hover {
    transform: translateY(-4px);
    border-top-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(10, 37, 66, 0.08), 0 4px 10px rgba(10, 37, 66, 0.04);
}

.leadership-banner {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 24px rgba(10, 37, 66, 0.06);
}

.leadership-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.leadership-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(28, 42, 15, 0.6) 0%, transparent 80%);
}

.qc-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 25px 0 15px;
}

.qc-step {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.qc-step::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--line);
    z-index: 1;
}

.qc-step:first-child::before {
    left: 50%;
}

.qc-step:last-child::before {
    right: 50%;
}

.qc-step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent);
    color: var(--accent);
    font-weight: 800;
    font-size: 13px;
    display: grid;
    place-items: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.qc-step:hover .qc-step-number {
    background: var(--accent);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.15);
}

.qc-step h4 {
    margin: 12px 0 6px 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-900);
}

.qc-step p {
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.contact-form {
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--border-radius);
    border-top: 4px solid var(--accent);
    box-shadow: 0 10px 28px rgba(10, 37, 66, 0.05);
    transition: border-top-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form:focus-within {
    border-top-color: var(--primary);
    box-shadow: 0 14px 36px rgba(10, 37, 66, 0.08);
}

.contact-form input,
.contact-form textarea {
    padding: 12px 16px;
    border: 1px solid var(--line);
    background: var(--soft);
    border-radius: 6px;
    color: var(--ink);
    font-size: 14px;
    width: 100%;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(124, 93, 237, 0.1);
}

@media (max-width: 768px) {

    .about-split-row,
    .about-split-row--reverse {
        flex-direction: column;
        gap: 30px;
    }

    .about-content-left,
    .about-content-right {
        width: 100%;
    }

    .about-stats-grid,
    .about-stats-grid--4 {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0;
    }

    .qc-timeline {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .qc-step {
        padding-top: 0;
        padding-left: 45px;
        text-align: left;
    }

    .qc-step::before {
        top: 0;
        bottom: 0;
        left: 14px;
        right: auto;
        width: 4px;
        height: 100%;
    }

    .qc-step:first-child::before {
        top: 50%;
        left: 14px;
    }

    .qc-step:last-child::before {
        bottom: 50%;
        left: 14px;
        height: 50%;
    }

    .qc-step-number {
        left: 16px;
        top: 15px;
        transform: translate(-50%, -50%);
    }

    .qc-step:hover .qc-step-number {
        transform: translate(-50%, -50%) scale(1.15);
    }
}

.profile-card {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: var(--soft);
    border-left: 5px solid var(--accent);
    border-radius: var(--border-radius);
    align-items: start;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.profile-card:hover {
    transform: translateY(-4px);
    border-left-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(10, 37, 66, 0.08);
}

.profile-card img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Catalog Sidebar Mobile Accordion Toggle */
@media (max-width: 920px) {
    .catalog-sidebar h2 {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        user-select: none;
    }

    .catalog-sidebar nav {
        display: none !important;
    }

    .catalog-sidebar.is-open nav {
        display: flex !important;
        max-height: 350px;
        overflow-y: auto;
    }
}

/* ==========================================================================
   📦 Product Gallery Section Styles
   ========================================================================== */
.gallery-section {
    padding: 40px 0 60px;
    background: var(--soft);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    background: var(--white);
    color: var(--primary-900);
    border: 1px solid var(--line);
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.gallery-filter-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.gallery-filter-btn.is-active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(68, 97, 36, 0.2);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.gallery-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.gallery-item__image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* Square 1:1 Aspect Ratio */
    overflow: hidden;
    background: #f8fafc;
    cursor: pointer;
}

/* Gallery Card Spinner */
.gallery-item__image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    margin-top: -21px;
    margin-left: -21px;
    border: 3px solid rgba(68, 97, 36, 0.08);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    animation: preloader-spin 1s infinite linear;
    z-index: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Gallery Card Center Logo Icon */
.gallery-item__image-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    background-image: url('../images/logo_icon.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 2;
    animation: preloader-pulse 1.8s infinite ease-in-out;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Hide indicators once loaded */
.gallery-item__image-wrapper.is-loaded::before,
.gallery-item__image-wrapper.is-loaded::after {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.gallery-item__image-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.5s ease;
    z-index: 3;
}

.gallery-item__image-wrapper.is-loaded img {
    opacity: 1;
}

.gallery-item:hover .gallery-item__image-wrapper img {
    transform: scale(1.06);
}

.gallery-item__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(68, 97, 36, 0.9);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.gallery-item__content {
    padding: 16px;
    text-align: center;
    border-top: 1px solid var(--line);
    background: var(--soft);
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item__title {
    font-size: 14px;
    color: var(--primary-900);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    word-break: break-word;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 21, 5, 0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.is-open {
    display: flex;
    opacity: 1;
}

.lightbox-modal__close {
    position: absolute;
    top: 25px;
    right: 30px;
    color: var(--white);
    font-size: 38px;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.lightbox-modal__close:hover {
    transform: scale(1.15);
}

.lightbox-modal__content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
}

.lightbox-modal__image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

.lightbox-modal__caption {
    color: var(--white);
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Premium Page Preloader styles */
.site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.site-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preloader-logo-wrap {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.preloader-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    animation: preloader-pulse 2s infinite ease-in-out;
    z-index: 10;
}

.preloader-spinner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(68, 97, 36, 0.08);
    border-top: 3px solid var(--accent);
    border-radius: 50%;
    animation: preloader-spin 1.2s infinite linear;
}

.preloader-text {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-900);
    letter-spacing: 0.05em;
    margin: 0;
    animation: preloader-fade-text 1.5s infinite ease-in-out;
}

@keyframes preloader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes preloader-pulse {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.85;
        filter: drop-shadow(0 0 4px rgba(124, 182, 58, 0.1));
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
        filter: drop-shadow(0 0 15px rgba(124, 182, 58, 0.35));
    }
}

@keyframes preloader-fade-text {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Gallery Downloads Section */
.gallery-downloads-section {
    padding: 50px 0 30px;
}

.downloads-header {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.downloads-title-wrap h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-900);
    margin: 4px 0 0 0;
}

.downloads-desc {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
    max-width: 600px;
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Download Cards */
.download-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(10, 37, 66, 0.02);
    position: relative;
    overflow: hidden;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(68, 97, 36, 0.08);
    border-color: var(--accent);
}

.download-card.highlight-card {
    border-color: var(--accent);
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-light) 100%);
}

.download-card.highlight-card::before {
    content: 'Featured';
    position: absolute;
    top: 15px;
    right: -25px;
    background: var(--accent);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 25px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.download-card__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(181, 47, 40, 0.08);
    color: #B52F28;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.download-card__content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-900);
    margin: 0 0 8px 0;
}

.download-card__content p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.file-info {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    background: rgba(124, 182, 58, 0.08);
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.download-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.download-card__btn:hover {
    background: var(--accent);
    box-shadow: 0 4px 12px rgba(124, 182, 58, 0.25);
    color: #ffffff !important;
}

.download-card.highlight-card .download-card__btn {
    background: var(--accent);
}

.download-card.highlight-card .download-card__btn:hover {
    background: var(--primary);
}

/* Page-level brochure grid spacing */
.page-brochure-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
    gap: 24px !important;
}

.brochure-card {
    min-height: 220px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Footer non-clickable items with hover color change */
.footer-static-item {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    display: inline-block;
    padding: 3px 0;
    cursor: default;
    transition: color 0.25s ease;
    user-select: none;
}

.footer-static-item:hover {
    color: var(--accent);
}