/*
 * RK Lifecare - Global Styles
 *
 * This stylesheet defines the visual theme for the entire site:
 * - Base typography and layout helpers.
 * - Header, navigation and footer styling.
 * - Home page hero, sections and cards.
 * - Reusable utilities (buttons, grids, badges).
 *
 * The design is intentionally simple, clean and responsive,
 * so it works well on desktop and mobile.
 */

/* ========== Reset & Base ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, sans-serif;
    color: #1f2933;
    background: #f5f7fb;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ========== Header & Navigation ========== */
.site-header {
    background: #fff;
    border-bottom: 1px solid #e5e7f0;
    position: sticky;
    top: 0;
    z-index: 50;
}

ul {
    list-style: disc;      /* bullet type */
    padding-left: 20px;    /* left space */
    margin-left: 10px;
}

ul li {
    display: list-item;    /* ensure bullet visible */
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 12px;
}

.logo-block {
    display: block;
}

.logo-img {
    height: 38px;
    width: auto;
    display: block;
}

/* Compact contact: one line, desktop only on small screens we hide */
.header-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.header-contact__link {
    color: #111827;
    font-weight: 500;
    text-decoration: none;
}

.header-contact__link:hover {
    color: #003a01;
}

.header-contact__sep {
    color: #9ca3af;
    font-weight: 300;
}

/* Social icons (Settings: Facebook, X, Instagram, LinkedIn, YouTube, WhatsApp) */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 1;
    flex-wrap: wrap;
    min-width: 0;
}

.header-social {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.header-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #475569;
    background: #f1f5f9;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s, background 0.2s, transform 0.2s;
}

.header-social__link:hover {
    color: #003a01;
    background: #e0f2fe;
    transform: translateY(-1px);
}

.header-social__link .fa-whatsapp {
    color: #25d366;
}

.header-social__link:hover .fa-whatsapp {
    color: #128c7e;
}

/* Twitter / X: brand colour (fa-brands fa-twitter) */
.header-social__link .fa-twitter {
    color: #1d9bf0;
}

.header-social__link:hover .fa-twitter {
    color: #0d8ed9;
}

/* Hamburger: hidden on desktop, shown on mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid #e5e7f0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: background 0.2s;
}

.nav-toggle:hover {
    background: #f3f4f6;
}

.nav-toggle__line {
    display: block;
    width: 100%;
    height: 2px;
    background: #374151;
    border-radius: 1px;
    transition: none;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Fixed height so submenu hover never changes header/nav height */
.main-nav {
    background: #013a01;
    min-height: 44px;
    overflow: visible;
}

.nav-inner {
    display: flex;
    align-items: center;
    padding: 10px 0;
    min-height: 44px;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 4px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item--cta {
    margin-left: auto;
}

.nav-link {
    color: #e5e7eb;
    font-size: 14px;
    padding: 6px 12px;
    position: relative;
    display: inline-block;
}

.nav-link:focus {
    outline: none;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #00e0ff;
}

.nav-link:hover::after {
    width: calc(100% - 24px);
}

.nav-arrow {
    display: inline-block;
    margin-left: 4px;
    font-size: 10px;
    line-height: 1;
}

/* Parent link for dropdown: same style as normal nav-link (no arrow) */
.nav-link--toggle::after {
    content: "";
    display: none;
}

/* Simple dropdown: nav bottom se chipka, bina gap ke */
.nav-submenu {
    list-style: none;
    margin: 0;
    padding: 4px 0;
    min-width: 220px;
    background: #fff;
    border: 1px solid #e5e7eb;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
}

/* Invisible bridge: menu aur submenu ke beech gap pe bhi hover rahe, submenu gayab na ho */
.nav-item--has-submenu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
}

.nav-item--has-submenu:hover .nav-submenu,
.nav-item--open .nav-submenu {
    opacity: 1;
    visibility: visible;
}

.nav-submenu__link {
    display: block;
    padding: 8px 16px;
    font-size: 14px;
    color: #374151;
    white-space: nowrap;
}

.nav-submenu__link:hover {
    background: #f3f4f6;
    color: #111827;
}

.nav-link-cta {
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00e0ff, #38bdf8);
    color: #0b1324;
    font-weight: 600;
}

.nav-link-cta::after {
    display: none;
}

/* ========== Hero Section ========== */
.hero {
    background: radial-gradient(circle at top left, #00e0ff22, transparent 60%),
                radial-gradient(circle at bottom right, #38bdf822, transparent 55%),
                #020617;
    color: #ffffff;
    padding: 48px 0 56px;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.16);
    color: #a5f3fc;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    margin-top: 16px;
}

.hero-title span {
    color: #38bdf8;
}

.hero-text {
    margin-top: 14px;
    font-size: 14px;
    color: #e5e7eb;
}

.hero-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 10px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #38bdf8, #003a01);
    border: none;
    color: #022c22;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.btn-secondary {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: transparent;
    color: #e5e7eb;
    font-size: 14px;
}

.hero-highlight {
    margin-top: 18px;
    display: flex;
    gap: 14px;
    align-items: center;
    font-size: 12px;
    color: #a5b4fc;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
    font-size: 12px;
}

