/* Import AOS CSS */
@import url('https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.css');

/* Root Variables */
:root {
    --primary-green: #2d5a3d;
    --primary-green-dark: #23442f;
    --light-green: #4a7c59;
    --success-green: #28a745;
    --bg-cream: #f8f6f3;
    --text-dark: #2c3e50;
    --text-gray: #6c757d;
    --border-light: #e9ecef;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-strong: 0 18px 35px rgba(45, 90, 61, 0.25);
    --gradient-green: linear-gradient(135deg, #2d5a3d 0%, #4a7c59 100%);
    --gradient-blue: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-orange: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --footer-bg: #1a2332;
    --footer-light: #2c3e50;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-green);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) var(--bg-cream);
}

@media (prefers-reduced-motion: reduce) {
    ::-webkit-scrollbar {
        display: none;
    }
    * {
        scrollbar-width: none;
    }
}
a {
	color: var(--text-dark);
	text-decoration: none;
}
/* -------------------------------------------- */
/* Header redesign                             */
/* -------------------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(15, 38, 63, 0.08);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
    backdrop-filter: blur(0px);
}

.site-header.is-sticky {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 40px rgba(15, 38, 63, 0.18);
    backdrop-filter: blur(8px);
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.header-top {
    background: var(--primary-green);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

.header-top__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
}

.header-top__left,
.header-top__right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.header-top__contact {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.header-top__contact i {
    color: #ffffff;
}

.header-top__contact:hover {
    color: #ffffff;
}

.header-top__links {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.header-top__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.header-top__link:hover {
    color: #ffffff;
}

.header-top__notice {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.header-top__notice i {
    font-size: 0.9rem;
}

.header-main {
    padding: 1.25rem 0;
}

.header-main__inner {
    display: grid;
    grid-template-columns: auto minmax(320px, 1fr) auto;
    align-items: center;
    gap: 2rem;
}

.header-main__brand {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-burger {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(45, 90, 61, 0.2);
    background: #f4f7f3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.header-burger span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary-green);
    display: block;
}

.header-burger:hover,
.header-burger:focus {
    background: rgba(45, 90, 61, 0.12);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(15, 38, 63, 0.16);
}

.header-logo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.header-logo__img {
    height: 58px;
    width: auto;
    display: block;
}

.header-logo__text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.header-logo__name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-green);
}

.header-logo__tagline {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.header-main__search {
    position: relative;
}

.header-search {
    width: 100%;
}

.header-search__field {
    position: relative;
    display: flex;
    align-items: center;
    background: #f4f6f8;
    border-radius: 999px;
    padding: 0.45rem 0.45rem 0.45rem 1.1rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.header-search__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1rem;
    margin-right: 0.65rem;
}

.header-search__input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.header-search__input::placeholder {
    color: rgba(15, 23, 42, 0.45);
}

.header-search__submit {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--primary-green);
    border: none;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.6rem 1.35rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.header-search__submit i {
    font-size: 0.85rem;
}

.header-search__submit:hover {
    background: #24462f;
    transform: translateY(-1px);
}

.header-search__field:focus-within {
    border-color: rgba(45, 90, 61, 0.35);
    box-shadow: 0 0 0 4px rgba(45, 90, 61, 0.1);
}

.header-main__tools {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-tools {
    display: inline-flex;
    align-items: center;
    gap: 1.1rem;
}

.header-tool {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: transform 0.2s ease, color 0.2s ease;
    position: relative;
}

.header-tool__icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(45, 90, 61, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.1rem;
    position: relative;
}

.header-tool__badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #dc3545;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.1rem 0.45rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.header-tool__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.header-tool__label {
    font-weight: 600;
    font-size: 0.95rem;
}

.header-tool__hint {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.header-tool:hover {
    color: var(--primary-green);
    transform: translateY(-1px);
}

.header-support-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--gradient-green);
    color: #ffffff;
    border-radius: 16px;
    padding: 0.9rem 1.4rem;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 18px 32px rgba(45, 90, 61, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-support-btn i {
    font-size: 1rem;
}

.header-support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 40px rgba(45, 90, 61, 0.3);
}

.header-nav {
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    background: #f2f6f4;
}

.header-nav__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.75rem 0;
    flex-wrap: wrap;
}

.header-menu {
    flex: 1 1 auto;
    min-width: 0;
}

.header-nav__guard {
    margin-left: auto;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}


.header-guard-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    background: rgba(45,90,61, 100);
    color: #ffffff;
    text-decoration: none;
    position: relative;
    font-weight: 700;
    box-shadow: 0 0 0 3px rgba(45,90,61, 0.18);
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: 1px solid #24462f;
    cursor: pointer;
    line-height: 1.2;
}

.header-guard-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(45,90,61, 0.34);
    color: #ffffff;
}

.header-guard-btn:focus-visible {
    outline: 3px solid rgba(45,90,61, 0.32);
    outline-offset: 3px;
    color: #ffffff;
}

.header-guard-btn:disabled,
.header-guard-btn--inactive {
    background: rgba(45,90,61, 0.12);
    box-shadow: 0 0 0 3px rgba(45,90,61, 0.18);
    cursor: not-allowed;
    color: rgba(255, 255, 255, 0.85);
}

.header-guard-btn:disabled .header-guard-btn__pulse,
.header-guard-btn--inactive .header-guard-btn__pulse {
    animation-play-state: paused;
    opacity: 0.55;
    box-shadow: 0 0 0 0 rgba(45,90,61, 0.35);
}

.header-guard-btn--live {
    box-shadow: 0 0 0 3px rgba(45,90,61, 0.18);
}

.header-guard-btn--live .header-guard-btn__pulse {
    animation-duration: 1.6s;
}

.header-guard-btn__pulse {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(45,90,61, 0.45);
    animation: headerGuardPulse 2s infinite;
}

.header-guard-btn__pulse::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ffffff;
}

.header-guard-btn__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    text-align: left;
}

.header-guard-btn__label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.92;
}

.header-guard-btn__label i {
    font-size: 0.85rem;
}

.header-guard-btn__location {
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 0.2rem;
}

.header-guard-btn__status {
    margin-top: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.25rem 0rem;
    border-radius: 999px;
    color: #ffffff;
}

.header-guard-btn__status i {
    font-size: 0.65rem;
}

.header-guard-btn__status.is-live {
    color: #ffffff;
}

.header-guard-btn--inactive .header-guard-btn__status,
.header-guard-btn:disabled .header-guard-btn__status {
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.82);
}

@keyframes headerGuardPulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255, 0.45); }
    70% { box-shadow: 0 0 0 12px rgba(255,255,255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255, 0); }
}

.guard-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 1400;
}

.guard-modal[aria-hidden="false"] {
    pointer-events: auto;
    opacity: 1;
}

.guard-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.guard-modal[aria-hidden="false"] .guard-modal__backdrop {
    opacity: 1;
}

.guard-modal__dialog {
    position: relative;
    width: min(460px, calc(100% - 2.5rem));
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.28);
    padding: 1.8rem;
    transform: translateY(24px);
    transition: transform 0.25s ease;
    outline: none;
}

.guard-modal[aria-hidden="false"] .guard-modal__dialog {
    transform: translateY(0);
}

.guard-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.guard-modal__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.guard-modal__close {
    border: none;
    background: none;
    color: #6b7280;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.35rem;
    border-radius: 999px;
    transition: color 0.2s ease, background 0.2s ease;
    box-shadow: none;
}

.guard-modal__close:hover,
.guard-modal__close:focus-visible {
    color: #2d5a3d;
    background: rgba(45, 90, 61, 0.12); 
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.18);
}

.guard-modal__body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guard-modal__status {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.guard-modal__status i {
    font-size: 0.85rem;
}

.guard-modal__status.is-live {
    background: rgba(34, 197, 94, 0.18);
    color: #15803d;
}

.guard-modal__details {
    display: flex;
    flex-direction: column;
}

.guard-modal__location,
.guard-modal__address,
.guard-modal__schedule,
.guard-modal__email,
.guard-modal__map,
.guard-modal__whatsapp {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin: 0 0 0.7rem;
    color: #1f2937;
    font-size: 0.95rem;
}

.guard-modal__location i,
.guard-modal__address i,
.guard-modal__schedule i,
.guard-modal__email i,
.guard-modal__map i,
.guard-modal__whatsapp i {
    font-size: 1rem;
    margin-top: 0.15rem;
}

.guard-modal__location i,
.guard-modal__address i,
.guard-modal__schedule i {
    color: #2d5a3d;
}

.guard-modal__email i,
.guard-modal__map i {
    color: #2d5a3d;
}

.guard-modal__whatsapp i {
    color: #2d5a3d;
}

.guard-modal__description {
    margin: 0.4rem 0 0.8rem;
    color: #4b5563;
    font-size: 0.9rem;
}

.guard-modal__contacts {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 0.5rem 0 0.8rem;
}

.guard-modal__contact {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.85rem;
    border-radius: 14px;
    background: rgba(45 90 61, 0.08);
    color: #b91c1c;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.guard-modal__contact:hover {
    background: rgba(239, 68, 68, 0.16);
    color: #991b1b;
    transform: translateY(-1px);
}

.guard-modal__contact:focus-visible {
    background: rgba(239, 68, 68, 0.16);
    color: #991b1b;
    transform: translateY(-1px);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.22);
    outline: none;
}

.guard-modal__contact i {
    font-size: 0.9rem;
}

.guard-modal__contact strong {
    margin-right: 0.35rem;
    font-weight: 700;
}

.guard-modal__details a {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.guard-modal__details a:hover {
    color: var(--primary-green-dark);
}

.guard-modal__details a:focus-visible {
    color: var(--primary-green-dark);
    text-decoration: underline;
    outline: none;
}

.guard-modal__footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
}

.guard-modal__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    background: var(--primary-green);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guard-modal__cta:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.guard-modal__cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.25), 0 20px 44px rgba(220, 38, 38, 0.34);
    color: #ffffff;
    outline: none;
}

.guard-modal__cta i {
    font-size: 0.85rem;
}

.guard-modal__empty {
    margin: 0;
    color: #4b5563;
    font-size: 0.95rem;
}

.header-nav__catalog {
    position: relative;
}

.header-nav__catalog-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(45, 90, 61, 0.15);
    background: #ffffff;
    color: var(--text-dark);
    border-radius: 14px;
    padding: 0.6rem 1.1rem;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.header-nav__catalog-trigger:hover,
.header-nav__catalog.is-open .header-nav__catalog-trigger {
    background: var(--primary-green);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(45, 90, 61, 0.22);
}

.header-nav__catalog-icon i {
    font-size: 1.05rem;
}

.header-catalog__panel {
    position: absolute;
    left: 0;
    top: calc(100% + 0.75rem);
    min-width: 320px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 38, 63, 0.15);
    padding: 1.25rem;
    border: 1px solid rgba(15, 23, 42, 0.05);
    display: none;
    z-index: 30;
}

.header-catalog__panel::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 28px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-left: 1px solid rgba(15, 23, 42, 0.05);
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    transform: rotate(45deg);
}

.header-nav__catalog.is-open .header-catalog__panel {
    display: block;
}

.catalog-group {
    margin-bottom: 1.25rem;
}

.catalog-group__title {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.catalog-group__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.catalog-group__list--standalone {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.catalog-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.75rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    background: rgba(248, 250, 252, 0.7);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.catalog-link i {
    color: var(--primary-green);
    width: 20px;
    text-align: center;
}

.catalog-link:hover {
    background: rgba(45, 90, 61, 0.1);
    color: var(--primary-green);
    transform: translateX(4px);
}

.catalog-divider {
    border: none;
    border-top: 1px dashed rgba(15, 23, 42, 0.1);
    margin: 1.25rem 0;
}

.header-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.header-menu__item {
    position: relative;
}

.header-menu__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    padding: 0.55rem 0;
    transition: color 0.2s ease;
}

.header-menu__link i {
    font-size: 0.85rem;
    color: var(--primary-green);
}

.header-menu__link:hover {
    color: var(--primary-green);
}

.header-menu__item--has-children > .header-menu__link i:last-child {
    font-size: 0.7rem;
    color: inherit;
    transition: transform 0.2s ease;
}

.header-menu__item--has-children:hover > .header-menu__link i:last-child {
    transform: rotate(180deg);
}

.header-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #ffffff;
    border-radius: 16px;
    padding: 0.9rem;
    box-shadow: 0 24px 50px rgba(15, 38, 63, 0.14);
    border: 1px solid rgba(15, 23, 42, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 25;
}

.header-menu__item--has-children:hover .header-submenu,
.header-menu__item--has-children:focus-within .header-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-submenu__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.header-submenu__link {
    display: block;
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    transition: background 0.2s ease, color 0.2s ease;
}

.header-submenu__link:hover {
    background: rgba(45, 90, 61, 0.08);
    color: var(--primary-green);
}

.header-submenu__heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--primary-green);
    padding: 0.35rem 0.65rem;
}

.header-submenu__divider {
    height: 1px;
    background: rgba(15, 23, 42, 0.08);
    margin: 0.5rem 0;
}

.mobile-nav {
    position: fixed;
    inset: 0;
    display: flex;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 1200;
}

.mobile-nav[aria-hidden="false"] {
    pointer-events: auto;
    opacity: 1;
}

.mobile-nav__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.mobile-nav[aria-hidden="false"] .mobile-nav__backdrop {
    opacity: 1;
}

.mobile-nav__panel {
    position: relative;
    margin-left: auto;
    width: min(420px, 100%);
    max-width: 100%;
    height: 100%;
    background: #ffffff;
    box-shadow: -12px 0 36px rgba(15, 23, 42, 0.28);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-nav[aria-hidden="false"] .mobile-nav__panel {
    transform: translateX(0);
}

.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.mobile-nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    color: var(--text-dark);
}

.mobile-nav__brand img {
    height: 40px;
    width: auto;
    display: block;
}

.mobile-nav__close {
    border: none;
    background: rgba(45, 90, 61, 0.12);
    color: var(--primary-green);
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-nav__close:hover {
    background: var(--primary-green);
    color: #ffffff;
    transform: translateY(-1px);
}

.mobile-nav__body {
    flex: 1;
    overflow-y: auto;
    padding: 1.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav__section {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.mobile-nav__section--guard {
    gap: 0.65rem;
}

.mobile-guard-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    background: linear-gradient(135deg, #2d5a3d 0%, #3f8560 100%);
    color: #ffffff;
    border-radius: 18px;
    padding: 1.05rem 1.1rem;
    text-decoration: none;
    box-shadow: 0 18px 36px rgba(45, 90, 61, 0.28);
}

.mobile-guard-card--inactive {
    background: linear-gradient(135deg, #59626f 0%, #3c4652 100%);
    box-shadow: 0 16px 30px rgba(26, 32, 44, 0.22);
}

.mobile-guard-card__title {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    opacity: 0.9;
}

.mobile-guard-card__title i {
    font-size: 0.95rem;
    color: #f5fff7;
}

.mobile-guard-card__location {
    font-size: 1.05rem;
    font-weight: 700;
}

.mobile-guard-card__time {
    font-size: 0.86rem;
    opacity: 0.85;
}

.mobile-guard-card__status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.75);
}

.mobile-guard-card__status i {
    font-size: 0.6rem;
}

.mobile-guard-card__status.is-live {
    color: #c8f8dc;
}

.mobile-guard-card__status.is-live i {
    color: #51ff9c;
}

.mobile-guard-card__contact {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    opacity: 0.9;
}

.mobile-guard-card__contact i {
    font-size: 0.75rem;
}

.mobile-nav__title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: var(--text-gray);
}

.mobile-nav__quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
}

.mobile-nav__quick-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 0.75rem;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.mobile-nav__quick-link i {
    color: var(--primary-green);
}

.mobile-nav__quick-link:hover {
    background: rgba(45, 90, 61, 0.08);
    border-color: rgba(45, 90, 61, 0.18);
}

.mobile-nav__list,
.mobile-nav__sublist {
    list-style: none;
    display: flex;
    gap: 1.75rem;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.mobile-nav__link,
.mobile-nav__sublink {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.4rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.2s ease;
}

.mobile-nav__link i,
.mobile-nav__sublink i {
    color: var(--primary-green);
}

.mobile-nav__link:hover,
.mobile-nav__sublink:hover {
    color: var(--primary-green);
}

.mobile-nav__heading {
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-gray);
    padding-top: 0.3rem;
}

.mobile-nav__heading--nested {
    padding-left: 0.75rem;
}

.mobile-nav__divider {
    height: 1px;
    background: rgba(15, 23, 42, 0.08);
}

.mobile-nav__notice {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
}

.mobile-nav__support {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.9rem;
}

.mobile-nav__support-cta,
.mobile-nav__support-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-green);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

.mobile-nav__support-cta:hover,
.mobile-nav__support-link:hover {
    color: var(--light-green);
}

.mobile-nav__footer {
    padding: 1.2rem 1.4rem 1.5rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    background: rgba(248, 246, 243, 0.65);
}

body.mobile-nav-open,
body.guard-modal-open {
    overflow: hidden;
}

@media (max-width: 1199.98px) {
    .header-main__inner {
        gap: 1.75rem;
        grid-template-columns: auto minmax(260px, 1fr);
    }

    .header-main__tools {
        gap: 1.1rem;
    }

    .header-nav__guard {
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
    }

    .header-nav__guard .header-guard-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .header-guard-btn__text {
        align-items: center;
    }
}

@media (max-width: 991.98px) {
    .header-top__inner {
        justify-content: center;
        text-align: center;
    }

    .header-top__left,
    .header-top__right {
        justify-content: center;
    }

    .header-main {
        padding: 1rem 0;
    }

    .header-main__inner {
        grid-template-columns: 1fr;
        gap: 1.35rem;
    }

    .header-main__brand {
        justify-content: end;
    }

    .header-main__tools {
        flex-direction: column;
        align-items: stretch;
        gap: 0.9rem;
    }

    .header-tools {
        justify-content: space-between;
    }

    .header-support-btn {
        justify-content: center;
    }

    .header-nav {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .header-top__links {
        justify-content: center;
        gap: 0.75rem;
    }

    .header-main__brand {
        gap: 0.9rem;
    }

    .header-tools {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
    }

    .header-tool {
        justify-content: flex-start;
    }

    .header-support-btn {
        width: 100%;
    }

    .mobile-nav__panel {
        width: 100%;
    }

    .guard-modal__dialog {
        width: calc(100% - 1.5rem);
        padding: 1.35rem;
    }

    .guard-modal__footer {
        justify-content: center;
    }

    .guard-modal__cta {
        width: 100%;
        justify-content: center;
    }
}

/* Search suggestions */

.search-suggestions {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 28px 60px rgba(15, 23, 42, 0.18);
    max-height: 360px;
    overflow-y: auto;
    z-index: 1070;
    padding: 1rem;
}

.suggestion-group + .suggestion-group {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.suggestion-group-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-gray);
    margin-bottom: 0.35rem;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.55rem 0.7rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: background 0.2s ease, transform 0.2s ease;
}

