:root { --primary: #004b63; --secondary: #006b63; --lime: #bdd719; --orange: #f28a18; --text: #263238; --light: #f4f7f8; }
* { box-sizing: border-box; }
body { margin: 0; color: var(--text); font-family: 'Poppins', sans-serif; line-height: 1.6; }
a { color: inherit; text-decoration: none; }
.top-bar { padding: .55rem 0; color: #fff; background: var(--primary); font-size: .9rem; }
.top-contact, .top-socials { display: flex; align-items: center; gap: .65rem; }
.main-header { background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.desktop-header { display: none; }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; }
.site-logo { width: 180px; max-height: 70px; object-fit: contain; }
.menu-button, .close-menu, .submenu-button { border: 0; background: transparent; cursor: pointer; }
.menu-button { color: var(--primary); font-size: 1.7rem; }
.menu-overlay { position: fixed; inset: 0; z-index: 1040; background: rgba(0,0,0,.5); opacity: 0; visibility: hidden; transition: .25s; }
.menu-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu { position: fixed; inset: 0 0 0 auto; z-index: 1050; width: min(390px, 90vw); padding: 1.5rem; background: #fff; transform: translateX(100%); transition: transform .25s; overflow-y: auto; }
.mobile-menu.open { transform: translateX(0); }
.menu-open { overflow: hidden; }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu-logo { width: 155px; }
.close-menu { font-size: 1.5rem; }
.menu-search { display: flex; margin: 1.5rem 0; }
.menu-search input { min-width: 0; flex: 1; padding: .75rem; border: 1px solid #ccd5d8; }
.menu-search button { border: 0; padding: 0 1rem; color: #fff; background: var(--secondary); }
.mobile-navigation { display: grid; }
.mobile-navigation > a, .submenu-button { padding: .85rem 0; border-bottom: 1px solid #e7ecee; text-align: left; font: inherit; }
.submenu-button { display: flex; justify-content: space-between; }
.submenu { display: none; padding-left: 1rem; }
.submenu.open { display: grid; }
.submenu a { padding: .65rem 0; }
@media (min-width: 992px) {
    .mobile-header-inner, .menu-overlay, .mobile-menu { display: none; }
    .desktop-header { min-height: 145px; display: grid; grid-template-columns: 125px minmax(0, 1fr); align-items: center; gap: 2.5rem; padding-top: 1rem; padding-bottom: .8rem; }
    .desktop-logo-link { display: grid; place-items: center; }
    .desktop-logo { width: 115px; max-height: 78px; object-fit: contain; }
    .desktop-header-main { min-width: 0; display: grid; gap: 1rem; }
    .desktop-search { height: 42px; display: flex; overflow: hidden; border: 1.5px solid #1c2528; border-radius: 999px; }
    .desktop-search input { min-width: 0; flex: 1; padding: 0 1rem; border: 0; outline: 0; color: var(--text); font: inherit; font-size: .85rem; }
    .desktop-search input::placeholder { color: #718b19; opacity: 1; }
    .desktop-search button { width: 52px; border: 0; color: #001821; background: transparent; font-size: 1.05rem; cursor: pointer; }
    .desktop-navigation { display: flex; align-items: center; justify-content: space-between; gap: 1rem; white-space: nowrap; font-size: .78rem; font-weight: 600; }
    .desktop-navigation > a, .desktop-products-menu > a { padding: .55rem 0; transition: color .2s; }
    .desktop-navigation > a:hover, .desktop-products-menu > a:hover { color: #72a900; }
    .desktop-navigation > a:first-child { color: #72a900; }
    .desktop-products-menu { position: relative; }
    .desktop-products-menu i { margin-left: .35rem; font-size: .6rem; }
    .desktop-submenu { position: absolute; z-index: 1100; top: calc(100% + .25rem); left: -1rem; width: 230px; display: grid; padding: .65rem 0; border-radius: .4rem; background: #fff; box-shadow: 0 10px 28px rgba(0,0,0,.15); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s; }
    .desktop-submenu a { padding: .55rem 1rem; white-space: normal; }
    .desktop-submenu a:hover { color: #fff; background: var(--secondary); }
    .desktop-products-menu:hover .desktop-submenu, .desktop-products-menu:focus-within .desktop-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
}
.hero-section, .page-banner { position: relative; color: #fff; background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.page-banner { padding: 1.35rem 0; }
.page-banner h1 { margin: 0; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.page-banner p { margin: .3rem 0 0; }
.hero-slider { height: min(520px, 65vh); min-height: 390px; padding: 0; overflow: hidden; background: var(--secondary); }
.hero-slide { position: absolute; inset: 0; display: flex; align-items: center; overflow: hidden; background-position: center; background-size: cover; opacity: 0; transform: translateX(100%); transition: transform .85s ease, opacity .85s ease; pointer-events: none; }
.hero-slide::before { content: ''; position: absolute; inset: -2px; background-image: inherit; background-position: center; background-size: cover; transform: scale(1.12); will-change: transform; }
.hero-slide.is-active::before { animation: heroZoomOut 4s linear forwards; }
.hero-slide.is-active { z-index: 2; opacity: 1; transform: translateX(0); pointer-events: auto; }
.hero-slide.is-leaving { z-index: 1; opacity: 0; transform: translateX(-100%); }
.hero-fallback { background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,45,55,.55); }
.hero-content { width: 100%; }
.hero-content h1 { max-width: 760px; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; }
.hero-content p { max-width: 680px; font-size: 1.1rem; }
.hero-dots { position: absolute; z-index: 4; left: 50%; bottom: 22px; display: flex; gap: 8px; transform: translateX(-50%); }
.hero-dot { width: 11px; height: 11px; padding: 0; border: 1px solid #fff; border-radius: 999px; background: transparent; cursor: pointer; }
.hero-dot.is-active { width: 28px; background: #fff; }
@keyframes heroZoomOut { from { transform: scale(1.12); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero-slide::before { animation: none !important; transform: scale(1); } }
.page-banner-large { padding: 1.55rem 0; }
.hero-content, .page-banner .container { position: relative; z-index: 1; }
.content-section { padding: 4rem 0; }
.about-introduction-section { padding-top: 1.1rem; }
.about-brand-panel { min-height: 258px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem; padding: 2.5rem clamp(2rem, 8vw, 6.75rem); overflow: hidden; border-radius: .65rem; color: #fff; background: linear-gradient(105deg, #075248 0%, #124f3d 48%, #3d681e 100%); }
.about-brand-copy h2 { margin: 0; font-size: clamp(1.35rem, 2.2vw, 1.75rem); font-weight: 700; }
.about-brand-copy p { margin: .2rem 0 0; font-size: clamp(.82rem, 1.2vw, 1rem); }
.about-brand-logo { display: flex; justify-content: center; }
.about-brand-logo img { width: min(100%, 330px); max-height: 170px; display: block; border-radius: .45rem; object-fit: cover; }
.about-overview { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr); align-items: center; gap: clamp(2rem, 5vw, 4rem); margin-top: 3.5rem; }
.about-overview-media img { width: 100%; height: 338px; display: block; border-radius: 1rem; object-fit: cover; }
.about-overview-copy h2 { margin: 0 0 .65rem; color: #00796b; font-size: clamp(1.55rem, 2.5vw, 2rem); font-weight: 700; }
.about-overview-copy h3 { margin: 0 0 2.25rem; color: #b85b00; font-size: clamp(.95rem, 1.5vw, 1.1rem); font-weight: 700; }
.about-overview-copy p { margin: 0 0 1.15rem; font-size: .91rem; line-height: 1.65; }
.workforce-section { margin-top: 4.5rem; padding: 3.5rem clamp(1rem, 5vw, 4rem); border-radius: 1rem; background: radial-gradient(circle at 82% 22%, rgba(143, 29, 34, .88), transparent 43%), radial-gradient(circle at 12% 90%, rgba(116, 104, 0, .65), transparent 38%), #050706; }
.workforce-heading { max-width: 850px; margin: 0 auto 2.75rem; color: #fff; text-align: center; }
.workforce-heading h2 { margin: 0 0 .75rem; color: #fff; font-size: clamp(1.7rem, 3vw, 2.25rem); font-weight: 700; }
.workforce-heading p { margin: 0; color: rgba(255, 255, 255, .82); font-size: .92rem; }
.workforce-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.25rem, 3vw, 2.25rem); }
.workforce-card { min-height: 290px; display: flex; flex-direction: column; align-items: center; padding: 2rem 1.4rem 1.65rem; border: 1px solid rgba(255, 255, 255, .7); border-radius: 1rem; background: linear-gradient(180deg, #fff, #fbfcfc); box-shadow: 0 14px 35px rgba(0, 0, 0, .24); text-align: center; transition: transform .25s, box-shadow .25s; }
.workforce-card:hover { transform: translateY(-5px); box-shadow: 0 20px 42px rgba(0, 0, 0, .3); }
.workforce-avatar { width: 96px; height: 96px; display: grid; place-items: center; margin-bottom: 1rem; border: 4px solid #e6f0e9; border-radius: 50%; color: #fff; background: linear-gradient(145deg, #00796b, #76a900); box-shadow: 0 7px 18px rgba(0, 121, 107, .2); font-size: 1.4rem; font-weight: 700; }
.workforce-photo { object-fit: cover; }
.workforce-photo-button { position: relative; display: block; margin: 0 0 1rem; padding: 0; border: 0; border-radius: 50%; background: transparent; cursor: zoom-in; }
.workforce-photo-button .workforce-avatar { margin: 0; }
.workforce-photo-button:focus-visible { outline: 3px solid #f28a18; outline-offset: 4px; }
.workforce-photo-hint { position: absolute; right: 0; bottom: 2px; width: 28px; height: 28px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; color: #fff; background: #00796b; font-size: .68rem; }
.workforce-card h3 { margin: 0; color: #172124; font-size: 1rem; font-weight: 700; text-transform: capitalize; }
.workforce-card .workforce-role { margin: .25rem 0 .55rem; color: #718084; font-size: .78rem; line-height: 1.35; text-transform: uppercase; }
.workforce-email { max-width: 100%; margin-top: auto; padding: .5rem .8rem; overflow-wrap: anywhere; border-radius: 999px; color: #006b63; background: #eef5f3; font-size: .76rem; font-weight: 600; transition: color .2s, background .2s; }
.workforce-email i { margin-right: .3rem; }
.workforce-email:hover { color: #fff; background: #00796b; }
.workforce-empty { margin: 0; color: rgba(255, 255, 255, .8); text-align: center; }
.workforce-lightbox { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 2rem; background: rgba(0, 0, 0, .93); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; cursor: zoom-out; }
.workforce-lightbox.open { opacity: 1; visibility: visible; }
.workforce-lightbox img { max-width: min(94vw, 1200px); max-height: 90vh; border-radius: .5rem; object-fit: contain; box-shadow: 0 18px 60px rgba(0, 0, 0, .5); transform: scale(.96); transition: transform .25s; }
.workforce-lightbox.open img { transform: scale(1); }
.workforce-lightbox-close { position: fixed; top: 1.25rem; right: 1.25rem; z-index: 1; width: 46px; height: 46px; border: 1px solid rgba(255, 255, 255, .5); border-radius: 50%; color: #fff; background: rgba(255, 255, 255, .12); font-size: 1.4rem; cursor: pointer; }
.workforce-lightbox-close:hover { background: #00796b; }
.image-viewer-open { overflow: hidden; }
.registration-section { margin-top: 4.5rem; padding: 1rem 0 .5rem; }
.registration-heading { margin-bottom: 2.5rem; text-align: center; }
.registration-heading span { display: block; margin-bottom: .3rem; color: #b85b00; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.registration-heading h2 { margin: 0; color: #00796b; font-size: clamp(1.7rem, 3vw, 2.25rem); font-weight: 700; }
.registration-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.registration-card { min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.75rem 1rem; overflow: hidden; border-radius: 1rem; color: #fff; background: linear-gradient(135deg, #075248, #38681d); box-shadow: 0 12px 28px rgba(10, 76, 62, .16); text-align: center; transition: transform .25s, box-shadow .25s; }
.registration-card:nth-child(even) { background: linear-gradient(135deg, #006b63, #527916); }
.registration-card:hover { transform: translateY(-5px); box-shadow: 0 17px 35px rgba(10, 76, 62, .24); }
.registration-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 1rem; border-radius: 50%; color: #d8ed45; background: rgba(255, 255, 255, .12); font-size: 1.15rem; }
.registration-card h3 { margin: 0 0 .45rem; font-size: .95rem; font-weight: 700; text-transform: uppercase; }
.registration-card p { margin: 0; font-size: .9rem; overflow-wrap: anywhere; }
.registration-card small { margin-top: .55rem; color: rgba(255, 255, 255, .83); font-size: .72rem; }
.contact-section { background: #f5f8f7; }
.contact-layout { display: grid; grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.contact-eyebrow { color: #b85b00; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-details > h2, .contact-form-card > h2 { margin: .35rem 0 .65rem; color: #00796b; font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 700; }
.contact-details > p, .contact-form-card > p { margin: 0 0 1.75rem; color: #607174; font-size: .9rem; }
.contact-detail-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.contact-detail-item > i { width: 44px; height: 44px; display: grid; flex: 0 0 auto; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #00796b, #547d16); }
.contact-detail-item strong, .contact-detail-item a, .contact-detail-item span { display: block; }
.contact-detail-item strong { color: #173034; font-size: .82rem; }
.contact-detail-item a, .contact-detail-item span { color: #667679; font-size: .84rem; }
.contact-hours { margin-top: 1.75rem; padding: 1.25rem; border-left: 4px solid #bdd719; border-radius: .5rem; background: #fff; box-shadow: 0 7px 20px rgba(0,0,0,.05); }
.contact-hours h3 { margin: 0 0 .5rem; color: #075248; font-size: 1rem; }
.contact-hours p { margin: .15rem 0; color: #647477; font-size: .8rem; }
.contact-form-card { padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: 1rem; background: #fff; box-shadow: 0 14px 40px rgba(8,72,61,.1); }
.contact-form { display: grid; gap: 1.15rem; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { color: #263b3e; font-size: .8rem; font-weight: 600; }
.contact-form label > span { color: #c54e2a; }
.contact-form input, .contact-form textarea { width: 100%; margin-top: .4rem; padding: .75rem .85rem; border: 1px solid #d6e0df; border-radius: .45rem; outline: none; color: #263238; background: #fbfcfc; font: inherit; font-weight: 400; transition: border-color .2s, box-shadow .2s; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #00796b; box-shadow: 0 0 0 3px rgba(0,121,107,.11); }
.contact-form button { justify-self: start; display: flex; align-items: center; gap: .6rem; padding: .78rem 1.25rem; border: 0; border-radius: .45rem; color: #fff; background: linear-gradient(135deg, #00796b, #527916); font: inherit; font-size: .88rem; font-weight: 600; cursor: pointer; }
.contact-alert { margin-bottom: 1.25rem; padding: .85rem 1rem; border-radius: .45rem; font-size: .82rem; }
.contact-alert ul { margin: 0; padding-left: 1.2rem; }
.contact-alert-success { color: #155f42; background: #e4f6ec; }
.contact-alert-error { color: #842029; background: #f8d7da; }
.home-introduction-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.home-introduction-copy h2 { margin: 0; color: #00796b; font-size: clamp(1.5rem, 2.4vw, 2rem); font-weight: 700; }
.home-introduction-copy h3 { margin: .35rem 0 1.35rem; color: #76a900; font-size: clamp(1rem, 1.7vw, 1.25rem); font-weight: 700; }
.home-introduction-copy p { margin-bottom: 1.15rem; font-size: .95rem; }
.home-introduction-copy .primary-btn { margin-top: .35rem; }
.home-introduction-media img { width: 100%; max-height: 390px; display: block; border-radius: 1rem; object-fit: cover; }
.category-browser { padding-top: 3.5rem; background: #fff; }
.category-browser-heading { margin-bottom: 3.25rem; text-align: center; }
.category-browser-heading h2 { margin: 0 0 1.1rem; color: #00796b; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; }
.category-browser-heading p { margin: 0; font-size: 1rem; }
.category-carousel { overflow: hidden; }
.category-card-grid { --category-visible: 4; --category-gap: 1.25rem; display: flex; gap: var(--category-gap); transition: transform .7s ease; will-change: transform; }
.category-card-grid .category-card { flex: 0 0 calc((100% - 3.75rem) / 4); }
.category-card { min-height: 250px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.35rem; padding: 1.5rem 1rem; border: 2px solid #e2e2e2; border-radius: 1rem; text-align: center; transition: transform .2s, border-color .2s, box-shadow .2s; }
.category-card:hover { transform: translateY(-5px); border-color: #8ebc22; box-shadow: 0 10px 24px rgba(0,0,0,.08); }
.category-card-media { width: 122px; height: 122px; display: grid; place-items: center; overflow: hidden; border-radius: 50%; color: #00796b; background: linear-gradient(145deg, #f6faf8, #eaf4f0); font-size: 3.2rem; }
.category-card-media img { width: 100%; height: 100%; object-fit: contain; }
.category-card strong { font-size: .92rem; line-height: 1.35; }
.category-browser-empty { text-align: center; color: #657477; }
.latest-products-section { padding-top: 2rem; }
.latest-products-heading { display: flex; align-items: center; justify-content: center; margin-bottom: 2.5rem; position: relative; }
.latest-products-heading h2 { margin: 0; color: #00796b; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 700; }
.latest-products-heading a { position: absolute; right: 0; color: #6d9c00; font-weight: 600; }
.latest-products-heading a i { margin-left: .35rem; }
.latest-products-carousel { position: relative; }
.latest-products-viewport { overflow: hidden; padding: .5rem .2rem 1rem; }
.latest-products-track { --latest-visible: 5; --latest-gap: .75rem; display: flex; gap: var(--latest-gap); transition: transform .55s ease; }
.latest-product-card { flex: 0 0 calc((100% - 3rem) / 5); overflow: hidden; border-radius: .65rem; background: #fff; box-shadow: 0 4px 14px rgba(0,0,0,.09); }
.latest-product-card > a { height: 100%; display: flex; flex-direction: column; padding: .75rem; text-align: center; }
.latest-product-media { height: 250px; display: grid; place-items: center; margin-bottom: .65rem; border: 1px solid #d8dcdd; background: #f8faf9; color: #8a999c; font-size: 2.5rem; }
.latest-product-media img { width: 100%; height: 100%; object-fit: contain; }
.latest-product-card strong { color: #00796b; font-size: .84rem; line-height: 1.3; }
.latest-product-card small { margin-top: .2rem; color: #445256; font-size: .72rem; }
.latest-products-arrow { position: absolute; z-index: 3; top: 50%; width: 46px; height: 46px; display: grid; place-items: center; border: 0; border-radius: 50%; color: #fff; background: #008b7d; box-shadow: 0 4px 12px rgba(0,0,0,.16); transform: translateY(-50%); cursor: pointer; }
.latest-products-prev { left: -1rem; }
.latest-products-next { right: -1rem; }
.latest-products-arrow:disabled { opacity: .35; cursor: default; }
.primary-btn { display: inline-block; padding: .75rem 1.2rem; border-radius: .35rem; color: #fff; background: var(--orange); }
.activity-grid, .product-grid, .brand-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.activity-card, .product-card, .brand-item { overflow: hidden; border-radius: .75rem; background: #fff; box-shadow: 0 5px 20px rgba(0,0,0,.09); }
.activity-image-placeholder, .product-image-placeholder { min-height: 220px; display: grid; place-items: center; color: #647378; background: var(--light); }
.activity-image, .product-image { width: 100%; height: 220px; object-fit: contain; background: var(--light); }
.product-grid { grid-template-columns: repeat(auto-fill, minmax(185px, 185px)); gap: 2.25rem; justify-content: start; }
.product-card { padding: 0; border: 2px solid #ece8e6; border-radius: .75rem; transition: transform .2s, box-shadow .2s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 9px 24px rgba(0,0,0,.14); }
.product-card-link { display: block; padding: 1rem; height: 100%; }
.product-media { height: 150px; display: grid; place-items: center; background: #f8faf9; }
.product-media .product-image { height: 150px; }
.product-media .product-image-placeholder { width: 100%; min-height: 150px; font-size: 2rem; }
.product-card-content { padding-top: .8rem; text-align: center; color: #00796b; }
.product-card-content h3 { margin: 0; font-size: .84rem; font-weight: 700; text-transform: uppercase; }
.product-card-content p { margin: .15rem 0 0; font-size: .76rem; font-weight: 600; line-height: 1.3; }
.products-empty { min-height: 290px; display: grid; place-content: center; justify-items: center; text-align: center; color: #657477; }
.products-empty i { margin-bottom: 1rem; color: var(--secondary); font-size: 3rem; }
.products-empty h2 { margin-bottom: .25rem; color: var(--primary); }
.products-empty p { margin: 0; }
.product-details-layout { display: grid; grid-template-columns: minmax(260px, 420px) 1fr; gap: 2rem; align-items: start; }
.product-details-layout .product-image { height: auto; max-height: 480px; }
.job-card { max-width: 800px; margin: 0 auto 1.5rem; text-align: left; }
.activity-content, .product-card { padding: 1.5rem; }
.activity-tag { color: var(--secondary); font-weight: 600; }
.activity-news-card { padding: 0; border: 1px solid #e2e9ea; border-radius: .8rem; box-shadow: none; transition: transform .25s, box-shadow .25s; }
.activity-news-card:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(0,55,66,.13); }
.activity-card-link { height: 100%; display: flex; flex-direction: column; }
.activity-news-card .activity-image { height: 220px; object-fit: cover; }
.activity-news-card .activity-image-placeholder { height: 220px; color: #fff; background: linear-gradient(135deg, #075248, #527916); font-size: 2.2rem; }
.activity-news-card .activity-content { flex: 1; display: flex; flex-direction: column; padding: 1.35rem; }
.activity-news-card .activity-tag { align-self: flex-start; padding: .25rem .55rem; border-radius: 999px; color: #4f8700; background: #eff6e7; font-size: .7rem; }
.activity-news-card h2 { margin: .85rem 0 .55rem; color: #0c2948; font-size: 1.15rem; font-weight: 700; text-transform: uppercase; }
.activity-news-card p { margin: 0 0 1rem; color: #6a788c; font-size: .88rem; }
.activity-read-more { margin-top: auto; color: #00796b; font-size: .78rem; font-weight: 700; }
.activity-read-more i { margin-left: .3rem; transition: transform .2s; }
.activity-news-card:hover .activity-read-more i { transform: translateX(4px); }
.activity-details-layout { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: 2rem; align-items: start; }
.activity-story-image { width: 100%; max-height: 600px; display: block; border-radius: 1rem; object-fit: cover; }
.activity-story-meta { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0 .7rem; color: #78878a; font-size: .78rem; }
.activity-story-meta span { padding: .3rem .65rem; border-radius: 999px; color: #5a8d00; background: #eff6e7; font-weight: 700; }
.activity-story h2 { margin: 0 0 1rem; color: #559b00; font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; }
.activity-story-summary { color: #38515b; font-size: 1rem; font-weight: 600; }
.activity-story-body { color: #526469; font-size: .92rem; line-height: 1.9; }
.other-activities { position: sticky; top: 1.5rem; padding: 1rem; border: 1px solid #e2e9ea; border-radius: 1rem; background: #fff; }
.other-activities > h2 { margin: 0 0 1rem; color: #075248; font-size: 1.25rem; }
.other-activity-card { display: block; margin-bottom: 1rem; padding: .65rem; border: 1px solid #e4e9e9; border-radius: .75rem; transition: border-color .2s, transform .2s; }
.other-activity-card:last-child { margin-bottom: 0; }
.other-activity-card:hover { transform: translateY(-2px); border-color: #76a900; }
.other-activity-card img { width: 100%; height: 125px; display: block; margin-bottom: .65rem; border-radius: .6rem; object-fit: cover; }
.other-activity-card span { color: #659e00; font-size: .68rem; font-weight: 700; }
.other-activity-card h3 { margin: .3rem 0 0; color: #0c2948; font-size: .82rem; font-weight: 700; text-transform: uppercase; }
.alphabet-filter, .dosage-buttons { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.alphabet-filter a, .dosage-buttons a { padding: .5rem .8rem; border-radius: .3rem; background: var(--light); }
.alphabet-filter a.active { color: #fff; background: var(--secondary); }
.site-footer { padding-top: 1.6rem; color: #eaf1f2; background: #073e4c; font-size: .84rem; line-height: 1.35; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 2.5rem; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: .3rem; }
.footer-column h3 { margin: 0 0 .55rem; font-size: 1.2rem; }
.footer-column h4 { margin: .35rem 0 0; font-size: .92rem; }
.footer-column p { margin: 0; }
.footer-column > a { padding: .08rem 0; }
.footer-logo { width: 125px; max-height: 58px; margin-bottom: .35rem; object-fit: contain; }
.footer-socials { display: flex; gap: .85rem; margin-top: .45rem; font-size: 1.05rem; }
.footer-bottom { margin-top: 1.15rem; padding: .55rem 0; background: rgba(0,0,0,.18); }
.footer-bottom p { margin: 0; }
.floating-whatsapp { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 1000; width: 55px; height: 55px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: #25d366; font-size: 1.8rem; box-shadow: 0 5px 15px rgba(0,0,0,.2); }
@media (max-width: 767px) { .top-contact span { display: none; } .footer-grid, .product-details-layout, .home-introduction-grid, .contact-layout, .contact-form-row { grid-template-columns: 1fr; } .home-introduction-media { order: -1; } .page-banner, .page-banner-large { padding: 1.1rem 0; } .about-brand-panel { min-height: 0; grid-template-columns: 1fr; gap: 1.75rem; padding: 2.5rem 1.5rem; text-align: center; } .about-brand-logo img { width: min(100%, 280px); } .about-overview { grid-template-columns: 1fr; margin-top: 2.5rem; } .about-overview-media img { height: min(338px, 72vw); } .about-overview-copy h3 { margin-bottom: 1.4rem; } .workforce-section { margin-top: 3rem; padding: 2.75rem 1rem; } .workforce-grid, .registration-grid { grid-template-columns: 1fr; } .registration-section { margin-top: 3rem; } }
@media (min-width: 768px) and (max-width: 991px) { .workforce-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .workforce-card:last-child { grid-column: 1 / -1; width: calc(50% - .7rem); justify-self: center; } }
@media (min-width: 768px) and (max-width: 991px) { .registration-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 767px) { .activity-details-layout { grid-template-columns: 1fr; } .other-activities { position: static; } }
@media (max-width: 991px) { .category-card-grid { --category-visible: 2; } .category-card-grid .category-card { flex-basis: calc((100% - 1.25rem) / 2); } }
@media (max-width: 520px) { .category-card-grid { --category-visible: 1; } .category-card-grid .category-card { flex-basis: 100%; } .category-browser-heading { margin-bottom: 2rem; } }
@media (max-width: 991px) { .latest-products-track { --latest-visible: 3; } .latest-product-card { flex-basis: calc((100% - 1.5rem) / 3); } }
@media (max-width: 600px) { .latest-products-track { --latest-visible: 1; } .latest-product-card { flex-basis: 100%; } .latest-products-heading { justify-content: space-between; } .latest-products-heading a { position: static; } .latest-product-media { height: 240px; } .latest-products-prev { left: .4rem; } .latest-products-next { right: .4rem; } }