.hero-stat {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-stat strong {
    display: block;
    font-size: 16px;
}

.hero-visual {
    border-radius: 20px;
    padding: 16px 16px 18px;
    background: radial-gradient(circle at top left, #22c55e22, transparent 55%),
                radial-gradient(circle at bottom right, #38bdf822, transparent 55%),
                #020617;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.7);
}

.hero-visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 11px;
    color: #e5e7eb;
}

.hero-visual-pills {
    display: flex;
    gap: 8px;
}

.pill {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    border: 1px solid rgba(148, 163, 184, 0.6);
}

.pill--green {
    border-color: #22c55e;
    color: #bbf7d0;
}

.pill--blue {
    border-color: #38bdf8;
    color: #bae6fd;
}

.pill--amber {
    border-color: #fbbf24;
    color: #fef3c7;
}

.hero-visual-body {
    border-radius: 14px;
    padding: 16px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px dashed rgba(148, 163, 184, 0.6);
    font-size: 12px;
    color: #e5e7eb;
}

.hero-timeline {
    margin-top: 10px;
    border-top: 1px solid rgba(55, 65, 81, 0.7);
    padding-top: 10px;
    display: grid;
    gap: 8px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
}

.timeline-item span:nth-child(2) {
    color: #a5b4fc;
}

/* ========== Hero Slider (Home) ========== */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 480px;
}

.hero-slider__track {
    position: relative;
    width: 100%;
    min-height: 480px;
    background: #0f172a;
}

.hero-slider__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
    pointer-events: none;
    z-index: 0;
}

.hero-slider__slide--active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

/* Slide backgrounds: paths relative to css/ → ../assets/images/ (works on live root or subfolder) */
.hero-slider__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slider__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.45) 45%, rgba(15, 23, 42, 0.25) 100%);
    pointer-events: none;
}

/* First slide video: full-cover background, autoplay by default */
.hero-slider__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}
.hero-slider__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback colour if image URL 404; admin-uploaded images use inline style on .hero-slider__bg */
.hero-slider__bg--1 {
    background-color: #0c4a6e;
    background-image: url('../assets/images/slide1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider__bg--2 {
    background-color: #1e3a8a;
    background-image: url('../assets/images/slide2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider__bg--3 {
    background-color: #065f46;
    background-image: url('../assets/images/pharma-exporter.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slider__content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 48px 16px 56px;
    max-width: 600px;
}

.hero-slider__badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.2);
    border: 1px solid rgba(56, 189, 248, 0.5);
    color: #7dd3fc;
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-slider__title {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
}

.hero-slider__text {
    font-size: 14px;
    color: #e5e7eb;
    margin: 0 0 20px;
    line-height: 1.6;
}

.hero-slider__content .btn-primary {
    margin-top: 4px;
}

/* Prev/Next buttons */
.hero-slider__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(15, 23, 42, 0.6);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.hero-slider__btn:hover {
    background: rgba(56, 189, 248, 0.4);
    border-color: #38bdf8;
}

.hero-slider__btn--prev {
    left: 12px;
}

.hero-slider__btn--next {
    right: 12px;
}

/* Dots */
.hero-slider__dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, border-color 0.2s;
}

.hero-slider__dot:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-slider__dot--active {
    background: #38bdf8;
    border-color: #38bdf8;
}

/* ========== Science-Driven / Global Impact (below hero slider) ========== */
/* Two-column white card: left = image + overlays, right = heading, list, CTA.
   Sits directly under hero with consistent spacing; no section below it. */
.science-impact {
    padding: 32px 0 56px;
    background: #f5f7fb;
}

.science-impact__container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Main card: white, rounded, shadow.
   Grid rows stretch so image + text columns share one height (align-items: stretch is default). */
.science-impact__card {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1), 0 8px 24px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

/* Left: image block with overlay text and mini card */
.science-impact__media {
    position: relative;
    min-height: 260px;
    overflow: hidden;
}

.science-impact__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 260px;
}

/* Overlay text on image (bottom-left) */
.science-impact__overlay-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    color: #fff;
}

.science-impact__overlay-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 6px;
}

.science-impact__overlay-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

/* Small overlay card (on image, bottom-left area) */
.science-impact__mini-card {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 80px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.science-impact__mini-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #003a01;
    color: #fff;
    border-radius: 12px;
}

.science-impact__mini-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px;
    line-height: 1.3;
}

.science-impact__mini-desc {
    font-size: 12px;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

/* Right column: content */
.science-impact__content {
    padding: 28px 24px 32px;
}

.science-impact__number {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 8px;
}

.science-impact__title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0 0 14px;
}

.science-impact__intro {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 20px;
}

.science-impact__list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
}

.science-impact__list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 12px;
}

.science-impact__list-item:last-child {
    margin-bottom: 0;
}

/* Checkmark in light grey circle */
.science-impact__check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    color: #0f172a;
    border-radius: 50%;
}

/* Learn More button: black, rounded */
.science-impact__btn {
    display: inline-block;
    padding: 12px 28px;
    background: #0f172a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25);
    transition: background 0.2s, transform 0.15s;
}

.science-impact__btn:hover {
    background: #1e293b;
    transform: translateY(-1px);
}

@media (min-width: 768px) {
    /* Narrower image column, wider text — same row height as before (grid stretch + shared min-heights). */
    .science-impact__card {
        grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    }
    .science-impact__media {
        min-height: 380px;
        height: 100%;
    }
    .science-impact__image {
        min-height: 380px;
        height: 100%;
    }
    .science-impact__mini-card {
        left: 20px;
        right: auto;
        max-width: 415px;
        bottom: 100px;
    }
    .science-impact__content {
        padding: 36px 32px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .science-impact__title {
        font-size: 24px;
    }
    .science-impact__intro {
        font-size: 15px;
    }
}

@media (min-width: 992px) {
    .science-impact {
        padding: 48px 0 64px;
    }
    .science-impact__card {
        grid-template-columns: minmax(0, 7fr) minmax(0, 13fr);
    }
    .science-impact__media {
        min-height: 420px;
    }
    .science-impact__image {
        min-height: 420px;
    }
    .science-impact__overlay-title {
        font-size: 20px;
    }
    .science-impact__overlay-desc {
        font-size: 14px;
    }
    .science-impact__mini-card {
        bottom: 120px;
        padding: 18px 20px;
    }
    .science-impact__mini-title {
        font-size: 15px;
    }
    .science-impact__mini-desc {
        font-size: 13px;
    }
    .science-impact__content {
        padding: 44px 40px 48px;
    }
    .science-impact__title {
        font-size: 26px;
    }
}

@media (min-width: 768px) {
    .hero-slider {
        min-height: 560px;
    }
    .hero-slider__track {
        min-height: 560px;
    }
    .hero-slider__slide {
        min-height: 560px;
    }
    .hero-slider__title {
        font-size: 32px;
    }
    .hero-slider__content {
        padding: 56px 16px 64px;
    }
}

/* ========== Welcome Intro (below banner) ========== */
.welcome-intro {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 48px 0 56px;
    position: relative;
    overflow: hidden;
}

/* Subtle edge highlight for depth */
.welcome-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #38bdf8, #003a01, transparent);
    opacity: 0.6;
}