.suggestion-item:hover {
    background: rgba(45, 90, 61, 0.08);
    transform: translateX(4px);
}

.suggestion-thumb {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 10px;
    background: #f8f9fa;
}

.suggestion-content {
    flex: 1;
    min-width: 0;
}

.suggestion-title {
    font-weight: 600;
    font-size: 14px;
}

.suggestion-price {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 13px;
}

.search-suggestions mark,
.search-card mark {
    background: rgba(45, 90, 61, 0.18);
    color: inherit;
    padding: 0 2px;
    border-radius: 4px;
}

/* -------------------------------------------- */
/* Search page                                  */
/* -------------------------------------------- */

.search-page .search-header {
    max-width: 760px;
}

.search-page .search-form-secondary .form-control {
    border-color: var(--border-light);
    box-shadow: none;
}

.search-page .summary-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.search-page .summary-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gray);
}

.search-page .summary-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
}

.search-section .section-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-green);
}

.search-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.search-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.search-card-thumbnail img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.search-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.search-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
}

.search-card-title:hover {
    color: var(--primary-green);
}

.search-card-excerpt {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 0;
}

.search-card-meta {
    font-size: 13px;
    color: var(--text-gray);
}

.search-card .price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.search-card .current-price {
    font-weight: 700;
    color: var(--primary-green);
}

.search-card .original-price {
    text-decoration: line-through;
    font-size: 13px;
    color: var(--text-gray);
    margin-left: 0.35rem;
}

.search-card.product-result .search-card-meta {
    justify-content: space-between;
    display: flex;
    align-items: center;
}

/* -------------------------------------------- */
/* Favorites page                               */
/* -------------------------------------------- */

.favorites-page .wishlist-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.favorites-page .wishlist-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.favorites-page .wishlist-card-image {
    position: relative;
    padding: 1.5rem;
    background: #f5f7f5;
}

.favorites-page .wishlist-card-image img {
    max-height: 220px;
    width: auto;
    margin: 0 auto;
    display: block;
}

.wishlist-fab {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    box-shadow: var(--shadow-light);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.wishlist-fab:hover {
    background: var(--primary-green);
    color: #ffffff;
    transform: scale(1.05);
}

.wishlist-fab.is-active {
    background: var(--primary-green);
    color: #ffffff;
}

.favorites-page .wishlist-card-body {
    padding: 1.5rem;
}

.favorites-page .wishlist-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.favorites-page .wishlist-card-title:hover {
    color: var(--primary-green);
}

.favorites-page .wishlist-card-excerpt {
    font-size: 14px;
    min-height: 44px;
}

.favorites-page .wishlist-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 18px;
}

.favorites-page .wishlist-price strong {
    color: var(--primary-green);
}

.favorites-page .btn-outline-secondary {
    border-radius: 12px;
}

.favorites-page .btn-primary {
    border-radius: 12px;
}

/* -------------------------------------------- */
/* Misc                                         */
/* -------------------------------------------- */

.nav-products .dropdown-menu {
    min-width: 260px;
}

.menu-item .dropdown-menu {
    min-width: 220px;
}

.menu-item .dropdown-menu .dropdown-item {
    font-size: 14px;
}

.menu-item .dropdown-menu .dropdown-item:hover {
    background: rgba(45, 90, 61, 0.08);
    color: var(--primary-green);
}

/* Header Styles */
.header-section {
    background: white;
    box-shadow: var(--shadow-light);
    position: relative;
    z-index: 100;
}

.logo-container {
    position: relative;
}

.logo-badge {
    background: var(--primary-green);
    color: white;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    min-height: 80px;
    box-shadow: var(--shadow-medium);
}
.logo-badge.logo-badge-image {
    padding: 0;
}

.logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
    display: block;
}
.logo-badge i {
    font-size: 24px;
    margin-bottom: 4px;
}

.logo-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.brand-tagline {
    color: var(--text-gray);
    font-size: 14px;
    margin-top: 4px;
}

.prescription-text {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.4;
}