.welcome-intro__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

.welcome-intro__content {
    animation: welcomeFadeIn 0.7s ease-out;
}

.welcome-intro__kicker {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #003a01;
    font-weight: 600;
    margin-bottom: 8px;
}

.welcome-intro__title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0 0 14px;
}

.welcome-intro__text {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 18px;
}

.welcome-intro__link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #003a01;
    transition: color 0.2s, transform 0.2s;
}

.welcome-intro__link:hover {
    color: #0284c7;
    transform: translateX(4px);
}

/* Image block with shadow and rounded corners */
.welcome-intro__image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 8px 20px rgba(15, 23, 42, 0.08);
    animation: welcomeFadeIn 0.7s ease-out 0.15s both;
}

.welcome-intro__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

.welcome-intro__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 220px;
    background: #e2e8f0;
}

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

@media (min-width: 768px) {
    .welcome-intro__inner {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        padding: 0 24px;
    }
    .welcome-intro__title {
        font-size: 26px;
    }
    .welcome-intro__text {
        font-size: 15px;
    }
    .welcome-intro__image {
        min-height: 280px;
    }
}

@media (min-width: 992px) {
    .welcome-intro {
        padding: 56px 0 64px;
    }
    .welcome-intro__inner {
        gap: 56px;
    }
    .welcome-intro__title {
        font-size: 28px;
    }
}

/* ========== Facts & Figures ========== */
.facts-figures {
    background: linear-gradient(135deg, #27d366 0%, #003a01 50%, #005f00 100%);
    color: #fff;
    padding: 56px 0 64px;
}

.facts-figures__header {
    text-align: center;
    margin-bottom: 40px;
}

.facts-figures__title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #fff;
    letter-spacing: 0.02em;
}

.facts-figures__subtitle {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
    letter-spacing: 0.04em;
}

.facts-figures__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
}

.facts-figures__item {
    text-align: center;
    padding: 28px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.facts-figures__item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.facts-figures__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    flex-shrink: 0;
}

.facts-figures__icon svg {
    width: 28px;
    height: 28px;
}

.facts-figures__value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    line-height: 1;
}

.facts-figures__number {
    display: inline-block;
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    min-width: 1.1em;
    text-align: right;
}

.facts-figures__suffix {
    font-size: 28px;
    font-weight: 700;
    color: #38bdf8;
}

.facts-figures__label {
    font-size: 12px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

@media (min-width: 768px) {
    .facts-figures {
        padding: 64px 0 72px;
    }
    .facts-figures__header {
        margin-bottom: 48px;
    }
    .facts-figures__title {
        font-size: 30px;
    }
    .facts-figures__subtitle {
        font-size: 15px;
    }
    .facts-figures__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
    .facts-figures__item {
        padding: 32px 24px;
        gap: 14px;
    }
    .facts-figures__icon {
        width: 64px;
        height: 64px;
    }
    .facts-figures__icon svg {
        width: 32px;
        height: 32px;
    }
    .facts-figures__number {
        font-size: 44px;
    }
    .facts-figures__suffix {
        font-size: 32px;
    }
    .facts-figures__label {
        font-size: 11px;
    }
}

/* ========== Certifications (logos) ========== */
.certifications-section {
    padding: 48px 0 56px;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}

.certifications-section__header {
    text-align: center;
    max-width: 1160px;
    margin: 0 auto 36px;
}

.certifications-section__title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
}

.certifications-section__intro {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.certifications-section__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    align-items: center;
}

.certifications-section__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.certifications-section__item:hover {
    border-color: #38bdf8;
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.08);
}

.certifications-section__logo-wrap {
    width: 100%;
    max-width: 140px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
}

.certifications-section__logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.certifications-section__label {
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-align: center;
}

@media (min-width: 768px) {
    .certifications-section {
        padding: 56px 0 64px;
    }
    .certifications-section__title {
        font-size: 24px;
    }
    .certifications-section__intro {
        font-size: 15px;
    }
    .certifications-section__header {
        margin-bottom: 40px;
    }
    .certifications-section__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    .certifications-section__item {
        padding: 28px 20px;
    }
    .certifications-section__logo-wrap {
        max-width: 160px;
        height: 100px;
    }
}

/* ========== Why Choose RK Lifecare? ========== */
/* Background: why-choose-us.jpg with dark overlay so text stays readable */
.why-choose-section {
    padding: 48px 0 56px;
    background-color: #0b1b3a;
    background-image: linear-gradient(180deg, rgb(10 54 11) 0%, rgb(0 58 1 / 60%) 100%), url(../assets/images/why-choose-us.jpg);
    background-size: 100% 100%, cover;
    background-position: 0 0, center;
    background-repeat: no-repeat, no-repeat;
    color: #fff;
}

.why-choose-section__header {
    text-align: center;
    max-width: 1160px;
    margin: 0 auto 36px;
}

.why-choose-section__title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.why-choose-section__intro {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.why-choose-section__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.why-choose-section__item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.why-choose-section__item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(56, 189, 248, 0.4);
    transform: translateY(-2px);
}

.why-choose-section__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8;
    margin-bottom: 14px;
}

.why-choose-section__icon svg {
    width: 26px;
    height: 26px;
}

.why-choose-section__item-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.why-choose-section__item-text {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 768px) {
    .why-choose-section {
        padding: 56px 0 64px;
    }
    .why-choose-section__title {
        font-size: 26px;
    }
    .why-choose-section__intro {
        font-size: 15px;
    }
    .why-choose-section__header {
        margin-bottom: 40px;
    }
    .why-choose-section__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .why-choose-section__item {
        padding: 28px;
    }
}

@media (min-width: 992px) {
    .why-choose-section__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* ========== Testimonials section (below FAQ) ========== */
.testimonials-section {
    padding: 48px 0 56px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 55%);
    border-top: 1px solid #e2e8f0;
}

.testimonials-section__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
}

.testimonials-section__title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.testimonials-section__intro {
    font-size: 14px;
    color: #475569;
    margin: 0;
    line-height: 1.55;
}

/* Testimonials: static = always 3 columns (≤3 items); scroll = row + prev/next (>3 items) */
.testimonials-carousel {
    position: relative;
    padding: 0 48px;
}

.testimonials-carousel__viewport {
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Scroll mode: transparent hit-area se bhi click nav tak na atke — cards par hi events */
.testimonials-carousel--scroll .testimonials-carousel__viewport {
    pointer-events: none;
}

.testimonials-carousel--scroll .testimonials-carousel__track,
.testimonials-carousel--scroll .testimonials-carousel__cell,
.testimonials-carousel--scroll .testimonial-card {
    pointer-events: auto;
}

/* ≤3 testimonials: CSS grid — always three boxes in one row on desktop */
.testimonials-carousel--static .testimonials-carousel__viewport {
    overflow: visible;
}

.testimonials-carousel--static .testimonials-carousel__track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    transform: none !important;
}

.testimonials-carousel--static .testimonials-carousel__cell {
    min-width: 0;
}

/* One testimonial: centre one card instead of leaving two empty columns */
.testimonials-carousel--static .testimonials-carousel__track:has(.testimonials-carousel__cell:only-child) {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991px) {
    .testimonials-carousel--static .testimonials-carousel__track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .testimonials-carousel--static .testimonials-carousel__track {
        grid-template-columns: 1fr;
    }
}

/* >3 testimonials: horizontal track, JS sets cell width (3 visible on desktop) */
.testimonials-carousel--scroll .testimonials-carousel__viewport {
    overflow: hidden;
}

.testimonials-carousel--scroll .testimonials-carousel__track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonials-carousel--scroll .testimonials-carousel__cell {
    flex-shrink: 0;
    min-width: 0;
}

.testimonials-carousel__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    pointer-events: auto;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.testimonials-carousel__nav:hover:not(:disabled) {
    background: #003a01;
    color: #fff;
    border-color: #003a01;
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
}

.testimonials-carousel__nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.testimonials-carousel__nav--prev {
    left: 0;
}

.testimonials-carousel__nav--next {
    right: 0;
}

.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #003a01;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    min-height: 0;
    min-width: 0;
}

.testimonial-card:hover {
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.testimonial-card__stars {
    margin: 0 0 14px;
    font-size: 15px;
    color: #f59e0b;
    letter-spacing: 3px;
    line-height: 1;
}

.testimonial-card__quote {
    font-size: 15px;
    color: #334155;
    line-height: 1.7;
    margin: 0 0 18px;
    font-style: normal;
    flex: 1;
    min-height: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-card__quote::before {
    content: '\201C';
    color: #003a01;
    font-size: 1.35em;
    line-height: 0;
    margin-right: 2px;
    vertical-align: -0.15em;
}

.testimonial-card__quote::after {
    content: '\201D';
    color: #003a01;
    font-size: 1.35em;
    line-height: 0;
    margin-left: 2px;
    vertical-align: -0.15em;
}

.testimonial-card__author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: auto;
    padding-top: 4px;
    border-top: 1px solid #f1f5f9;
}

.testimonial-card__name {
    font-size: 15px;
    color: #0f172a;
    font-weight: 600;
}

.testimonial-card__meta {
    font-size: 13px;
    color: #64748b;
    line-height: 1.45;
}

@media (min-width: 992px) {
    .testimonials-section {
        padding: 56px 0 64px;
    }
    .testimonials-section__header {
        margin-bottom: 40px;
    }
    .testimonials-section__title {
        font-size: 28px;
    }
    .testimonials-section__intro {
        font-size: 15px;
    }
    .testimonial-card {
        padding: 28px;
    }
    .testimonials-carousel {
        padding: 0 52px;
    }
}

/* ========== Contact Us section ========== */
.contact-section {
    padding: 48px 0 56px;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}

.contact-section__header {
    text-align: center;
    margin-bottom: 36px;
}

.contact-section__title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
}

.contact-section__intro {
    font-size: 14px;
    color: #475569;
    margin: 0;
}

.contact-section__grid {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
}

.contact-section__info {
    padding: 0;
}

.contact-section__subtitle {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.contact-section__text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 24px;
}

.contact-section__item {
    margin-bottom: 20px;
}

.contact-section__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-section__item-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0284c7;
    flex-shrink: 0;
}

.contact-section__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 4px;
}

.contact-section__value {
    font-size: 14px;
    color: #0f172a;
    line-height: 1.6;
    margin: 0;
}

.contact-section__value a {
    color: #003a01;
    font-weight: 500;
}

.contact-section__value a:hover {
    text-decoration: underline;
}

.contact-section__btn {
    display: inline-block;
    margin-top: 12px;
    padding: 12px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #003a01, #27d366);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-section__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.35);
}

.contact-section__map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
    min-height: 260px;
}

.contact-section__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 260px;
}