.btn-primary-custom {
    background: var(--primary-green);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.btn-primary-custom:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-outline-primary-custom {
    background: transparent;
    border: 1px solid var(--primary-green);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    color: var(--primary-green);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.btn-outline-primary-custom:hover {
    background: var(--primary-green);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-outline-white-custom {
    background: transparent;
    border: 1px solid #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
}

.btn-outline-white-custom:hover {
    background: var(--primary-green);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-soft-primary,
.btn-soft-outline {
    border-radius: 14px;
    padding: 10px 22px;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    box-shadow: none;
}

.btn-soft-primary {
    background: rgba(45, 90, 61, 0.12);
    color: var(--primary-green);
    border: 1px solid rgba(45, 90, 61, 0.18);
}

.btn-soft-primary:hover {
    background: rgba(45, 90, 61, 0.18);
    color: var(--primary-green);
    transform: translateY(-1px);
}

.btn-soft-outline {
    background: rgba(255, 255, 255, 0.82);
    color: var(--primary-green);
    border: 1px solid rgba(45, 90, 61, 0.22);
}

.btn-soft-outline:hover {
    background: rgba(45, 90, 61, 0.08);
    color: var(--primary-green);
    transform: translateY(-1px);
}

.btn-soft-outline:focus,
.btn-soft-primary:focus {
    box-shadow: 0 0 0 4px rgba(45, 90, 61, 0.14);
    outline: none;
}

.btn-soft-primary.btn-sm,
.btn-soft-outline.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-gradient-warm {
    background: linear-gradient(135deg, #f6c56f 0%, #ea8c55 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 12px 26px;
    font-weight: 600;
    box-shadow: 0 18px 42px rgba(234, 140, 85, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-gradient-warm:hover {
    transform: translateY(-2px);
    box-shadow: 0 26px 52px rgba(234, 140, 85, 0.34);
    filter: brightness(1.02);
    color: #ffffff;
}

.btn-gradient-warm:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(234, 140, 85, 0.28);
}

.btn-gradient-warm.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

/* Main Content */

.main-content {
    padding: 0;
    background: #fdfbf7;
}

.warm-section {
    position: relative;
    background: linear-gradient(135deg, #fcf3e2 0%, #ffffff 50%, #e7f3eb 100%);
    overflow: hidden;
}

.warm-section.warm-section--clean {
    background: #ffffff;
}

.warm-section.warm-section--clean::after {
    background-image: none;
    opacity: 0;
}

.warm-section.warm-section--pale-gradient {
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f2 55%, #f6e7c8 100%);
}

.warm-section.warm-section--pale-gradient::after {
    background-image: radial-gradient(rgba(229, 184, 86, 0.18) 1px, transparent 1px);
    opacity: 0.28;
}

.warm-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(33, 77, 52, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
    pointer-events: none;
    mix-blend-mode: multiply;
    z-index: 0;
}

.warm-section > .container,
.warm-section > .container-fluid {
    position: relative;
    z-index: 2;
}

.dark-section {
    position: relative;
    background: linear-gradient(140deg, #111c29 0%, #15283a 45%, #1d3546 100%);
    overflow: hidden;
}

.dark-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
    background-size: 34px 34px;
    opacity: 0.45;
    pointer-events: none;
}

.dark-section::after {
    content: '';
    position: absolute;
    top: -220px;
    right: -160px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(236, 208, 120, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.dark-section > .container,
.dark-section > .container-fluid {
    position: relative;
    z-index: 2;
}

.glass-panel {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 60px rgba(9, 22, 30, 0.35);
    color: rgba(255, 255, 255, 0.85);
}

.glass-panel h2,
.glass-panel h3,
.glass-panel h5,
.glass-panel h6 {
    color: #ffffff;
}

.glass-panel p {
    color: rgba(255, 255, 255, 0.72);
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(33, 77, 52, 0.22), transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.hero-layout {
    position: relative;
    z-index: 3;
}

.hero-content {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(45, 90, 61, 0.1);
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.75rem 1.5rem;
    margin-bottom: 2rem;
}

.hero-benefit {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.hero-benefit i {
    color: var(--primary-green);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    align-items: center;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-green);
    color: #fff;
    padding: 0.85rem 1.9rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.hero-support {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.hero-support i {
    color: var(--primary-green);
}

.hero-form {
    max-width: 500px;
    margin-left: auto;
}

.prescription-card {
    border: none;
    border-radius: 18px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    background: #fff;
}

.prescription-card .card-body {
    padding: 2.2rem;
}

.form-header {
    margin-bottom: 1.5rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.upload-section {
    margin-bottom: 1.75rem;
}

.upload-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.upload-status i {
    color: var(--primary-green);
}

.upload-area {
    border: 2px dashed rgba(45, 90, 61, 0.25);
    border-radius: 14px;
    padding: 2.25rem 1.5rem;
    background: #f8faf8;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: var(--primary-green);
    background: #f1f5f1;
}

.upload-label {
    color: var(--text-gray);
    cursor: pointer;
    font-size: 0.95rem;
}

.upload-label i {
    color: var(--primary-green);
}

.contact-section {
    margin-bottom: 1.75rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.section-header i {
    color: var(--primary-green);
}

.form-control {
    border: 1px solid rgba(45, 90, 61, 0.2);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(45, 90, 61, 0.12);
}

.privacy-label {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-green), #3f7a53);
    border: none;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    color: #fff;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.btn-submit:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

/* Phone Mockup - HIDDEN */
.phone-mockup {
    display: none;
}

.phone-frame {
    display: none;
}

.phone-screen {
    display: none;
}

.notification-content {
    display: none;
}

.notification-header {
    display: none;
}

.logo-small {
    display: none;
}

.notification-title {
    display: none;
}

.notification-text {
    display: none;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: pulse 2s infinite;
}

.success-icon i {
    color: white;
    font-size: 24px;
}

.status-message strong {
    color: var(--text-dark);
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
}

.status-message p {
    color: var(--text-gray);
    font-size: 13px;
}

/* ONLINE SHOP SECTION */
.online-shop-section {
    background: white;
    position: relative;
}

.product-carousel-container {
    position: relative;
}

.product-carousel {
    overflow: hidden;
}

.product-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-slide.active {
    display: block;
    opacity: 1;
}

/* Product Card Styles */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.product-image {
    position: relative;
    padding: 20px;
    text-align: center;
    background: #fafafa;
}

.product-image img {
    max-height: 200px;
    object-fit: contain;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--success-green);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.product-badge.prescription {
    background: #dc3545;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-title a {
    color: inherit;
    text-decoration: none;
}

.product-title a:hover {
    color: var(--primary-green);
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.stars {
    display: flex;
    gap: 2px;
    margin-right: 8px;
}

.stars i {
    color: #ffd700;
    font-size: 14px;
}

.rating-count {
    font-size: 12px;
    color: var(--text-gray);
}

.product-manufacturer {
    font-size: 12px;
    color: var(--text-gray);
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

.product-price {
    margin-bottom: 15px;
    margin-top: auto;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
}

.original-price {
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-left: 8px;
}

.discount {
    background: #dc3545;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 8px;
}

.btn-add-to-cart {
    background: var(--primary-green);
    border: none;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-add-to-cart:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    color: white;
}

.prescription-info {
    display: flex;
    align-items: center;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.prescription-tooltip {
    color: #dc3545;
    margin-right: 8px;
    cursor: help;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--light-green);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(45, 90, 61, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-green);
    transform: scale(1.2);
}

/* PRODUCTS PAGE STYLES */
.products-page {
    background: var(--bg-cream);
    min-height: 100vh;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-green);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-gray);
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* Sidebar Filters */
.sidebar-filters {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow-light);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.filter-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-light);
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.category-item:hover {
    background: var(--bg-cream);
    color: var(--primary-green);
}

.category-item.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.count {
    font-size: 12px;
    opacity: 0.7;
}

.price-range .form-control {
    font-size: 14px;
    padding: 8px 12px;
}

.brand-list .form-check {
    margin-bottom: 10px;
}

.form-check-label {
    font-size: 14px;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* Products Toolbar */
.products-toolbar {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.results-info {
    font-size: 14px;
    color: var(--text-gray);
}

.form-select {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 14px;
}

/* Products Grid */
.products-grid {
    margin-top: 20px;
}

/* Pagination */
.pagination .page-link {
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    padding: 10px 15px;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.pagination .page-link:hover {
    background-color: var(--bg-cream);
    border-color: var(--primary-green);
    color: var(--primary-green);
}

/* PRODUCT PAGE STYLES */
.product-page {
    background: var(--bg-cream);
    min-height: 100vh;
}

.product-header {
    text-align: center;
    padding: 40px 0;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
}

.product-main-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.product-categories {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.category-tag {
    background: var(--primary-green);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Product Info Section */
.product-info-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-light);
}

.product-images .main-image {
    text-align: center;
    background: #fafafa;
    border-radius: 12px;
    padding: 20px;
}

.main-product-image {
    max-height: 400px;
    object-fit: contain;
    cursor: pointer;
}

.gallery-thumb {
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.product-details {
    background: #fafafa;
    padding: 25px;
    border-radius: 12px;
}

.details-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.detail-item {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.detail-item strong {
    color: var(--text-dark);
    margin-right: 8px;
}

.product-purchase {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid var(--border-light);
}

.price-section {
    text-align: center;
    margin-bottom: 20px;
}

.current-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
}

.original-price {
    font-size: 18px;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-top: 5px;
}

.discount-badge {
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.stock-info {
    text-align: center;
}

.stock-status {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
}

.stock-status.in-stock {
    color: var(--success-green);
}

.last-update {
    font-size: 12px;
    color: var(--text-gray);
}

.quantity-selector .input-group {
    max-width: 120px;
    margin: 0 auto;
}

/* Reviews Section */
.reviews-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
}

.review-item {
    padding: 20px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 15px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-name {
    font-weight: 600;
    color: var(--text-dark);
}

.review-date {
    font-size: 12px;
    color: var(--text-gray);
}

.review-rating .stars i {
    color: #ffd700;
    font-size: 14px;
}

.review-text {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Product Description Tabs */
.product-description-section {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.nav-tabs {
    background: #f8f9fa;
    border-bottom: 1px solid var(--border-light);
    padding: 0 40px;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--text-gray);
    font-weight: 600;
    padding: 20px 30px;
    border-radius: 0;
}

.nav-tabs .nav-link.active {
    background: white;
    color: var(--primary-green);
    border-bottom: 3px solid var(--primary-green);
}

.tab-content-inner {
    padding: 40px;
}

.tab-content-inner h4 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.tab-content-inner h5 {
    color: var(--primary-green);
    margin: 20px 0 10px;
}

.tab-content-inner ul {
    padding-left: 20px;
}

.tab-content-inner li {
    margin-bottom: 5px;
    color: var(--text-gray);
}

.prospect-download {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 12px;
}

/* Information Notice */
.info-notice {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
}

.update-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

/* Related Products */
.related-products-section {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
}

/* Newsletter Section */
.newsletter-section {
    margin-top: 40px;
}

.newsletter-card {
    background: var(--gradient-green);
    color: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
}

.newsletter-card h4 {
    color: white;
    margin-bottom: 10px;
}

.newsletter-form .form-control {
    border: none;
    border-radius: 8px 0 0 8px;
}

.newsletter-form .btn {
    border-radius: 0 8px 8px 0;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
}

.newsletter-form .btn:hover {
    background: rgba(255,255,255,0.3);
}

/* ZONE 1: Hero Statistics Section */
.hero-stats-section {
    position: relative;
    overflow: hidden;
}

.hero-stats-section::before {
   /** 
	content: '';
    position: absolute;
    top: -120px;
    right: -160px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 90, 61, 0.16) 0%, transparent 70%);
    z-index: 1;
**/
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stats-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.stats-title .highlight {
    color: var(--primary-green);
    position: relative;
}

.stats-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-green);
    border-radius: 2px;
}

.stats-description {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.92) 0%, rgba(252, 243, 226, 0.75) 100%);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 18px 40px rgba(33, 77, 52, 0.12);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 50px rgba(33, 77, 52, 0.16);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.stats-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /** height: 400px;**/
}

.pharmacy-illustration {
    position: relative;
    width: 200px;
    height: 200px;
}

.building-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
}

.building-icon i {
    font-size: 48px;
    color: white;
}

.floating-pills {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pill {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    animation: float 3s ease-in-out infinite;
}

.pill i {
    font-size: 20px;
    color: var(--primary-green);
}

.pill-1 {
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.pill-2 {
    bottom: 30px;
    left: 10px;
    animation-delay: 1s;
}

.pill-3 {
    top: 50%;
    left: -20px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ZONE 2: Timeline Process Section - HORIZONTAL LAYOUT */
.timeline-section {
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
/** 
 content: '';
    position: absolute;
    top: -160px;
    left: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(33, 77, 52, 0.18) 0%, transparent 70%);
    z-index: 0;
**/
}

.timeline-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Horizontal Timeline Layout */
.timeline-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 0;
}

/* Horizontal connecting line */
.timeline-horizontal::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 4px;
    background: var(--gradient-green);
    border-radius: 2px;
    z-index: 0;
}

.timeline-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
    z-index: 1;
}

.timeline-marker {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.timeline-number {
    width: 100px;
    height: 100px;
    background: var(--gradient-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 700;
    box-shadow: var(--shadow-medium);
    border: 4px solid white;
}

.timeline-content {
    width: 100%;
    padding: 25px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    text-align: center;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.timeline-icon i {
    font-size: 24px;
    color: var(--primary-green);
}

.timeline-icon.has-image {
    background: transparent;
    border-radius: 0;
    width: 80px;
    height: 80px;
    padding: 0;
}

.timeline-icon.has-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 14px;
}

/* ZONE 3: Interactive Services Grid */
.interactive-services {
    position: relative;
    overflow: hidden;
}

.interactive-services::before {
/**
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 15%, rgba(236, 208, 120, 0.22) 0%, transparent 55%),
                radial-gradient(circle at 85% 80%, rgba(33, 77, 52, 0.16) 0%, transparent 65%);
    z-index: 1;
**/
}

.services-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.service-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(33, 77, 52, 0.12);
    transition: all 0.35s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(33, 77, 52, 0.18);
}

.large-card {
    grid-row: span 2;
    background: linear-gradient(140deg, #214d34 0%, #6ab38b 100%);
}

.service-card:nth-child(2) {
    background: linear-gradient(140deg, #f6b36c 0%, #ffe0a3 100%);
}

.service-card:nth-child(3) {
    background: linear-gradient(140deg, #f57f8f 0%, #fbc2a9 100%);
}

.service-card:nth-child(4) {
    background: linear-gradient(140deg, #8ec5fc 0%, #e0c3fc 100%);
}

.service-card:nth-child(5) {
    background: linear-gradient(140deg, #ffecd2 0%, #fcb69f 100%);
}

.service-overlay {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 2;
}

.service-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(7, 17, 26, 0.25) 0%, rgba(7, 17, 26, 0.35) 100%);
    z-index: -1;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon-large i {
    font-size: 36px;
    color: white;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-icon i {
    font-size: 24px;
    color: white;
}

.service-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-overlay h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-overlay p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-benefits {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.service-benefits i {
    margin-right: 8px;
    font-size: 12px;
}

/* ZONE 4: Testimonials Carousel - MODERN CARD LAYOUT */
.testimonials-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg, #fcf3e2 0%, #ffffff 55%, #e7f3eb 100%);
}

.testimonials-section::before,
.testimonials-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
    opacity: 0.45;
    z-index: 0;
}

.testimonials-section::before {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(46,123,75,0.18) 0%, transparent 65%);
    top: -180px;
    right: -220px;
}

.testimonials-section::after {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255,193,7,0.15) 0%, transparent 70%);
    bottom: -180px;
    left: -160px;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(33, 77, 52, 0.12);
    color: #214d34;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.testimonial-intro .section-title {
    color: #214d34;
    font-size: 36px;
    margin: 20px 0 18px;
}

.testimonial-intro .section-subtitle {
    color: rgba(33, 77, 52, 0.75);
    margin-bottom: 32px;
}

.testimonial-highlight {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 15px 45px rgba(33, 77, 52, 0.12);
    border: 1px solid rgba(33, 77, 52, 0.08);
    backdrop-filter: blur(4px);
    margin-bottom: 28px;
}

.rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 110px;
}

.rating-score .score {
    font-size: 42px;
    font-weight: 700;
    color: #214d34;
    line-height: 1;
}

.rating-score .stars {
    display: flex;
    margin-top: 6px;
}

.rating-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: rgba(33, 77, 52, 0.85);
}

.rating-text strong {
    font-size: 16px;
    color: #214d34;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 18px;
    padding: 20px 18px;
    text-align: center;
    border: 1px solid rgba(33, 77, 52, 0.1);
    box-shadow: 0 12px 30px rgba(33, 77, 52, 0.08);
}

.stat-card .value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #214d34;
}

.stat-card .label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(33, 77, 52, 0.65);
    margin-top: 6px;
}

.testimonials-wrapper {
    position: relative;
    padding: 28px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(236,247,239,0.88));
    box-shadow: 0 25px 60px rgba(33, 77, 52, 0.18);
    border: 1px solid rgba(33, 77, 52, 0.08);
}

.floating-badge {
    position: absolute;
    top: -22px;
    right: 36px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #214d34;
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 16px 32px rgba(33, 77, 52, 0.25);
}

.floating-badge i {
    color: #ffd54f;
}

.testimonials-carousel {
    position: relative;
    z-index: 1;
    min-height: 280px;
}

.testimonial-card {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.testimonial-content {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 48px 40px;
    border: 1px solid rgba(33, 77, 52, 0.08);
    box-shadow: 0 18px 46px rgba(33, 77, 52, 0.12);
    text-align: left;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 18px;
    border: 1px dashed rgba(33, 77, 52, 0.12);
    pointer-events: none;
}

.quote-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(46,123,75,0.15), rgba(46,123,75,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #214d34;
    font-size: 20px;
    margin-bottom: 22px;
}

.stars i {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(33, 40, 45, 0.9);
    font-weight: 500;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(46,123,75,0.18), rgba(46,123,75,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #214d34;
    font-size: 22px;
}

.author-info h5 {
    font-size: 18px;
    color: #214d34;
    font-weight: 700;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: rgba(33, 77, 52, 0.7);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 36px;
}

.testimonial-btn {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: none;
    background: rgba(46, 123, 75, 0.12);
    color: #214d34;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.testimonial-btn:hover,
.testimonial-btn:focus {
    background: #214d34;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(33, 77, 52, 0.25);
}

.testimonial-btn i {
    pointer-events: none;
}

.testimonial-dots {
    display: inline-flex;
    gap: 12px;
}

.testimonial-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: rgba(33, 77, 52, 0.25);
    position: relative;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.testimonial-dots .dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.testimonial-dots .dot.active {
    background: #214d34;
    transform: scale(1.2);
}

.testimonial-dots .dot.active::after {
    border-color: rgba(33, 77, 52, 0.35);
}

/* ZONE 5: FAQ Accordion */
.faq-section {
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 208, 120, 0.18) 0%, transparent 75%);
    z-index: 1;
}

.faq-intro {
    padding-right: 40px;
}

.faq-contact-card {
    background: var(--gradient-green);
    border-radius: 16px;
    padding: 30px;
    color: white;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: white;
}

.contact-info h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(33, 77, 52, 0.12);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(252, 243, 226, 0.75) 100%);
}

.faq-accordion .accordion-button {
    background: transparent;
    border: none;
    padding: 20px 25px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-green);
    color: white;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.85);
    color: var(--text-gray);
    line-height: 1.6;
}

/* ZONE 6: Contact & Location */
.contact-overview {
    margin-bottom: 40px;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(110, 235, 169, 0.12);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9df0c6;
}

.status-chip i {
    font-size: 9px;
    color: #45d483;
}

.contact-channels {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.channel-card {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(6, 19, 29, 0.55);
    border: 1px solid rgba(157, 240, 198, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(12, 32, 45, 0.45);
}

.channel-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(69, 212, 131, 0.25) 0%, rgba(33, 77, 52, 0.05) 100%);
    color: #bdfadf;
    font-size: 18px;
}

.channel-icon.whatsapp {
    background: linear-gradient(135deg, rgba(59, 214, 101, 0.35) 0%, rgba(13, 110, 53, 0.2) 100%);
    color: #e4ffe6;
}

.channel-icon.mail {
    background: linear-gradient(135deg, rgba(236, 208, 120, 0.35) 0%, rgba(141, 108, 14, 0.2) 100%);
    color: #fff1c2;
}

.channel-body h6 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.channel-body a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
}

.channel-body a:hover {
    color: #fff;
}

.location-collection {
    margin-bottom: 40px;
    padding: 32px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(9, 25, 37, 0.65) 0%, rgba(23, 46, 62, 0.55) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.collection-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.collection-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.location-card {
    height: 100%;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-radius: 22px;
    padding: 26px;
    border: 1px solid transparent;
    transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 18px;
    cursor: pointer;
}

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

.location-card.active {
    border-color: rgba(157, 240, 198, 0.7);
    box-shadow: 0 18px 40px rgba(13, 110, 53, 0.3);
}

.location-header h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 6px;
}

.location-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}

.badge-zone {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffe9c7;
    background: rgba(236, 208, 120, 0.18);
    margin-bottom: 14px;
}

.location-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.location-details i {
    color: rgba(255, 255, 255, 0.6);
}

.spotlight-stack {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: sticky;
    top: 110px;
}

.location-spotlight {
    display: flex;
    flex-direction: column;
    gap: 22px;
    color: white;
}

.spotlight-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.spotlight-area {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.spotlight-title {
    font-size: 24px;
    font-weight: 700;
}

.spotlight-address {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
}

.spotlight-meta {
    display: grid;
    gap: 14px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.meta-item i {
    color: rgba(157, 240, 198, 0.8);
    font-size: 16px;
}

.meta-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
}

.meta-item a:hover {
    color: #fff;
}

.spotlight-hours h6 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 10px;
}

.spotlight-hours ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.spotlight-map {
    align-self: flex-start;
    border-radius: 999px;
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.spotlight-map:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.social-media {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.social-media h5 {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.emergency-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 28px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 115, 115, 0.18) 0%, rgba(255, 71, 71, 0.1) 100%);
    border: 1px solid rgba(255, 132, 132, 0.35);
    color: white;
}

.emergency-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 125, 125, 0.25);
    color: #ffdfdf;
    font-size: 26px;
}

.emergency-info h6 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
}

.emergency-info p {
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.7);
}

.emergency-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.06em;
}

.emergency-number:hover {
    background: rgba(255, 255, 255, 0.24);
}

/* Pharmacy Widgets Section */
.pharmacy-widgets {
    position: relative;
    overflow: hidden;
}

.pharmacy-widgets::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 20%, rgba(236, 208, 120, 0.22) 0%, transparent 60%),
                radial-gradient(circle at 80% 85%, rgba(33, 77, 52, 0.16) 0%, transparent 65%);
    z-index: 1;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Widget Cards */
.widget-card {
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.95) 0%, rgba(252, 243, 226, 0.75) 100%);
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 20px 45px rgba(33, 77, 52, 0.12);
    transition: all 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.35);
    position: relative;
    overflow: hidden;
}

.widget-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.widget-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(33, 77, 52, 0.18);
}

.widget-card:hover::before {
    transform: scaleX(1);
}

.widget-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.widget-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.widget-card:hover .widget-icon::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.widget-icon i {
    font-size: 32px;
    color: white;
    z-index: 2;
    position: relative;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.widget-description {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.widget-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.widget-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-dark);
}

.widget-features i {
    font-size: 14px;
    margin-right: 8px;
}

.widget-cta {
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.widget-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(45, 90, 61, 0.1), transparent);
    transition: left 0.6s ease;
}

.widget-card:hover .widget-cta::before {
    left: 100%;
}

.cta-text {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 14px;
    position: relative;
    z-index: 2;
}

/* Bottom Features */
.bottom-features {
    background: white;
    border-top: 1px solid var(--border-light);
}

.feature-item {
    padding: 20px;
}

.feature-icon-large {
    width: 80px;
    height: 80px;
    background: var(--bg-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-light);
}

.feature-icon-large i {
    font-size: 32px;
    color: var(--primary-green);
}

.feature-item h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* -------------------------------------------- */
/* Account Pages                                */
/* -------------------------------------------- */

.account-dashboard,
.account-addresses,
.account-wishlist,
.account-prescriptions {
    background: var(--bg-cream);
}