@media (min-width: 768px) {
    .contact-section {
        padding: 56px 0 64px;
    }
    .contact-section__title {
        font-size: 26px;
    }
    .contact-section__intro {
        font-size: 15px;
    }
    .contact-section__header {
        margin-bottom: 40px;
    }
    .contact-section__grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
        gap: 14px;
        align-items: stretch;
    }
}

/* Contact page (/contact-us): details + form + map */
.contact-section--page .contact-section__grid--page {
    grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 992px) {
    .contact-section--page .contact-section__grid--page {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: start;
        /* Left column (details) ↔ form: tight; top block ↔ map: minimal row gap */
        column-gap: 12px;
        row-gap: 10px;
    }
    .contact-section--page .contact-section__map--page {
        grid-column: 1 / -1;
        min-height: 320px;
    }
}

.contact-page__alert {
    max-width: 720px;
    margin: 0 auto 24px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.contact-page__alert--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.contact-page__alert--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.contact-page__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.contact-page__input,
.contact-page__textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font-size: 15px;
    color: #0f172a;
    background: #fff;
    box-sizing: border-box;
}

.contact-page__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-page__input:focus,
.contact-page__textarea:focus {
    outline: none;
    border-color: #003a01;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
}

.contact-page__field {
    margin-bottom: 16px;
}

.contact-page__submit {
    margin-top: 8px;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========== Video section ========== */
.video-section {
    padding: 48px 0 56px;
    background: #f1f5f9;
}

.video-section__header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 32px;
}

.video-section__title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
}

.video-section__intro {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

.video-section__player-wrap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
    background: #0f172a;
}

/* 16:9 aspect ratio */
.video-section__player-wrap::before {
    content: '';
    display: block;
    padding-bottom: 56.25%;
}

.video-section__player,
.video-section__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-section__player {
    object-fit: cover;
}

@media (min-width: 768px) {
    .video-section {
        padding: 56px 0 64px;
    }
    .video-section__title {
        font-size: 26px;
    }
    .video-section__intro {
        font-size: 15px;
    }
    .video-section__header {
        margin-bottom: 40px;
    }
}

/* ========== Frequently Asked Questions ========== */
.faq-section {
    padding: 48px 0 56px;
    background: #f8fafc;
}

.faq-section__header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 32px;
}

.faq-section__title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
}

.faq-section__intro {
    font-size: 14px;
    color: #475569;
    margin: 0;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    border-color: #cbd5e1;
}

.faq-item--open {
    border-color: #38bdf8;
    box-shadow: 0 4px 16px rgba(56, 189, 248, 0.1);
}

.faq-item__q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.4;
}

.faq-item__q:hover {
    color: #003a01;
}

.faq-item__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f1f5f9;
    color: #475569;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.25s ease, background 0.2s, color 0.2s;
}

.faq-item--open .faq-item__icon {
    background: #003a01;
    color: #fff;
    transform: rotate(45deg);
}

.faq-item__a {
    padding: 0 20px 18px;
}

.faq-item__a p,
.faq-item__a .page-content {
    margin: 0;
    padding: 0 0 0 0;
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

.faq-item__a a {
    color: #003a01;
    font-weight: 500;
}

.faq-item__a a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .faq-section {
        padding: 56px 0 64px;
    }
    .faq-section__title {
        font-size: 26px;
    }
    .faq-section__intro {
        font-size: 15px;
    }
    .faq-section__header {
        margin-bottom: 40px;
    }
    .faq-item__q {
        padding: 20px 24px;
        font-size: 16px;
    }
    .faq-item__a {
        padding: 0 24px 20px;
    }
    .faq-item__a p,
    .faq-item__a .page-content {
        font-size: 15px;
    }
}

/* ========== Our Services (like rklifecare.com/delhi/) ========== */
.our-services {
    padding: 48px 0 56px;
    background: #ffffff;
}

.our-services__heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
}

.our-services__title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px;
}

.our-services__intro {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.our-services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.our-services__card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

/* Card image (downloaded images) */
.our-services__card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #e2e8f0;
}

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

.our-services__card > .our-services__card-title,
.our-services__card > .our-services__card-text,
.our-services__card > .our-services__link {
    padding-left: 24px;
    padding-right: 24px;
}

.our-services__card > .our-services__card-title {
    padding-top: 20px;
}

.our-services__card > .our-services__card-text {
    padding-bottom: 8px;
}

.our-services__card > .our-services__link {
    padding-bottom: 24px;
}

.our-services__card:hover {
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
    border-color: #38bdf8;
    transform: translateY(-2px);
}

.our-services__card-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
    line-height: 1.35;
}

.our-services__card-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 16px;
}

.our-services__link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #003a01;
    transition: color 0.2s, gap 0.2s;
}

.our-services__link:hover {
    color: #0284c7;
}

.our-services__link::after {
    content: '\2192';
    margin-left: 6px;
}

@media (min-width: 768px) {
    .our-services {
        padding: 56px 0 64px;
    }
    .our-services__title {
        font-size: 26px;
    }
    .our-services__intro {
        font-size: 15px;
    }
    .our-services__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .our-services__grid {
        gap: 24px;
    }
    .our-services__card-title {
        font-size: 18px;
    }
}

/* ========== Page Banner (inner pages: About, etc.) ========== */
.page-banner {
    background: linear-gradient(135deg, #0b1b3a 0%, #1e3a5f 100%);
    color: #fff;
    padding: 40px 0 44px;
}

.page-banner__inner {
    text-align: center;
}

.page-banner__title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.25;
}

.page-banner__lead {
    font-size: 15px;
    color: #e5e7eb;
    margin: 0;
}

@media (min-width: 768px) {
    .page-banner {
        padding: 48px 0 56px;
    }
    .page-banner__title {
        font-size: 32px;
    }
    .page-banner__lead {
        font-size: 16px;
    }
}

/* ========== Sub-banner (inner pages: breadcrumb + title strip) ========== */
.sub-banner {
    position: relative;
    color: #fff;
    padding: 32px 0 40px;
    overflow: hidden;
}