.account-layout .page-header,
.account-layout .empty-state,
.account-layout .card,
.account-layout .wishlist-card,
.account-layout .address-card,
.account-layout .stat-card,
.account-layout .accordion-item {
    border-radius: 16px;
    border: 1px solid rgba(44, 62, 80, 0.08);
    box-shadow: var(--shadow-light);
    background: #ffffff;
}

.account-sidebar .card {
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    position: sticky;
    top: 110px;
}

.account-sidebar .user-info {
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.12), rgba(45, 90, 61, 0.02));
    text-align: center;
}

.account-sidebar .user-avatar {
    width: 84px;
    height: 84px;
    margin: 0 auto;
    border-radius: 24px;
    background: #ffffff;
    display: grid;
    place-items: center;
    font-size: 2.75rem;
    color: var(--primary-green);
    box-shadow: inset 0 0 0 2px rgba(45, 90, 61, 0.1);
}

.account-sidebar .account-nav {
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
    gap: 0.25rem;
}

.account-sidebar .account-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border: none;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.account-sidebar .account-nav-item i {
    color: var(--primary-green);
}

.account-sidebar .account-nav-item:hover,
.account-sidebar .account-nav-item:focus {
    background: rgba(45, 90, 61, 0.08);
    color: var(--primary-green);
    transform: translateX(4px);
}

.account-sidebar .account-nav-item.active {
    background: var(--primary-green);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(45, 90, 61, 0.25);
}

.account-sidebar .account-nav-item.active i {
    color: #ffffff;
}

.account-sidebar .dropdown-divider {
    margin: 0.75rem 0.5rem;
    border-color: rgba(44, 62, 80, 0.1);
}

.account-sidebar [data-logout-button] {
    font-weight: 600;
}

.account-layout .account-card {
    border-radius: 18px;
    border: 1px solid rgba(44, 62, 80, 0.08);
    box-shadow: var(--shadow-light);
    background: #ffffff;
}

.account-layout .page-header {
    padding: 1.5rem 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(44, 62, 80, 0.08);
}

.account-layout .page-title {
    font-weight: 700;
    color: var(--primary-green);
}

.account-dashboard .stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: none;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.08), rgba(45, 90, 61, 0.02));
    box-shadow: var(--shadow-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.account-dashboard .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.account-dashboard .stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #ffffff;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: inset 0 0 0 1px rgba(45, 90, 61, 0.08);
}

.account-dashboard .stat-content h3 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    color: var(--primary-green);
}

.account-dashboard .stat-content p {
    margin-bottom: 0;
    color: var(--text-gray);
    font-weight: 500;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-card {
    border: 1px solid rgba(44, 62, 80, 0.08);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.order-header {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.12), rgba(45, 90, 61, 0.02));
    border-bottom: 1px solid rgba(44, 62, 80, 0.08);
}

.order-meta,
.order-total {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.order-label {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-gray);
}

.order-value {
    font-weight: 600;
    color: var(--text-dark);
}

.order-status {
    font-weight: 600;
}

.order-body {
    padding: 1.75rem;
}