/* Optional background image with dark overlay */
.sub-banner__bg {
    position: absolute;
    inset: 0;
    background: url('../assets/images/Green-Bottles-in-Symmetrical-Arrangement.jpg') center/cover no-repeat;
}

.sub-banner__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(0 58 1) 0%, rgb(18 112 53) 100%);
}

/* Page featured image (Admin → Pages) replaces default stock photo behind title */
.sub-banner--has-featured .sub-banner__bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.sub-banner .container {
    position: relative;
    z-index: 1;
}

.sub-banner__breadcrumb {
    font-size: 13px;
    margin-bottom: 12px;
}

.sub-banner__breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
}

.sub-banner__breadcrumb a:hover {
    color: #003a01;
}

.sub-banner__sep {
    color: #64748b;
    margin: 0 6px;
}

.sub-banner__current {
    color: #e2e8f0;
    font-weight: 500;
}

.sub-banner__inner {
    text-align: center;
}

.sub-banner__title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 6px;
    line-height: 1.25;
}

.sub-banner__lead {
    font-size: 14px;
    color: #cbd5e1;
    margin: 0;
}

@media (min-width: 768px) {
    .sub-banner {
        padding: 40px 0 52px;
    }
    .sub-banner__breadcrumb {
        font-size: 14px;
        margin-bottom: 14px;
    }
    .sub-banner__title {
        font-size: 30px;
    }
    .sub-banner__lead {
        font-size: 15px;
    }
}

/* ========== About page: scroll reveal and effects (proper display) ========== */
.about-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.about-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.about-reveal-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.about-reveal-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== About page: intro (first section below sub-banner) ========== */
.about-intro {
    padding: 40px 0 56px;
    background: #f8fafc;
}

/* Single white card containing content + image for a clean “best view” */
.about-intro__card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), 0 8px 24px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.about-intro__card:hover {
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12), 0 12px 28px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

.about-intro__content {
    padding: 32px 24px 36px;
}

.about-intro__kicker {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #003a01;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-intro__title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 18px;
    line-height: 1.35;
}

.about-intro__text {
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
    margin: 0 0 14px;
}

.about-intro__btn {
    margin-top: 10px;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-intro__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
}

.about-intro__image-wrap {
    order: -1;
    border-radius: 0;
    overflow: hidden;
}

.about-intro__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 240px;
    transition: transform 0.5s ease;
}

.about-intro__card:hover .about-intro__image {
    transform: scale(1.03);
}

/* Mission & values section */
.about-values {
    padding: 56px 0 64px;
    background: #fff;
}

.about-values__header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px;
}

.about-values__kicker {
    display: block;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #003a01;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-values__title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
    line-height: 1.3;
}

.about-values__subtitle {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.about-values__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.about-values__card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.about-values__card:hover {
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
    border-color: #cbd5e1;
    transform: translateY(-4px);
}

.about-values__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.12);
    color: #003a01;
    border-radius: 14px;
    margin-bottom: 18px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.about-values__card:hover .about-values__icon {
    background: rgba(14, 165, 233, 0.2);
    transform: scale(1.08);
}

.about-values__card-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
    line-height: 1.3;
}

.about-values__card-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

/* Facility section */
.about-facility {
    padding: 56px 0 64px;
    background: #f8fafc;
}

.about-facility__header {
    text-align: center;
    margin-bottom: 36px;
}

.about-facility__kicker {
    display: block;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #003a01;
    font-weight: 600;
    margin-bottom: 8px;
}

.about-facility__title {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.about-facility__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.about-facility__card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.about-facility__card:hover {
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
    transform: translateY(-3px);
}

.about-facility__card:hover .about-facility__icon {
    background: rgba(14, 165, 233, 0.18);
    transform: scale(1.06);
}

.about-facility__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.1);
    color: #003a01;
    border-radius: 12px;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.about-facility__card-title {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}

.about-facility__address {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

@media (min-width: 768px) {
    .about-intro {
        padding: 48px 0 64px;
    }
    .about-intro__card {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    .about-intro__content {
        padding: 40px 36px 44px;
        order: 0;
    }
    .about-intro__image-wrap {
        order: 0;
    }
    .about-intro__title {
        font-size: 24px;
    }
    .about-intro__image {
        min-height: 320px;
    }
    .about-values__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
    .about-values__title {
        font-size: 26px;
    }
    .about-facility__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .about-facility__title {
        font-size: 26px;
    }
}

@media (min-width: 992px) {
    .about-intro__content {
        padding: 48px 44px 52px;
    }
    .about-intro__title {
        font-size: 26px;
    }
    .about-intro__image {
        min-height: 380px;
    }
}

/* ========== Contact page (contact info + form + map) ========== */
.contact-page {
    padding: 48px 0 56px;
    background: #f8fafc;
}

.contact-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-page__info {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.contact-page__subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 10px;
}

.contact-page__text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 24px;
}

.contact-page__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-page__item:last-child {
    margin-bottom: 0;
}

.contact-page__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.1);
    color: #003a01;
    border-radius: 10px;
}

.contact-page__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.contact-page__value {
    font-size: 14px;
    color: #0f172a;
    line-height: 1.6;
    margin: 0;
}

.contact-page__value a {
    color: #003a01;
    font-weight: 500;
}

.contact-page__value a:hover {
    text-decoration: underline;
}

/* Form block */
.contact-page__form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.contact-page__form-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 20px;
}

.contact-page__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-page__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-page__field .contact-page__label {
    margin-bottom: 0;
}

.contact-page__required {
    color: #dc2626;
}

.contact-page__input,
.contact-page__textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    color: #0f172a;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-page__input:focus,
.contact-page__textarea:focus {
    outline: none;
    border-color: #003a01;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.contact-page__input::placeholder,
.contact-page__textarea::placeholder {
    color: #94a3b8;
}

.contact-page__textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-page__submit {
    margin-top: 6px;
    padding: 12px 24px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-page__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.35);
}