.order-section {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.order-section-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.order-section-title i {
    color: var(--primary-green);
}

.order-section .btn {
    border-radius: 12px;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .order-header {
        padding: 1.25rem;
    }

    .order-body {
        padding: 1.25rem;
    }
}

.quick-actions .action-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(44, 62, 80, 0.08);
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    box-shadow: var(--shadow-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-actions .action-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    color: var(--primary-green);
}

.quick-actions .action-card i {
    font-size: 1.4rem;
    color: var(--primary-green);
}

.account-addresses .address-card {
    border: none;
    box-shadow: var(--shadow-light);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.account-addresses .address-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.account-wishlist .wishlist-card {
    border: none;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.account-wishlist .wishlist-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.account-wishlist .wishlist-card-image {
    background: #f4f6f8;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-wishlist .wishlist-card-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
    text-decoration: none;
}

.account-wishlist .wishlist-card-title:hover {
    color: var(--primary-green);
}

.account-prescriptions .accordion-item {
    border: none;
    box-shadow: var(--shadow-light);
}

.account-prescriptions .accordion-button {
    border-radius: 16px !important;
    font-weight: 600;
    color: var(--text-dark);
}

.account-prescriptions .accordion-button:not(.collapsed) {
    background: rgba(45, 90, 61, 0.08);
    color: var(--primary-green);
}

.account-prescriptions .accordion-body {
    background: #ffffff;
    border-top: 1px solid rgba(44, 62, 80, 0.08);
    border-radius: 0 0 16px 16px;
}

@media (max-width: 991px) {
    .account-layout {
        gap: 1.5rem;
    }

    .account-sidebar .card {
        position: static;
    }

    .account-dashboard .stat-card {
        flex-direction: row;
    }

    .quick-actions .action-card {
        align-items: center;
        text-align: center;
    }
}

/* Footer Section - FULL WIDTH */
.footer-section {
    background: var(--footer-bg);
    color: white;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.footer-main {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Footer Brand */
.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo .logo-badge {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
}

.footer-logo .logo-badge.logo-badge-image {
    padding: 6px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-badge.logo-badge-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.footer-logo .brand-text .brand-name {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.footer-description {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cert-badge {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 20px;
    width: fit-content;
}

.cert-badge i {
    color: #4ecdc4;
}

/* Footer Links */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-green);
    border-radius: 1px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-menu a i {
    font-size: 12px;
    color: var(--primary-green);
}

/* Legal Info */
.anpc-info {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #4ecdc4;
}

.small-text {
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255,255,255,0.7);
}

.anpc-info .text-primary {
    color: #4ecdc4 !important;
}

/* Newsletter */
.newsletter-description {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form {
    margin-bottom: 20px;
}

.newsletter-input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 8px 0 0 8px;
}

.newsletter-input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-input:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--primary-green);
    box-shadow: none;
    color: white;
}

.btn-newsletter {
    background: var(--gradient-green);
    border: none;
    padding: 12px 20px;
    border-radius: 0 8px 8px 0;
    color: white;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: var(--light-green);
    transform: translateY(-2px);
}

.newsletter-consent {
    margin-bottom: 15px;
}

.newsletter-consent .form-check-input {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
}

.newsletter-consent .form-check-input:checked {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

.newsletter-benefits {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.newsletter-benefits .benefit-item {
    display: flex;
    align-items: center;
    font-size: 12px;
}

.newsletter-benefits .benefit-item i {
    font-size: 10px;
    margin-right: 8px;
}

/* Footer Bottom - FULL WIDTH */
.footer-bottom {
    background: rgba(0,0,0,0.3);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.copyright-text p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin: 0;
}

.copyright-text strong {
    color: white;
}

.copyright-text .fa-heart {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

/* Footer Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.contact-item {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: white;
}

.contact-item i {
    font-size: 12px;
    color: var(--primary-green);
    margin-right: 8px;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        padding-right: 0;
    }

    .hero-form {
        margin-left: 0;
        margin-right: auto;
    }

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

    .large-card {
        grid-row: span 1;
    }

    .testimonials-wrapper {
        padding: 24px;
    }

    .testimonial-content {
        padding: 42px 34px;
    }

    .floating-badge {
        right: 24px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .hero-form {
        margin: 0 auto;
    }

    .section-title {
        font-size: 30px;
    }

    .widget-card {
        padding: 25px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Horizontal Timeline Responsive */
    .timeline-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .timeline-horizontal::before {
        display: none;
    }

    .faq-intro {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .footer-contact-info {
        align-items: flex-start;
        margin-top: 20px;
    }

    .contact-items {
        align-items: flex-start;
    }
    
    /* Products page responsive */
    .sidebar-filters {
        position: static;
        margin-bottom: 30px;
    }
    
    .products-grid .row {
        justify-content: center;
    }

    .testimonial-intro {
        text-align: center;
    }

    .testimonial-highlight {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .rating-score {
        flex-direction: row;
        gap: 16px;
    }

    .rating-score .stars {
        margin-top: 0;
    }

    .testimonial-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: center;
    }

    .stat-card {
        width: 100%;
        max-width: 220px;
    }

    .testimonials-wrapper {
        margin: 0 auto;
    }

    .floating-badge {
        right: 20px;
    }

    .glass-panel {
        padding: 24px;
    }

    .location-collection {
        padding: 24px;
    }

    .spotlight-stack {
        position: static;
        top: auto;
    }

    .social-media {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 24px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-benefits {
        gap: 0.65rem;
    }

    .prescription-card .card-body {
        padding: 1.75rem;
    }

    .section-title {
        font-size: 26px;
    }

    .widget-card {
        padding: 20px;
    }

    .widget-icon {
        width: 60px;
        height: 60px;
    }

    .widget-icon i {
        font-size: 28px;
    }

    .stats-title {
        font-size: 28px;
    }

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

    .location-card {
        padding: 22px;
    }

    .social-links {
        flex-wrap: wrap;
        gap: 12px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .footer-logo {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer-certifications {
        align-items: center;
    }

    /* Timeline Mobile */
    .timeline-horizontal {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .timeline-number {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }

    /* Product page mobile */
    .product-main-title {
        font-size: 28px;
    }

    .product-info-section {
        padding: 20px;
    }

    .product-purchase {
        margin-top: 30px;
    }

    .reviews-section,
    .product-description-section,
    .related-products-section {
        padding: 20px;
    }

    .nav-tabs {
        padding: 0 20px;
    }

    .tab-content-inner {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .header-section .row {
        text-align: center;
    }

    .header-section .col-md-4 {
        margin-top: 20px;
    }

    .logo-container {
        justify-content: center;
        margin-bottom: 15px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-benefit {
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hero-support {
        justify-content: center;
    }

    .section-title {
        font-size: 22px;
    }

    .widget-title {
        font-size: 18px;
    }

    .timeline-content {
        padding: 20px;
    }

    .service-overlay {
        padding: 20px;
    }

    .testimonial-content {
        padding: 25px 15px;
    }

    .faq-contact-card {
        flex-direction: column;
        text-align: center;
    }

    .footer-main .row > div {
        margin-bottom: 30px;
    }

    .copyright-text {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-contact-info {
        align-items: center;
    }

    .contact-items {
        align-items: center;
    }

    .timeline-number {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }

    .timeline-content h4 {
        font-size: 16px;
    }

    .timeline-content p {
        font-size: 13px;
    }

    /* Product carousel mobile */
    .product-slide .row {
        flex-direction: column;
        align-items: center;
    }

    .product-slide .col-lg-3 {
        max-width: 300px;
        margin-bottom: 20px;
    }

    .badge-pill {
        font-size: 11px;
        padding: 8px 14px;
    }

    .testimonial-highlight {
        padding: 18px;
        gap: 18px;
    }

    .rating-score {
        width: 100%;
        flex-direction: column;
        gap: 6px;
    }

    .rating-text {
        text-align: center;
    }

    .testimonial-stats {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .stat-card {
        padding: 18px 14px;
    }

    .testimonials-wrapper {
        padding: 20px 16px;
    }

    .glass-panel,
    .location-collection {
        padding: 18px;
    }

    .status-chip {
        justify-content: center;
        width: 100%;
    }

    .social-media {
        align-items: stretch;
    }

    .social-links {
        justify-content: center;
    }

    .floating-badge {
        position: static;
        margin-bottom: 18px;
        align-self: flex-start;
    }

    .testimonial-content {
        padding: 26px 18px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: flex-start;
    }

.testimonial-controls {
    flex-direction: column;
    gap: 16px;
}
}

/* -------------------------------------------- */
/* Static Pages                                 */
/* -------------------------------------------- */

.static-page {
    background: linear-gradient(180deg, #fbf6ec 0%, #ffffff 40%, #eef6f0 100%);
}

.static-page-hero {
    position: relative;
}

.static-hero-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 30px 60px rgba(45, 90, 61, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.static-hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(74, 124, 89, 0.12) 0%, transparent 55%),
                radial-gradient(circle at bottom left, rgba(241, 188, 82, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.static-hero-card h1,
.static-hero-card .page-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.static-hero-card .page-subtitle,
.static-hero-card .lead {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.static-page-article table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  background-color: #fff;
  font-size: 0.95rem;
}

.static-page-article table th,
.static-page-article table td {
  border: 1px solid rgba(0,0,0,.15);
  padding: 0.75rem;
  vertical-align: top;
}

.static-page-article table th {
  background-color: #f8f9fa;
  font-weight: 600;
}

.static-page-article table tr:nth-child(even) {
  background-color: #fafafa;
}



.static-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(45, 90, 61, 0.1);
    border-radius: 999px;
    color: var(--primary-green);
    font-weight: 600;
}

.static-page-content-section {
    padding: 40px 0 80px;
}

.static-page-article {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 22px 45px rgba(33, 77, 52, 0.12);
    border: 1px solid rgba(231, 235, 228, 0.9);
}

.static-page-content {
    font-size: 17px;
    color: var(--text-dark);
}

.static-page-content a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: underline;
}

.static-page-content p {
    margin-bottom: 18px;
}

.static-page-content h2,
.static-page-content h3,
.static-page-content h4 {
    color: var(--primary-green);
    font-weight: 700;
    margin-top: 36px;
    margin-bottom: 18px;
}

.static-page-content ul,
.static-page-content ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.static-page-content li {
    margin-bottom: 8px;
}

.static-page .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 24px;
}

.static-page .breadcrumb .breadcrumb-item a {
    color: var(--primary-green);
    font-weight: 600;
}

.static-page .breadcrumb .breadcrumb-item.active {
    color: var(--text-gray);
}

/* About Page */
.despre-noi-page {
    background: linear-gradient(180deg, #fbf6ec 0%, #ffffff 55%, #eef6f0 100%);
}

.despre-noi-page .page-header .page-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}

.despre-noi-page .page-header .page-subtitle {
    color: var(--text-gray);
    font-size: 18px;
}

.company-overview .overview-content {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 24px 50px rgba(33, 77, 52, 0.12);
    border: 1px solid rgba(240, 242, 236, 0.9);
}

.company-stats .stat-item {
    background: rgba(45, 90, 61, 0.08);
    border-radius: 16px;
    padding: 18px 12px;
}

.company-stats .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
}

.mission-values .value-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 18px 40px rgba(33, 77, 52, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid rgba(232, 236, 228, 0.9);
}

.mission-values .value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(33, 77, 52, 0.18);
}

.mission-values .value-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(45, 90, 61, 0.12);
    display: grid;
    place-items: center;
    color: var(--primary-green);
    font-size: 24px;
    margin-bottom: 20px;
}

.mission-values .values-list {
    list-style: none;
    padding: 0;
}

.mission-values .values-list li {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--text-gray);
}

.team-member-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(33, 77, 52, 0.12);
    border: 1px solid rgba(234, 238, 232, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 60px rgba(33, 77, 52, 0.16);
}

.team-member-card .member-photo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-member-card .member-info {
    padding: 28px;
}

.member-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.member-position {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 12px;
}

.member-experience .badge {
    margin-right: 6px;
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    background: rgba(45, 90, 61, 0.12);
    color: var(--primary-green);
    border: 1px solid rgba(45, 90, 61, 0.12);
    box-shadow: none;
}

.badge-soft--outline {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(45, 90, 61, 0.22);
}

.member-description {
    color: var(--text-gray);
    margin-top: 12px;
}

.location-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(33, 77, 52, 0.12);
    border: 1px solid rgba(231, 235, 228, 0.9);
    display: flex;
    flex-direction: column;
}

.location-card .location-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.location-card .location-info {
    padding: 28px;
}

.location-name {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.location-details .detail-item {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--text-gray);
    align-items: flex-start;
}

.location-details .detail-item i {
    margin-top: 4px;
}

.despre-noi-page .location-details .detail-item {
    color: var(--text-dark);
    gap: 16px;
}

.despre-noi-page .location-details .detail-item i {
    margin-top: 0;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 90, 61, 0.1);
    color: var(--primary-green);
    font-size: 16px;
    flex-shrink: 0;
}

.despre-noi-page .location-details .detail-item span,
.despre-noi-page .location-details .detail-item a {
    color: var(--text-dark);
}

.despre-noi-page .location-details .detail-item a {
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.despre-noi-page .location-details .detail-item a:hover {
    color: var(--primary-green);
}

.contact-page .location-details .detail-item {
    color: var(--text-dark);
    gap: 16px;
}

.contact-page .location-details .detail-item i {
    margin-top: 0;
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 90, 61, 0.1);
    color: var(--primary-green);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-page .location-details .detail-item a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-page .location-details .detail-item a:hover {
    color: var(--primary-green);
}

.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.service-tag {
    background: rgba(45, 90, 61, 0.1);
    color: var(--primary-green);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
}

.location-description {
    color: var(--text-gray);
    margin-bottom: 18px;
}

.location-actions .btn {
    border-radius: 999px;
    padding: 8px 18px;
}

.despre-noi-page .location-actions .btn,
.despre-noi-page .cta-actions .btn {
    border-radius: 14px;
    padding: 10px 22px;
    font-weight: 600;
    box-shadow: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.despre-noi-page .location-actions .btn i,
.despre-noi-page .cta-actions .btn i {
    margin-right: 8px;
}

.despre-noi-page .location-actions .btn-primary-custom,
.despre-noi-page .cta-actions .btn-primary-custom {
    background: rgba(45, 90, 61, 0.12);
    color: var(--primary-green);
    border: 1px solid rgba(45, 90, 61, 0.18);
}

.despre-noi-page .location-actions .btn-primary-custom:hover,
.despre-noi-page .cta-actions .btn-primary-custom:hover {
    background: rgba(45, 90, 61, 0.18);
    color: var(--primary-green);
    transform: none;
    box-shadow: none;
}

.despre-noi-page .location-actions .btn-outline-primary-custom,
.despre-noi-page .cta-actions .btn-outline-primary-custom {
    background: rgba(255, 255, 255, 0.72);
    color: var(--primary-green);
    border: 1px solid rgba(45, 90, 61, 0.22);
}

.despre-noi-page .location-actions .btn-outline-primary-custom:hover,
.despre-noi-page .cta-actions .btn-outline-primary-custom:hover {
    background: rgba(45, 90, 61, 0.1);
    color: var(--primary-green);
    transform: none;
    box-shadow: none;
}

.certification-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 18px 40px rgba(33, 77, 52, 0.1);
    border: 1px solid rgba(234, 238, 232, 0.9);
    height: 100%;
}

.certification-card .cert-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: rgba(45, 90, 61, 0.12);
    color: var(--primary-green);
    font-size: 28px;
    margin: 0 auto 16px;
}

.contact-cta .cta-card {
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.92) 0%, rgba(74, 124, 89, 0.88) 100%);
    border-radius: 26px;
    padding: 40px;
    color: #ffffff;
    box-shadow: 0 28px 60px rgba(45, 90, 61, 0.35);
}

.contact-cta .cta-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-cta .cta-actions .btn {
    margin-top: 12px;
}

/* Blog Categories */
.blog-categories-page {
    background: linear-gradient(180deg, #fbf6ec 0%, #ffffff 55%, #eef6f0 100%);
}

.categories-filter .filter-container {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 22px 48px rgba(33, 77, 52, 0.12);
    border: 1px solid rgba(234, 238, 232, 0.9);
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.category-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(45, 90, 61, 0.08);
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-tab .article-count {
    background: #ffffff;
    color: var(--primary-green);
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-green);
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(33, 77, 52, 0.25);
}

.category-tab.active .article-count,
.category-tab:hover .article-count {
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary-green);
}

.blog-actions .btn,
.blog-actions .dropdown-toggle {
    border-radius: 999px;
    padding: 10px 18px;
}

.featured-card {
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 28px 58px rgba(33, 77, 52, 0.16);
    overflow: hidden;
    border: 1px solid rgba(232, 236, 228, 0.9);
}

.featured-image {
    position: relative;
    height: 100%;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-green);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(45, 90, 61, 0.25);
}

.featured-content {
    padding: 40px 36px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 18px;
	align-items: center;
}

.article-meta .category-badge {
    border-radius: 999px;
    padding: 6px 14px;
    color: #ffffff;
    font-weight: 600;
}

.featured-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 16px;
}

.featured-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.featured-excerpt {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 24px;
}

.article-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-stats .stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(45, 90, 61, 0.08);
    color: var(--primary-green);
    font-size: 12px;
    font-weight: 600;
}

.icon-media {
    display: inline-block;
    object-fit: contain;
    box-sizing: border-box;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}

.article-stats .stat-pill .icon-media {
    width: 16px;
    height: 16px;
}

/* Blog Tags */
.blog-tags-page {
    background: linear-gradient(180deg, #fbf6ec 0%, #ffffff 55%, #eef6f0 100%);
}

.tags-search-filter .search-filter-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 22px 48px rgba(33, 77, 52, 0.12);
    border: 1px solid rgba(234, 238, 232, 0.9);
}

.tags-search-filter .input-group-text {
    background: transparent;
    border-right: 0;
    color: var(--primary-green);
}

.tags-search-filter .form-control {
    border-left: 0;
    border-color: rgba(45, 90, 61, 0.18);
    font-size: 16px;
    padding: 12px 16px;
}

.tags-search-filter .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-green);
}

.tags-search-filter .btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 22px;
}

.popular-tag-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 22px 48px rgba(33, 77, 52, 0.12);
    border: 1px solid rgba(235, 239, 233, 0.9);
    height: 100%;
    display: flex;
    gap: 18px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popular-tag-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(33, 77, 52, 0.18);
}

.popular-tag-card .tag-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(45, 90, 61, 0.1);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.popular-tag-card .tag-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.popular-tag-card .tag-description {
    color: var(--text-gray);
    margin-bottom: 16px;
}

.popular-tag-card .tag-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-cloud-container {
    background: #ffffff;
    border-radius: 26px;
    padding: 36px;
    box-shadow: 0 22px 48px rgba(33, 77, 52, 0.12);
    border: 1px solid rgba(234, 238, 232, 0.9);
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    justify-content: center;
}

.tag-item {
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease, color 0.3s ease;
}

.tag-item:hover {
    transform: translateY(-3px);
    color: var(--primary-green) !important;
}

.tag-item.size-small { font-size: 14px; }
.tag-item.size-medium { font-size: 18px; }
.tag-item.size-large { font-size: 22px; }
.tag-item.size-xlarge { font-size: 26px; }

.filtered-results-section .section-subtitle a {
    color: var(--primary-green);
    font-weight: 600;
}

.filtered-results-section .articles-grid .article-card {
    box-shadow: 0 22px 48px rgba(33, 77, 52, 0.12);
}

.related-tags-card {
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.08) 0%, rgba(45, 90, 61, 0.02) 100%);
    border-radius: 24px;
    padding: 36px;
    border: 1px solid rgba(231, 235, 228, 0.9);
    box-shadow: 0 18px 45px rgba(33, 77, 52, 0.1);
}

.related-tags-card h3 {
    font-weight: 700;
    color: var(--text-dark);
}

.related-tags-card p {
    color: var(--text-gray);
    margin-bottom: 0;
}

.related-actions .btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 22px;
}

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

    .popular-tag-card .tag-info {
        text-align: center;
    }

    .tags-search-filter .blog-actions {
        text-align: left;
    }
}

/* How to Order */
.how-to-order-page {
    background: linear-gradient(180deg, #fbf6ec 0%, #ffffff 60%, #eef6f0 100%);
}

.order-steps-section .section-title,
.order-assurance-section .section-title {
    font-size: 32px;
    font-weight: 800;
}

.order-step-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 34px 28px;
    text-align: center;
    box-shadow: 0 22px 48px rgba(33, 77, 52, 0.12);
    border: 1px solid rgba(234, 238, 232, 0.9);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 60px rgba(33, 77, 52, 0.18);
}

.order-step-card .step-number {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(45, 90, 61, 0.1);
    color: var(--primary-green);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.order-step-card .step-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(45, 90, 61, 0.12);
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
}

.order-step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.order-step-card p {
    color: var(--text-gray);
    margin-bottom: 0;
}

.order-feature-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 26px 54px rgba(33, 77, 52, 0.14);
    border: 1px solid rgba(234, 238, 232, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.order-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 64px rgba(33, 77, 52, 0.18);
}

.order-feature-card .feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(45, 90, 61, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 26px;
    margin-bottom: 20px;
}

.order-feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-dark);
}

.order-feature-card p {
    color: var(--text-gray);
    margin-bottom: 18px;
}

.order-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.order-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.order-feature-list i {
    color: var(--primary-green);
    margin-top: 4px;
}

.order-contact-channels .btn {
    border-radius: 12px;
    font-weight: 600;
}

.order-assurance-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 22px 48px rgba(33, 77, 52, 0.12);
    border: 1px solid rgba(234, 238, 232, 0.9);
    height: 100%;
}

.order-assurance-card .assurance-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    background: rgba(45, 90, 61, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 26px;
    margin: 0 auto 18px;
}

.order-assurance-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.order-assurance-card p {
    color: var(--text-gray);
    margin-bottom: 0;
}

.order-cta-card {
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.12) 0%, rgba(45, 90, 61, 0.04) 100%);
    border-radius: 26px;
    padding: 40px 36px;
    border: 1px solid rgba(232, 236, 228, 0.9);
    box-shadow: 0 26px 54px rgba(33, 77, 52, 0.14);
}

.order-cta-card h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.order-cta-card p {
    color: var(--text-gray);
    margin-bottom: 0;
}

.order-cta-card .btn {
    border-radius: 12px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .order-cta-card {
        text-align: center;
    }

    .order-cta-card .btn {
        margin-bottom: 10px;
    }
}

.articles-grid .article-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(33, 77, 52, 0.12);
    border: 1px solid rgba(232, 236, 228, 0.9);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.articles-grid .article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(33, 77, 52, 0.18);
}

.article-card .article-image {
    position: relative;
    overflow: hidden;
}

.article-card .article-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-card .article-category {
    position: absolute;
    top: 16px;
    left: 16px;
}

.article-card .article-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-card .article-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.article-card .article-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.article-card .article-excerpt {
    color: var(--text-gray);
    margin-bottom: 18px;
    flex: 1;
}

.article-card .article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.article-card .article-footer .read-more {
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-card .author-info {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.article-card .author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(33, 77, 52, 0.12);
}

.article-card .author-name {
    font-weight: 600;
    color: var(--text-gray);
}

/* Blog Article */
.blog-article-page {
    background: linear-gradient(180deg, #fbf6ec 0%, #ffffff 55%, #eef6f0 100%);
}

.blog-article {
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 28px 60px rgba(33, 77, 52, 0.16);
    border: 1px solid rgba(232, 236, 228, 0.9);
    padding: 40px;
}

.blog-article .article-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-article .article-stats .stat-pill,
.blog-article .stats-container .stat-pill {
    background: rgba(45, 90, 61, 0.08);
    color: var(--primary-green);
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    line-height: 1;
}

.blog-article .stats-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.blog-article .stat-pill-like {
    background: transparent;
    padding: 0;
}

.blog-article .btn-share {
    background: transparent;
    border: none;
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
}

.blog-article .btn-like {
    /** background: rgba(45, 90, 61, 0.08); **/
    border: none;
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /** padding: 6px 16px; **/
    border-radius: 999px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-article .btn-like .heart-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(45, 90, 61, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.blog-article .btn-like .like-count {
    font-weight: 700;
}

.blog-article .btn-like .like-label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.6px;
}

.blog-article .btn-like:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(33, 77, 52, 0.12);
}

.blog-article .btn-like.liked {
    background: rgba(235, 87, 87, 0.12);
    color: #eb5757;
}

.blog-article .btn-like.liked .heart-icon {
    background: rgba(235, 87, 87, 0.18);
    color: #eb5757;
    transform: scale(1.12);
}

.blog-article .btn-like.liked-animation .heart-icon {
    animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    30% { transform: scale(1.25); }
    60% { transform: scale(0.92); }
    100% { transform: scale(1); }
}

.article-featured-image img {
    border-radius: 24px;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 22px 45px rgba(33, 77, 52, 0.14);
}

.article-lead {
    background: rgba(45, 90, 61, 0.08);
    border-radius: 18px;
    padding: 28px;
}

.article-lead .lead {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 0;
}

.article-main-content {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
}

.article-main-content h2,
.article-main-content h3,
.article-main-content h4 {
    color: var(--primary-green);
    margin-top: 36px;
    margin-bottom: 18px;
}

.article-main-content blockquote {
    border-left: 4px solid var(--primary-green);
    padding-left: 18px;
    font-style: italic;
    color: var(--text-gray);
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-container .tag {
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(45, 90, 61, 0.08);
    font-weight: 600;
}

.author-bio-card {
    background: rgba(45, 90, 61, 0.08);
    border-radius: 22px;
}

.author-photo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 18px 35px rgba(33, 77, 52, 0.18);
}

.author-title {
    color: var(--primary-green);
    font-weight: 600;
}

.social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.share-btn.facebook { background: rgba(66, 103, 178, 0.12); color: #3b5998; }
.share-btn.twitter { background: rgba(29, 161, 242, 0.12); color: #1da1f2; }
.share-btn.linkedin { background: rgba(40, 103, 178, 0.12); color: #2867b2; }
.share-btn.whatsapp { background: rgba(37, 211, 102, 0.12); color: #25d366; }
.share-btn.email { background: rgba(237, 137, 54, 0.12); color: #ed8936; }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(33, 77, 52, 0.12);
}

.share-btn.copy-link {
    background: rgba(45, 90, 61, 0.1);
    color: var(--primary-green);
    border: none;
}

.share-options {
    display: grid;
    gap: 12px;
}

@media (min-width: 576px) {
    .share-options {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.share-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(45, 90, 61, 0.12);
    background: rgba(45, 90, 61, 0.05);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.share-option i {
    font-size: 18px;
}

.share-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(33, 77, 52, 0.12);
}

.share-option.facebook { color: #3b5998; border-color: rgba(59, 89, 152, 0.25); }
.share-option.twitter { color: #1da1f2; border-color: rgba(29, 161, 242, 0.25); }
.share-option.linkedin { color: #2867b2; border-color: rgba(40, 103, 178, 0.25); }
.share-option.whatsapp { color: #25d366; border-color: rgba(37, 211, 102, 0.25); }
.share-option.email { color: #ed8936; border-color: rgba(237, 137, 54, 0.25); }

.share-option span {
    font-weight: 600;
}

.related-article-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(33, 77, 52, 0.12);
    border: 1px solid rgba(232, 236, 228, 0.9);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-article-card .article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-article-card .article-content {
    padding: 26px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.related-article-card .article-title {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-dark);
}

.related-article-card .article-excerpt {
    color: var(--text-gray);
    margin-bottom: 18px;
    flex: 1;
}

.comments-section {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 22px 45px rgba(33, 77, 52, 0.12);
}

.comment-form .form-control {
    border-radius: 12px;
    border-color: rgba(45, 90, 61, 0.18);
}

.blog-article .comment-form .form-check {
    padding-left: 1.8rem;
}

.blog-article .comment-form .form-check-label {
    display: inline;
    width: auto;
    justify-content: flex-start;
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
}

.blog-article .comment-form .form-check-label a {
    color: #000;
    font-weight: 600;
}

.comment-item {
    background: rgba(45, 90, 61, 0.06);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 18px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.comment-avatar {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    object-fit: cover;
}

.comment-avatar-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(45, 90, 61, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 22px;
}

.comment-date {
    color: var(--text-gray);
    font-size: 13px;
}

/* Contact Page */
.contact-page {
    background: linear-gradient(180deg, #fbf6ec 0%, #ffffff 55%, #eef6f0 100%);
}

.contact-hero {
    padding: 70px 0 40px;
}

.contact-hero-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 28px 60px rgba(33, 77, 52, 0.16);
    border: 1px solid rgba(232, 236, 228, 0.9);
}

.contact-hero-card h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-hero-card .hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 24px;
}

.contact-hero-card .hero-info .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 16px;
    background: rgba(45, 90, 61, 0.08);
    font-weight: 600;
    color: var(--primary-green);
}

.contact-content-section {
    padding: 40px 0;
}

.contact-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 24px 50px rgba(33, 77, 52, 0.14);
    border: 1px solid rgba(232, 236, 228, 0.9);
    height: 100%;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.contact-info-item i {
    font-size: 20px;
    color: var(--primary-green);
    margin-top: 4px;
}

.contact-info-item .info-content {
    flex: 1;
}

.contact-info-item .info-title {
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-form .form-control,
.faq-item .accordion-button {
    border-radius: 12px;
    border-color: rgba(45, 90, 61, 0.18);
}

.contact-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(45, 90, 61, 0.1);
    border-color: var(--primary-green);
}

.contact-form .form-check-input {
    border-radius: 6px;
}

.location-highlight-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 22px 45px rgba(33, 77, 52, 0.14);
    border: 1px solid rgba(232, 236, 228, 0.9);
    overflow: hidden;
}

.location-highlight-card .map-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.location-highlight-card .map-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.locations-grid .location-card {
    height: 100%;
}

.faq-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 24px 50px rgba(33, 77, 52, 0.12);
    border: 1px solid rgba(232, 236, 228, 0.9);
    padding: 32px;
}

.faq-item .accordion-button {
    font-weight: 600;
    color: var(--text-dark);
}

.faq-item .accordion-button:not(.collapsed) {
    background: rgba(45, 90, 61, 0.08);
    color: var(--primary-green);
    box-shadow: inset 0 0 0 1px rgba(45, 90, 61, 0.12);
}

.faq-item .accordion-body {
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .static-hero-card,
    .contact-hero-card,
    .blog-article,
    .comments-section {
        padding: 30px;
    }

    .static-page-article,
    .contact-card,
    .faq-card {
        padding: 28px;
    }

    .static-hero-card h1,
    .contact-hero-card h1,
    .blog-article .article-title {
        font-size: 32px;
    }

    .category-tabs {
        gap: 10px;
    }

    .contact-hero-card .hero-info {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .static-hero-card,
    .static-page-article,
    .contact-card,
    .faq-card,
    .blog-article,
    .comments-section,
    .contact-hero-card {
        padding: 24px;
    }

    .static-hero-card h1,
    .contact-hero-card h1,
    .blog-article .article-title {
        font-size: 22px;
    }

    .category-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .featured-content {
        padding: 30px;
    }

    .article-card .article-image img,
    .related-article-card .article-image img {
        height: 200px;
    }

    .team-member-card .member-photo img {
        height: 220px;
    }

    .contact-hero-card .hero-info .info-item {
        width: 100%;
        justify-content: center;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.btn-submit.loading {
    position: relative;
}

.btn-submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success States */
.success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    display: none;
}

.error-message {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    display: none;
}

/* SEO Enhancement Styles */
.widget-card[data-aos] {
    transition-delay: 0.1s;
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .widget-card {
        transition: none;
    }
    
    .widget-card:hover {
        transform: none;
    }
    
    .success-icon {
        animation: none;
    }
    
    .fade-in {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .floating-pills .pill {
        animation: none;
    }
    
    .location-pin {
        animation: none;
    }
    
    .copyright-text .fa-heart {
        animation: none;
    }
    
    .testimonials-section::before {
        animation: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .widget-card {
        border: 2px solid var(--text-dark);
    }
    
    .widget-icon {
        border: 2px solid white;
    }
    
    .footer-section {
        border-top: 3px solid white;
    }
}

/* Print Styles */
@media print {
    .widget-cta,
    .btn-primary-custom,
    .btn-submit,
    .testimonial-controls,
    .social-links,
    .newsletter-form,
    .btn-newsletter,
    .btn-add-to-cart,
    .carousel-controls {
        display: none;
    }
    
    .widget-card,
    .product-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
    
    .testimonials-section,
    .contact-location-section,
    .footer-section {
        background: white !important;
        color: black !important;
    }
    
    .footer-section * {
        color: black !important;
    }
}

/* Pharmacy schedule & laboratory pages */
.pharmacy-schedule-page {
    background: linear-gradient(180deg, #fff9f1 0%, #ffffff 55%, #f1f8f4 100%);
}

.pharmacy-schedule-section .schedule-card,
.permanence-card,
.delivery-card,
.lab-hero-card,
.lab-service-card,
.lab-process-card,
.lab-tests-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(33, 77, 52, 0.1);
    border: 1px solid rgba(234, 238, 232, 0.9);
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(45, 90, 61, 0.12);
    font-weight: 500;
}

.schedule-list li:last-child {
    border-bottom: none;
}

.schedule-services {
    display: grid;
    gap: 8px;
}

.schedule-services span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(45, 90, 61, 0.08);
    color: var(--primary-green);
    font-size: 14px;
}

.schedule-services span i {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 90, 61, 0.12);
    color: var(--primary-green);
    font-size: 12px;
    margin-right: 10px;
}

.schedule-detail {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    color: var(--text-dark);
}

.schedule-detail-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 90, 61, 0.1);
    color: var(--primary-green);
    font-size: 18px;
    flex-shrink: 0;
}

.schedule-detail-text {
    font-weight: 600;
}

.schedule-contact-list {
    display: grid;
    gap: 10px;
    margin-bottom: 20px;
}

.schedule-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: 14px;
    background: rgba(45, 90, 61, 0.08);
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.schedule-contact-link:hover {
    background: rgba(45, 90, 61, 0.14);
    color: var(--primary-green);
    transform: translateY(-1px);
}

.schedule-contact-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(45, 90, 61, 0.12);
    color: var(--primary-green);
    font-size: 13px;
    flex-shrink: 0;
}

.pharmacy-insights {
    position: relative;
}

.pharmacy-insights::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: 0 16px;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(255, 226, 187, 0.22) 0%, rgba(202, 232, 210, 0.22) 100%);
    z-index: 0;
}

.pharmacy-insights .container {
    position: relative;
    z-index: 1;
}

.insight-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(74, 124, 89, 0.12);
    border: 1px solid rgba(226, 238, 228, 0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(74, 124, 89, 0.16);
}

.insight-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.insight-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.12) 0%, rgba(45, 90, 61, 0.2) 100%);
    display: grid;
    place-items: center;
    color: var(--primary-green);
    font-size: 22px;
    margin-bottom: 16px;
}

.insight-icon .icon-media {
    width: 28px;
    height: 28px;
}

.pharmacy-commitment-section {
    background: linear-gradient(180deg, rgba(202, 232, 210, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

.commitment-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 45px rgba(59, 110, 77, 0.14);
    border: 1px solid rgba(214, 229, 218, 0.9);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.commitment-card h3 {
    font-size: 22px;
    font-weight: 600;
}

.commitment-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(45, 90, 61, 0.1);
    color: var(--primary-green);
    display: grid;
    place-items: center;
    font-size: 26px;
}

.commitment-icon .icon-media {
    width: 32px;
    height: 32px;
}

.permanence-card h2,
.delivery-card h2,
.lab-process-card h2,
.lab-tests-card h2 {
    font-size: 30px;
    margin-bottom: 18px;
    font-weight: 700;
}

.permanence-benefits li,
.delivery-services li,
.lab-process-list li,
.lab-tests-list li,
.lab-partners-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-gray);
}

.permanence-benefits li i,
.permanence-benefits li .icon-media,
.delivery-services li i,
.delivery-services li .icon-media,
.lab-process-list li i,
.lab-tests-list li i,
.lab-partners-list li i {
    color: var(--primary-green);
    margin-top: 4px;
    flex-shrink: 0;
}

.permanence-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(45, 90, 61, 0.06);
    border: 1px solid rgba(234, 238, 232, 0.9);
}

.permanence-timing strong {
    display: block;
    font-size: 18px;
}

.permanence-timing span {
    color: var(--text-gray);
}

.delivery-grid {
    display: grid;
    gap: 18px;
    margin-bottom: 20px;
}

.delivery-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.delivery-item i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(45, 90, 61, 0.1);
    color: var(--primary-green);
    font-size: 18px;
}

.delivery-item .icon-media {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(45, 90, 61, 0.1);
    padding: 8px;
    display: block;
    flex-shrink: 0;
}

.delivery-item h5 {
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 600;
}

.lab-page {
    background: linear-gradient(180deg, #fffaf2 0%, #ffffff 52%, #f2f8f5 100%);
}

.lab-hero-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
}

.lab-highlights {
    position: relative;
}

.lab-highlights::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: 0 16px;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(255, 224, 200, 0.22) 0%, rgba(210, 234, 220, 0.22) 100%);
    z-index: 0;
}