/* Map */
.contact-page__map-wrap {
    margin-top: 0;
}

.contact-page__map-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px;
}

.contact-page__map {
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    background: #e2e8f0;
    border: 1px solid #e2e8f0;
}

.contact-page__map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (min-width: 768px) {
    .contact-page {
        padding: 56px 0 64px;
    }
    .contact-page__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 56px;
    }
    .contact-page__info,
    .contact-page__form-wrap {
        padding: 32px 28px;
    }
    .contact-page__map {
        height: 380px;
    }
}

@media (min-width: 992px) {
    .contact-page__grid {
        gap: 48px;
    }
    .contact-page__info,
    .contact-page__form-wrap {
        padding: 36px 32px;
    }
    .contact-page__subtitle,
    .contact-page__form-title {
        font-size: 22px;
    }
    .contact-page__map {
        height: 400px;
    }
}

/* ========== Section Layout ========== */
.section {
    padding: 40px 0;
}

.section--light {
    background: #ffffff;
}

.section--muted {
    background: #f3f4fb;
}

.section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 28px;
}

.section-kicker {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 4px;
}

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

.section-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
}

/* ========== Page with Sidebar (products list) ========== */
.page-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
}
.page-main { min-width: 0; }
.page-sidebar {
    position: sticky;
    top: 24px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}
.page-sidebar__title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #0f172a;
}
.page-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.page-sidebar__list li {
    margin-bottom: 8px;
}
.page-sidebar__list li:last-child { margin-bottom: 0; }
.page-sidebar__list a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s, color 0.2s;
}
.page-sidebar__list a:hover {
    background: #e2e8f0;
    color: #003a01;
}
@media (max-width: 768px) {
    .page-with-sidebar {
        grid-template-columns: 1fr;
    }
    .page-sidebar { position: static; }
}

/* ========== Cards & Grids ========== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

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

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

.card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7f0;
    padding: 18px 18px 20px;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.03);
}

.card-title {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 15px;
}

.card-text {
    font-size: 13px;
    color: #6b7280;
}

/* ========== Dynamic modules on pages ({{module:slug}}) ==========
 * Each column = card box; text + icons centered. Outer section stays flat.
 */
.page-module-section {
    --module-accent: #2563eb;
    --module-cols: 3;
    margin: 28px 0 32px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* Optional line above the main title: admin "Module name" when it differs from section title */
.page-module-header {
    margin: 0 0 18px;
    text-align: center;
}

.page-module-name {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--module-accent);
}

.page-module-heading {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0;
    padding: 0 0 10px;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.page-module-grid {
    display: grid;
    gap: 24px;
    padding: 0;
    grid-template-columns: repeat(var(--module-cols, 3), minmax(0, 1fr));
}

@media (max-width: 991px) {
    .page-module-grid {
        grid-template-columns: repeat(min(var(--module-cols, 3), 2), minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .page-module-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }
}

.page-module-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    border-top: 3px solid var(--module-accent);
    padding: 20px 16px 22px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
}

/* Image: full width of padded area, centered above text */
.page-module-card-img {
    position: relative;
    margin: 0 auto 14px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #f1f5f9;
}

.page-module-card-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center center;
    display: block;
}

.page-module-card-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    color: var(--module-accent);
}

.page-module-card-icon i {
    font-size: 26px;
    line-height: 1;
}

.page-module-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #0f172a;
    line-height: 1.35;
}

.page-module-card-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.page-module-card-number {
    display: block;
    margin-top: 10px;
    font-size: 22px;
    font-weight: 700;
    color: var(--module-accent);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.page-module-card-link {
    display: inline-block;
    align-self: center;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--module-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.page-module-card-link:hover {
    color: #0f172a;
}

.module-image-clickable {
    cursor: zoom-in;
}

body.module-image-viewer-open {
    overflow: hidden;
}

.module-image-viewer {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.module-image-viewer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.85);
}

.module-image-viewer__dialog {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.module-image-viewer__img {
    max-width: min(1000px, 90vw);
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.module-image-viewer__close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.module-image-viewer__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.module-image-viewer__nav--prev { left: 20px; }
.module-image-viewer__nav--next { right: 20px; }

.module-image-viewer__close:hover,
.module-image-viewer__nav:hover {
    background: rgba(255, 255, 255, 0.35);
}

@media (max-width: 767px) {
    .module-image-viewer__dialog { padding: 16px; }
    .module-image-viewer__nav { width: 40px; height: 40px; }
    .module-image-viewer__nav--prev { left: 8px; }
    .module-image-viewer__nav--next { right: 8px; }
    .module-image-viewer__close { top: 10px; right: 10px; }
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #eff6ff;
    color: #1d4ed8;
}

/* ========== FAQ (legacy: .faq-q / .faq-a for other pages) ========== */
.faq-q {
    font-weight: 600;
    font-size: 14px;
}

.faq-a {
    margin-top: 6px;
    font-size: 13px;
    color: #6b7280;
}

/* ========== Contact ========== */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 24px;
}

.contact-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 18px 20px;
    border: 1px solid #e5e7f0;
}

.contact-field {
    margin-bottom: 12px;
}

.contact-label {
    font-size: 13px;
    margin-bottom: 4px;
    display: block;
}

.contact-input,
.contact-textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 13px;
    outline: none;
}

.contact-textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: #003a01;
    box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.25);
}

.contact-note {
    font-size: 12px;
    color: #6b7280;
    margin-top: 6px;
}

.contact-details {
    font-size: 13px;
    color: #4b5563;
}

.contact-details strong {
    display: block;
    margin-bottom: 4px;
}