.lab-highlights .container {
    position: relative;
    z-index: 1;
}

.lab-highlight-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 18px 44px rgba(45, 90, 61, 0.14);
    border: 1px solid rgba(220, 232, 224, 0.95);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lab-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 56px rgba(45, 90, 61, 0.18);
}

.lab-highlight-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.lab-highlight-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.14) 0%, rgba(45, 90, 61, 0.22) 100%);
    color: var(--primary-green);
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.lab-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 15px;
}

.lab-contact li i {
    color: var(--primary-green);
}

.lab-service-card {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lab-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(33, 77, 52, 0.16);
}

.lab-service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(45, 90, 61, 0.12);
    color: var(--primary-green);
    display: grid;
    place-items: center;
    font-size: 28px;
    margin: 0 auto 18px;
}

.lab-service-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.lab-step {
    display: flex;
    gap: 18px;
    padding: 20px 24px;
    border-radius: 20px;
    background: rgba(45, 90, 61, 0.07);
    border: 1px solid rgba(234, 238, 232, 0.9);
}

.lab-step-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(45, 90, 61, 0.12);
    color: var(--primary-green);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 18px;
}

.lab-tests-list li,
.lab-partners-list li {
    border-bottom: 1px dashed rgba(45, 90, 61, 0.12);
    padding: 10px 0;
}

.lab-tests-list li:last-child,
.lab-partners-list li:last-child {
    border-bottom: none;
}

.lab-tests-list li i,
.lab-partners-list li i {
    margin-right: 10px;
    color: var(--primary-green);
}

.lab-tests-card .badge {
    border-radius: 999px;
    padding: 8px 16px;
}

.lab-quality-section {
    background: linear-gradient(180deg, rgba(210, 234, 220, 0.22) 0%, rgba(255, 255, 255, 0) 100%);
}

.quality-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 32px;
    box-shadow: 0 20px 48px rgba(45, 90, 61, 0.16);
    border: 1px solid rgba(214, 229, 218, 0.9);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.quality-card h3 {
    font-size: 22px;
    font-weight: 600;
}

.quality-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(45, 90, 61, 0.12);
    color: var(--primary-green);
    display: grid;
    place-items: center;
    font-size: 28px;
}

.cta-card {
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.92) 0%, rgba(74, 124, 89, 0.88) 100%);
    border-radius: 26px;
    padding: 40px;
    color: #ffffff;
    box-shadow: 0 28px 60px rgba(45, 90, 61, 0.35);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cta-card h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-card p {
    font-size: 16px;
    opacity: 0.9;
}

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

@media (max-width: 767px) {
    .pharmacy-insights::before,
    .lab-highlights::before {
        margin: 0;
        border-radius: 24px;
    }

    .insight-card,
    .lab-highlight-card,
    .commitment-card,
    .quality-card {
        padding: 24px;
    }

    .commitment-card h3,
    .quality-card h3 {
        font-size: 20px;
    }
	.header-logo__name {
		    font-size: 1.1rem;
			text-transform: uppercase;
	}
	.header-logo {
		gap: 0rem;
	}
    .header-logo__tagline {
        font-size: 0.60rem;
		text-align: right;
    }
	.header-logo__img {
        height: 195px;
        margin: 0 auto;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        z-index: 999999;
        background: #ffffff;
		border-bottom-left-radius: 99px;
		border-bottom-right-radius: 99px;
		/** border: 2px solid #c8a34e;
		box-shadow: 0 4px 12px rgba(0,0,0,0.15);**/
    }
	
	.container .logo_bg {
		height: 155px;
		margin: 0 auto;
		position: absolute;
		top: 36px;
		left: 15px;
		z-index: 1;
		background: #ffffff;
		border-bottom-left-radius: 99px;
		border-bottom-right-radius: 99px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
		overflow: hidden;
		width: 110px;
		margin-left: 15px;
	}
	.header-main__search{
		width: 65%;
		justify-self: end;
		overflow: hidden;
	}
	.ms-110_mob{
		margin-left: 0px!IMPORTANT;
	}
	.header-logo__text{
		text-align: right;
	}
	
}

.contact-form-feedback {
    display: none;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.contact-form-feedback.is-visible {
    display: block;
}

.floating-call-button,
.scroll-to-top-btn {
    position: fixed;
    bottom: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--primary-green, #2d5a3d);
    box-shadow: 0 12px 30px rgba(45, 90, 61, 0.25);
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 1200;
}

.floating-call-button {
    left: 1.25rem;
    background: linear-gradient(135deg, #2d5a3d, #1f7a4d);
    text-decoration: none;
}

.floating-call-button span {
    display: none;
}

.floating-call-button.is-visible,
.scroll-to-top-btn.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-to-top-btn {
    right: 1.25rem;
    background: linear-gradient(135deg, #2d5a3d, #174d33);
    border: none;
}

.scroll-to-top-btn:hover,
.floating-call-button:hover {
    transform: translateY(-4px);
    color: #ffffff;
}

.scroll-to-top-btn i,
.floating-call-button i {
    font-size: 1.2rem;
}

@media (min-width: 992px) {
    .floating-call-button,
    .scroll-to-top-btn {
        width: 64px;
        height: 64px;
    }

    .floating-call-button {
        width: auto;
        padding: 0 1.25rem;
        border-radius: 999px;
        gap: 0.35rem;
    }

    .floating-call-button span {
        display: inline;
        margin-left: 0.5rem;
        font-size: 0.85rem;
        font-weight: 600;
    }

}

.container .logo_bg {
    height: 155px;
    margin: 0 auto;
    position: absolute;
    top: 36px;
    z-index: 1;
    background: #ffffff;
    border-bottom-left-radius: 99px;
    border-bottom-right-radius: 99px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.container .logo_bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2px; /* grosimea "borderului" */
    background: linear-gradient(to bottom, #2d5a3d, #c8a34e);
    border-bottom-left-radius: 99px;
    border-bottom-right-radius: 99px;
    z-index: -1;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.header-logo__img {
    height: 150px;
    width: auto;
    display: block;
}
.ms-110{
	margin-left: 110px!IMPORTANT;
}
.ms-110_mob{
		margin-left: 110px;
}