/* ========== Footer ========== */
.site-footer {
    background: #003a01;
    color: #e5e7eb;
    margin-top: 40px;
    /* Page content / global CSS kabhi body par text-align:center ho to footer inherit na kare (live issue) */
    text-align: left;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 24px;
    padding: 28px 0 20px;
    justify-items: start;
    text-align: left;
}

.footer-column {
    text-align: left;
    width: 100%;
    max-width: 100%;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: left;
}

.footer-text {
    font-size: 13px;
    color: #9ca3af;
    text-align: left;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.footer-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.08);
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-social__link:hover {
    background: rgba(14, 165, 233, 0.35);
    color: #fff;
    transform: translateY(-2px);
}

.footer-social__link .fa-whatsapp {
    color: #25d366;
}

.footer-social__link:hover .fa-whatsapp {
    color: #fff;
}

.footer-social__link .fa-twitter {
    color: #1d9bf0;
}

.footer-social__link:hover .fa-twitter {
    color: #fff;
}

.footer-links {
    text-align: left;
}

.footer-links li + li {
    margin-top: 4px;
}

.footer-links a {
    font-size: 13px;
    color: #e5e7eb;
}

.footer-links a:hover {
    color: #38bdf8;
}

.footer-bottom {
    border-top: 1px solid #111827;
    padding: 10px 0 14px;
    font-size: 12px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #9ca3af;
    text-align: left;
    flex-wrap: wrap;
    gap: 10px;
}

/* Fixed bottom-right WhatsApp — screen par chipka rehta hai (footer strip se alag) */
.whatsapp-fixed {
    position: fixed;
    right: max(18px, env(safe-area-inset-right, 0px));
    bottom: max(22px, env(safe-area-inset-bottom, 0px));
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: #fff !important;
    font-size: 28px;
    text-decoration: none;
    opacity: 0.48;
    transform: scale(0.9);
    filter: saturate(0.65);
    transition:
        opacity 0.55s ease,
        transform 0.55s cubic-bezier(0.34, 1.45, 0.64, 1),
        filter 0.55s ease,
        box-shadow 0.35s ease;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.35);
}

.whatsapp-fixed.whatsapp-fixed--active {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1);
    animation: wa-float-pulse 2.1s ease-in-out infinite;
    box-shadow:
        0 6px 24px rgba(37, 211, 102, 0.55),
        0 0 0 0 rgba(37, 211, 102, 0.45);
}

@keyframes wa-float-pulse {
    0%,
    100% {
        box-shadow:
            0 6px 22px rgba(37, 211, 102, 0.5),
            0 0 0 0 rgba(37, 211, 102, 0.35);
    }
    50% {
        box-shadow:
            0 8px 32px rgba(37, 211, 102, 0.72),
            0 0 0 12px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-fixed:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.65);
    color: #fff !important;
}

.whatsapp-fixed.whatsapp-fixed--active:hover {
    animation: none;
    transform: scale(1.12);
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-fixed {
        opacity: 1;
        transform: scale(1);
        filter: none;
    }

    .whatsapp-fixed.whatsapp-fixed--active {
        animation: none;
    }
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom-links a {
    color: #9ca3af;
}

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

@media (max-width: 540px) {
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========== Utilities ========== */
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-5 { margin-top: 20px; }

.text-center { text-align: center; }
.text-small { font-size: 12px; }
.text-muted { color: #6b7280; }

/* ========== Responsive ========== */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-visual {
        order: -1;
    }

    .contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-inner {
        grid-template-columns: minmax(0, 1fr);
        justify-items: start;
    }
}

/* ----- Mobile: header & nav (hamburger + drawer) ----- */
@media (max-width: 768px) {
    /* Header + footer: thodi zyada side padding taake corner se chipke na (notch / chhoti screen) */
    .site-header .container,
    .site-footer .container {
        padding-left: max(22px, env(safe-area-inset-left, 0px));
        padding-right: max(22px, env(safe-area-inset-right, 0px));
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .nav-toggle {
        display: flex;
    }

    .header-contact {
        display: none;
    }

    /* Social icons: narrow screens par logo / hamburger ke saath overlap avoid; links footer mein available */
    .header-social {
        display: none;
    }

    .main-nav {
        display: block;
        min-height: 0;
        max-height: 0;
        overflow: hidden;
        transition: none;
    }

    .main-nav.nav-open {
        max-height: 90vh;
        overflow-y: auto;
    }

    .main-nav .nav-inner {
        padding: 0;
        min-height: 0;
        max-width: none;
        width: 100%;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 12px 0 32px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        width: 100%;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-item--cta {
        margin-left: 0;
        margin-top: 8px;
    }

    /* Mobile: full width links; no arrow on normal items */
    .nav-link {
        display: block;
        padding: 14px 16px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Only submenu parent: text left, arrow right, full width */
    .nav-link--toggle {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 12px;
    }

    .nav-link--toggle .nav-arrow {
        margin-left: auto;
        flex-shrink: 0;
    }

    .nav-link-cta {
        text-align: center;
        margin: 0 16px;
    }

    /* Submenu: inline on mobile (no dropdown), always visible when parent open */
    .nav-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        margin: 0;
        padding: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.2);
    }

    .nav-item--open .nav-submenu {
        max-height: 300px;
        padding: 4px 0 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .nav-submenu__link {
        display: block;
        padding: 10px 16px 10px 32px;
        color: #e5e7eb;
    }

    .nav-submenu__link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
}

@media (max-width: 720px) {
    .header-inner {
        flex-direction: row;
        align-items: center;
    }

    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }

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

    .grid-4 {
        grid-template-columns: minmax(0, 1fr);
    }

    /* Products: mobile par 1 column */
    .products-grid-4 {
        grid-template-columns: minmax(0, 1fr) !important;
    }
}

/* Products grid: 4 columns desktop, 2 tablet, 1 mobile */
@media (min-width: 769px) {
    .products-grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .products-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

