/* =========================================================
   FRESHCARE - MAIN CSS
   ========================================================= */

:root {
    --primary: #1596a8;
    --primary-dark: #0d7180;
    --primary-light: #e8f7f9;

    --accent: #f5b942;

    --white: #ffffff;
    --black: #111827;

    --text: #374151;
    --text-light: #6b7280;

    --background: #ffffff;
    --background-soft: #f7fafb;

    --border: #e5e7eb;

    --shadow:
        0 15px 40px rgba(17, 24, 39, 0.08);

    --shadow-small:
        0 8px 25px rgba(17, 24, 39, 0.06);

    --radius: 12px;
    --container-width: 1200px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
button,
input,
textarea,
select {
    font-family: "Times New Roman", Times, serif;
}

body {
    font-size: 15px;
    line-height: 1.6;

    color: var(--text);
    background: var(--background);

    overflow-x: hidden;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
    line-height: 1.2;
    padding-bottom: 10px;
}

a {
    color: var(--primary);
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(
        var(--container-width),
        calc(100% - 80px)
    );

    margin: 0 auto;
}


/* =========================================================
   SECTION
========================================================= */

.section-padding {
    padding: 100px 0;
}

.section-header {
    max-width: 680px;

    margin: 0 auto 50px;

    text-align: center;
}

.section-subtitle {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--primary);

    font-size: 25px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.section-title {
    margin-bottom: 15px;

    font-size: 42px;
}

.section-description {
    color: var(--text-light);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   BUTTON
========================================================= */

.btn {
    min-height: 46px;

    padding: 0 22px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    border: 1px solid transparent;

    border-radius: 7px;

    font-size: 15px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);

    background: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);

    box-shadow:
        0 8px 20px rgba(21, 150, 168, 0.2);
}

.btn-outline {
    color: var(--primary);

    background: transparent;

    border-color: var(--primary);
}

.btn-outline:hover {
    color: var(--white);

    background: var(--primary);
}


/* =========================================================
   LOGIN
========================================================= */

.btn-login {
    min-height: 42px;

    padding: 0 17px;

    color: var(--primary);

    background: transparent;

    border: 1px solid var(--primary);

    border-radius: 7px;

    font-size: 14px;
}

.btn-login:hover {
    color: var(--white);

    background: var(--primary);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-small);
}

.navbar {
    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--white);

    background: var(--primary);

    border-radius: 10px;
}

.logo-text {
    color: var(--black);

    font-size: 25px;
    font-weight: 700;
}

.logo-text span {
    color: var(--primary);
}


/* =========================================================
   NAV
========================================================= */

.nav-wrapper {
    display: flex;

    align-items: center;

    justify-content: space-between;

    flex: 1;

    gap: 20px;
}

.nav-menu {
    display: flex;

    align-items: center;

    gap: 3px;

    margin-left: auto;
}

.nav-item {
    position: relative;
}

.nav-link {
    min-height: 42px;

    padding: 0 10px;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    color: var(--text);

    font-size: 15px;
    font-weight: 700;

    position: relative;

    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-item.active > .nav-link {
    color: var(--primary);
}


/* ACTIVE UNDERLINE */

.nav-item.active > .nav-link::after {
    content: "";

    position: absolute;

    left: 10px;
    right: 10px;
    bottom: 3px;

    height: 2px;

    background: var(--primary);

    border-radius: 5px;
}

.dropdown-arrow {
    font-size: 9px;

    transition: transform 0.3s ease;
}


/* =========================================================
   DROPDOWN
========================================================= */

.dropdown-menu {
    position: absolute;

    top: calc(100% - 5px);
    left: 0;

    width: 180px;

    padding: 8px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 10px;

    box-shadow: var(--shadow);

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: all 0.25s ease;

    z-index: 1100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu li a {
    display: block;

    padding: 10px 13px;

    color: var(--text);

    border-radius: 6px;

    font-size: 14px;
    font-weight: 600;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    color: var(--primary);

    background: var(--primary-light);
}


/* =========================================================
   NAV ACTIONS
========================================================= */

.nav-actions {
    display: flex;

    align-items: center;

    gap: 8px;
}

.icon-btn,
.rtl-btn {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--text);

    background: var(--background-soft);

    border: 1px solid var(--border);

    border-radius: 7px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.icon-btn:hover,
.rtl-btn:hover {
    color: var(--primary);

    border-color: var(--primary);
}

.rtl-btn {
    width: 42px;

    font-size: 12px;
    font-weight: 700;
}

.nav-book-btn {
    min-height: 42px;

    padding: 0 17px;

    font-size: 14px;
}


/* =========================================================
   MOBILE MENU
========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    color: var(--text);

    background: var(--background-soft);

    border: 1px solid var(--border);

    border-radius: 7px;

    cursor: pointer;

    font-size: 18px;
}


/* =========================================================
   HERO BANNER
========================================================= */

.hero-banner {
    position: relative;

    min-height: 680px;

    display: flex;

    align-items: center;

    overflow: hidden;
}

.hero-banner-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.hero-banner-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 22, 28, 0.84),
            rgba(8, 22, 28, 0.55),
            rgba(8, 22, 28, 0.18)
        );
}

.hero-banner .container {
    position: relative;

    z-index: 2;
}

.hero-banner-content {
    max-width: 700px;

    padding: 90px 0;
}

.hero-banner-subtitle {
    display: inline-block;

    margin-bottom: 15px;

    color: #a8edf3;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;
}

.hero-banner h1 {
    margin-bottom: 22px;

    color: var(--white);

    font-size: 64px;

    line-height: 1.05;
}

.hero-banner-content > p {
    max-width: 900px;

    margin-bottom: 30px;

    color: rgba(255,255,255,0.88);

    font-size: 17px;
    padding-right: 90px;

    line-height: 1.8;
    padding-left: 150px;
}

.hero-banner-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 28px;
}

.hero-light-btn {
    color: var(--white);

    background: rgba(255,255,255,0.12);

    border-color: rgba(255,255,255,0.5);

    backdrop-filter: blur(5px);
}

.hero-light-btn:hover {
    color: var(--primary);

    background: var(--white);
}

.hero-banner-features {
    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;

    color: var(--white);

    font-size: 14px;
}

.hero-banner-features span {
    display: flex;

    align-items: center;

    gap: 7px;
    color: white;
}

.hero-banner-features i {
    color: #8ee1e8;
}


/* =========================================================
   QUICK STATS
========================================================= */

.quick-stats {
    position: relative;

    margin-top: -55px;

    z-index: 5;
}

.stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 15px;

    box-shadow: var(--shadow);
}

.stat-item {
    min-height: 115px;

    padding: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--primary);

    background: var(--primary-light);

    border-radius: 10px;

    font-size: 18px;
}

.stat-item strong {
    display: block;

    color: var(--black);

    font-size: 23px;
}

.stat-item span {
    display: block;

    color: var(--text-light);

    font-size: 15px;
}


/* =========================================================
   TWO COLUMN
========================================================= */

.two-column-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 70px;
}

.section-image {
    position: relative;
}

.section-image > img {
    width: 100%;

    height: 500px;

    object-fit: cover;

    border-radius: 18px;

    box-shadow: var(--shadow-small);
}

.section-content {
    max-width: 560px;
}

.section-content > p {
    color: var(--text-light);

    line-height: 1.8;
    text-align: justify;
}

.image-experience {
    position: absolute;

    right: -20px;
    bottom: 25px;

    min-width: 160px;

    padding: 18px;

    display: flex;

    align-items: center;

    gap: 12px;

    background: var(--white);

    border-radius: 12px;

    box-shadow: var(--shadow);
}

.image-experience strong {
    color: var(--primary);

    font-size: 36px;
}

.image-experience span {
    color: var(--text);

    font-size: 13px;
    font-weight: 700;
}

.check-list {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    margin: 25px 0;
}

.check-list div {
    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--text);

    font-size: 14px;
    font-weight: 600;
}

.check-list i {
    color: var(--primary);
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: var(--background-soft);
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.service-card {
    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 12px;

    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow);
}

.service-card-image {
    height: 220px;

    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 23px;
}

.service-card-icon {
    width: 45px;
    height: 45px;

    margin-bottom: 14px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--primary);

    background: var(--primary-light);

    border-radius: 9px;
}

.service-card h3 {
    margin-bottom: 8px;

    font-size: 21px;
}

.service-card p {
    min-height: 52px;

    margin-bottom: 15px;

    color: var(--text-light);

    line-height: 1.7;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 700;
}

.text-link i {
    transition: transform 0.3s ease;
}

.text-link:hover i {
    transform: translateX(4px);
}

.center-button {
    margin-top: 40px;

    text-align: center;
}


/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
    background: var(--background);
}

.why-list {
    display: flex;

    flex-direction: column;

    gap: 20px;

    margin: 25px 0 0;
}

.why-item {
    display: flex;

    align-items: flex-start;

    gap: 15px;
}

.why-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--primary);

    background: var(--primary-light);

    border-radius: 9px;
}

.why-item h4 {
    margin-bottom: 4px;

    font-size: 18px;
}

.why-item p {
    margin: 0;

    color: var(--text-light);

    line-height: 1.7;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: var(--background-soft);
}

.process-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;
}

.process-card {
    position: relative;

    padding: 30px 22px;

    text-align: center;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 12px;

    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow-small);
}

.process-number {
    position: absolute;

    top: 14px;
    right: 17px;

    color: var(--primary-light);

    font-size: 34px;

    font-weight: 700;
}

.process-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--primary);

    background: var(--primary-light);

    border-radius: 50%;

    font-size: 21px;
}

.process-card h3 {
    margin-bottom: 8px;

    font-size: 19px;
}

.process-card p {
    margin: 0;

    color: var(--text-light);

    line-height: 1.7;
}


/* =========================================================
   PRICING
========================================================= */

.pricing-preview {
    background: var(--background);
}

.price-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    max-width: 1000px;

    margin: auto;
}

.price-card {
    position: relative;

    padding: 35px 28px;

    text-align: center;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 14px;

    box-shadow: var(--shadow-small);
}

.price-card.featured {
    border: 2px solid var(--primary);

    transform: translateY(-8px);
}

.popular-badge {
    position: absolute;

    top: -13px;
    left: 50%;

    transform: translateX(-50%);

    padding: 5px 13px;

    color: var(--white);

    background: var(--primary);

    border-radius: 20px;

    font-size: 11px;
    font-weight: 700;
}

.price-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 17px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--primary);

    background: var(--primary-light);

    border-radius: 50%;

    font-size: 21px;
}

.price-card h3 {
    margin-bottom: 10px;

    font-size: 22px;
}

.price {
    margin-bottom: 8px;

    color: var(--primary);

    font-size: 38px;
    font-weight: 700;
}

.price span {
    color: var(--text-light);

    font-size: 14px;
    font-weight: 400;
}

.price-card p {
    margin-bottom: 22px;

    color: var(--text-light);
}


/* =========================================================
   COVERAGE BANNER
========================================================= */

.coverage-banner {
    position: relative;

    min-height: 420px;

    display: flex;

    align-items: center;

    overflow: hidden;
}

.coverage-banner > img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.coverage-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 22, 28, 0.82),
            rgba(8, 22, 28, 0.35)
        );
}

.coverage-content {
    position: relative;

    z-index: 2;

    max-width: 600px;
}

.coverage-content h2 {
    margin-bottom: 15px;

    color: var(--primary);

    font-size: 44px;
}

.coverage-content p {
    margin-bottom: 25px;

    color: rgba(255,255,255,0.85);

    font-size: 16px;
}


/* =========================================================
   TESTIMONIALS
========================================================= */

.testimonials-section {
    background: var(--background-soft);
}

.testimonial-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.testimonial-card {
    padding: 28px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 12px;

    box-shadow: var(--shadow-small);
}

.testimonial-stars {
    margin-bottom: 15px;

    color: var(--accent);

    font-size: 13px;
}

.testimonial-card > p {
    min-height: 100px;

    color: var(--text);

    line-height: 1.8;

    font-style: italic;
}

.customer {
    display: flex;

    align-items: center;

    gap: 12px;

    padding-top: 15px;

    border-top: 1px solid var(--border);
}

.customer img {
    width: 45px;
    height: 45px;

    object-fit: cover;

    border-radius: 50%;
}

.customer strong {
    display: block;

    color: var(--black);

    font-size: 15px;
}

.customer span {
    display: block;

    color: var(--text-light);

    font-size: 12px;
}


/* =====================================================
   FINAL CTA
===================================================== */

.cta-section {
    padding: 80px 0;
    background: var(--background-soft);
}

.cta-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 55px 65px;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Decorative circles */

.cta-box::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -80px;
    top: -110px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.cta-box::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -70px;
    bottom: -100px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

/* CTA Content */

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.cta-content .section-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    color: #d8f8fb;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.cta-content h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
    font-weight: 700;
}

.cta-content p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.8;
}

/* CTA Action */

.cta-action {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    min-width: 190px;
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-note i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--primary);
    background: var(--white);
    border-radius: 50%;
    font-size: 17px;
}

.cta-note span {
    font-size: 13px;
    line-height: 1.6;
    font-weight: 500;
}

/* Button */

.cta-action .btn {
    min-height: 48px;
    padding: 0 22px;
    color: var(--primary);
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-action .btn:hover {
    color: var(--white);
    background: transparent;
    transform: translateY(-3px);
}

.cta-action .btn i {
    transition: transform 0.3s ease;
}

.cta-action .btn:hover i {
    transform: translateX(4px);
}


/* =====================================================
   DARK MODE
===================================================== */

body.dark-mode .cta-section {
    background: var(--background);
}

body.dark-mode .cta-box {
    background: linear-gradient(
        135deg,
        #126f7c,
        #0b4f5b
    );
}

body.dark-mode .cta-action .btn {
    color: #0d7180;
    background: #ffffff;
    border-color: #ffffff;
}

body.dark-mode .cta-action .btn:hover {
    color: #ffffff;
    background: transparent;
}


/* =====================================================
   RTL
===================================================== */

body.rtl .cta-box {
    flex-direction: row-reverse;
}

body.rtl .cta-action {
    align-items: flex-end;
}

body.rtl .cta-note {
    flex-direction: row-reverse;
}

body.rtl .cta-action .btn:hover i {
    transform: translateX(-4px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 900px) {

    .cta-section {
        padding: 65px 0;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 45px 40px;
        gap: 30px;
    }

    .cta-action {
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    body.rtl .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    body.rtl .cta-action {
        align-items: center;
    }
}


@media (max-width: 600px) {

    .cta-section {
        padding: 50px 0;
    }

    .cta-box {
        padding: 38px 25px;
        border-radius: 15px;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .cta-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .cta-action {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .cta-action .btn {
        width: 100%;
    }

    body.rtl .cta-action {
        width: 100%;
        align-items: flex-start;
    }
}


@media (max-width: 400px) {

    .cta-box {
        padding: 32px 20px;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-note i {
        width: 38px;
        height: 38px;
    }
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding: 70px 0 25px;

    color: #d1d5db;

    background: #101820;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr 1.2fr;

    gap: 45px;

    padding-bottom: 45px;

    border-bottom:
        1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text {
    color: var(--primary);
}

.footer-description {
    max-width: 320px;

    margin: 18px 0 20px;

    color: #9ca3af;

    line-height: 1.8;
}

.social-links {
    display: flex;

    gap: 9px;
}

.social-links a {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #d1d5db;

    background: rgba(255,255,255,0.08);

    border-radius: 7px;

    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--white);

    background: var(--primary);

    transform: translateY(-2px);
}

.footer-column h4 {
    margin-bottom: 18px;

    color: var(--primary);

    font-size: 17px;
}

.footer-column ul {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column ul li a {
    color: #9ca3af;

    font-size: 14px;

    transition: color 0.25s ease;
}

.footer-column ul li a:hover {
    color: var(--primary);
}

.contact-list {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.contact-list li {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #9ca3af;

    font-size: 14px;
}

.contact-list i {
    margin-top: 5px;

    color: var(--primary);
}

.footer-bottom {
    padding-top: 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.footer-bottom p {
    margin: 0;

    color: #9ca3af;

    font-size: 13px;
}


/* =========================================================
   FORMS
========================================================= */

input,
textarea,
select {
    width: 100%;

    padding: 12px 14px;

    color: var(--text);

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 7px;

    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(21,150,168,0.1);
}

textarea {
    min-height: 130px;

    resize: vertical;
}

label {
    display: block;

    margin-bottom: 7px;

    color: var(--black);

    font-weight: 700;
}


/* =========================================================
   1100px
========================================================= */

@media (max-width: 1100px) {

    .container {
        width: calc(100% - 50px);
    }

    .nav-link {
        padding: 0 6px;

        font-size: 14px;
    }

    .hero-banner h1 {
        font-size: 55px;
    }

    .two-column-grid {
        gap: 45px;
    }
}


/* =========================================================
   900px
========================================================= */

@media (max-width: 900px) {

    .container {
        width: calc(100% - 40px);
    }


    /* MOBILE NAV */

    .menu-toggle {
        display: flex;
    }

    .nav-wrapper {
        position: absolute;

        top: 70px;

        left: 20px;
        right: 20px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 15px;

        background: var(--white);

        border: 1px solid var(--border);

        border-radius: 12px;

        box-shadow: var(--shadow);
    }

    .navbar.menu-open .nav-wrapper {
        display: flex;
    }

    .nav-menu {
        width: 100%;

        flex-direction: column;

        align-items: stretch;

        margin: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;

        justify-content: space-between;

        min-height: 45px;
    }

    .nav-item.active > .nav-link::after {
        display: none;
    }


    /* MOBILE DROPDOWN */

    .dropdown-menu {
        position: static;

        display: none;

        width: 100%;

        margin: 3px 0 5px;

        padding: 5px;

        border: none;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        transform: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active:hover .dropdown-menu {
        display: block;
    }


    /* ACTIONS */

    .nav-actions {
        width: 100%;

        padding-top: 15px;

        margin-top: 10px;

        border-top: 1px solid var(--border);

        justify-content: flex-start;

        flex-wrap: wrap;
    }


    /* HERO */

    .hero-banner {
        min-height: 620px;
    }

    .hero-banner h1 {
        font-size: 48px;
    }

    .hero-banner-content {
        max-width: 650px;
    }


    /* STATS */

    .stats-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--border);
    }


    /* TWO COLUMN */

    .two-column-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .section-content {
        max-width: 100%;
    }

    .reverse-mobile .section-content {
        order: 2;
    }

    .reverse-mobile .section-image {
        order: 1;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* PROCESS */

    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* PRICING */

    .price-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .price-card.featured {
        transform: none;
    }


    /* TESTIMONIALS */

    .testimonial-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    /* CTA */

    .cta-box {
        padding: 50px 40px;

        flex-direction: column;

        align-items: flex-start;
    }
}


/* =========================================================
   600px
========================================================= */

@media (max-width: 600px) {

    .container {
        width: calc(100% - 30px);
    }

    .section-padding {
        padding: 65px 0;
    }

    .section-title {
        font-size: 34px;
    }


    /* HERO */

    .hero-banner {
        min-height: 620px;
    }

    .hero-banner h1 {
        font-size: 40px;
    }

    .hero-banner-content {
        padding: 70px 0;
    }

    .hero-banner-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-banner-buttons .btn {
        width: 100%;
    }

    .hero-banner-features {
        flex-direction: column;

        align-items: flex-start;

        gap: 10px;
    }


    /* STATS */

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;

        border-bottom: 1px solid var(--border);
    }

    .stat-item:last-child {
        border-bottom: none;
    }


    /* ABOUT */

    .section-image > img {
        height: 350px;
    }

    .image-experience {
        right: 10px;
    }


    /* CHECK LIST */

    .check-list {
        grid-template-columns: 1fr;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card-image {
        height: 220px;
    }


    /* PROCESS */

    .process-grid {
        grid-template-columns: 1fr;
    }


    /* PRICING */

    .price-grid {
        grid-template-columns: 1fr;
    }


    /* COVERAGE */

    .coverage-content h2 {
        font-size: 35px;
    }


    /* TESTIMONIALS */

    .testimonial-grid {
        grid-template-columns: 1fr;
    }


    /* CTA */

    .cta-section {
        padding: 60px 0;
    }

    .cta-box {
        padding: 40px 25px;
    }

    .cta-content h2 {
        font-size: 34px;
    }

    .cta-box > .btn {
        width: 100%;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;

        text-align: center;

        gap: 8px;
    }
}


/* =========================================================
   400px
========================================================= */

@media (max-width: 400px) {

    .container {
        width: calc(100% - 24px);
    }

    .hero-banner h1 {
        font-size: 34px;
    }

    .section-title {
        font-size: 30px;
    }

    .logo-text {
        font-size: 21px;
    }

    .logo-icon {
        width: 37px;
        height: 37px;
    }

    .nav-wrapper {
        left: 12px;
        right: 12px;
    }

    .hero-banner {
        min-height: 590px;
    }
}
/* =========================================================
   SCROLL ANIMATION
========================================================= */

html {
    scroll-behavior: smooth;
}

/* Normal reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.scroll-reveal.show {
    opacity: 1;
    transform: translateY(0);
}


/* Reveal from left */
.scroll-left {
    opacity: 0;
    transform: translateX(-55px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.scroll-left.show {
    opacity: 1;
    transform: translateX(0);
}


/* Reveal from right */
.scroll-right {
    opacity: 0;
    transform: translateX(55px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.scroll-right.show {
    opacity: 1;
    transform: translateX(0);
}


/* Scale reveal */
.scroll-scale {
    opacity: 0;
    transform: scale(0.92);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.scroll-scale.show {
    opacity: 1;
    transform: scale(1);
}


/* Stagger cards */
.scroll-stagger > * {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.scroll-stagger.show > * {
    opacity: 1;
    transform: translateY(0);
}

.scroll-stagger.show > *:nth-child(1) {
    transition-delay: 0.05s;
}

.scroll-stagger.show > *:nth-child(2) {
    transition-delay: 0.15s;
}

.scroll-stagger.show > *:nth-child(3) {
    transition-delay: 0.25s;
}

.scroll-stagger.show > *:nth-child(4) {
    transition-delay: 0.35s;
}

.scroll-stagger.show > *:nth-child(5) {
    transition-delay: 0.45s;
}

.scroll-stagger.show > *:nth-child(6) {
    transition-delay: 0.55s;
}


/* Small mobile adjustment */
@media (max-width: 600px) {

    .scroll-reveal {
        transform: translateY(30px);
    }

    .scroll-left {
        transform: translateX(-30px);
    }

    .scroll-right {
        transform: translateX(30px);
    }

    .scroll-scale {
        transform: scale(0.96);
    }
}


/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .scroll-reveal,
    .scroll-left,
    .scroll-right,
    .scroll-scale,
    .scroll-stagger > * {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* Hero Heading Always White */
body.dark-mode .hero-banner-content h1 {
    color: #ffffff;
}
.hero-banner {
    position: relative;
    min-height: 680px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;
}

.hero-banner-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.45);

    z-index: 1;
}

.hero-banner .container {
    position: relative;
    z-index: 2;

    width: 100%;
}

.hero-banner-content {
    position: relative;
    z-index: 3;

    max-width: 800px;
    margin: 0 auto;

    text-align: center;
}

.hero-banner-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.hero-banner-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}
/* =====================================================
   LAUNDRY CARE PROMISE
===================================================== */

.care-promise-section {
    background: var(--background-soft);
}

.care-promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.care-promise-card {
    padding: 32px 25px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
}

.care-promise-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.care-promise-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 50%;
    font-size: 21px;
}

.care-promise-card h3 {
    margin: 0 0 12px;
    color: var(--black);
    font-size: 18px;
}

.care-promise-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}


/* =====================================================
   GIVE YOUR TIME BACK
===================================================== */

.time-back-section {
    background: var(--background);
}

.time-back-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 75px;
}

.time-back-image {
    position: relative;
}

.time-back-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}

.time-back-badge {
    position: absolute;
    right: -25px;
    bottom: 30px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.time-back-badge > i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary);
    border-radius: 50%;
}

.time-back-badge strong {
    display: block;
    margin-bottom: 3px;
    color: var(--black);
    font-size: 14px;
}

.time-back-badge span {
    display: block;
    color: var(--text-light);
    font-size: 12px;
}

.time-back-content .section-title {
    max-width: 500px;
}

.time-back-content > p {
    max-width: 570px;
    color: var(--text-light);
    line-height: 1.8;
}

.time-back-list {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.time-back-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.time-back-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 8px;
}

.time-back-item h4 {
    margin: 0 0 4px;
    color: var(--black);
    font-size: 15px;
}

.time-back-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
}


/* =====================================================
   FAQ
===================================================== */

.faq-section {
    background: var(--background-soft);
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    min-height: 70px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    color: var(--black);
    font-size: 15px;
    font-weight: 600;
}

.faq-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 50%;
    font-size: 13px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 180px;
    padding: 0 22px 22px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}


/* =====================================================
   DARK MODE
===================================================== */

body.dark-mode .care-promise-card,
body.dark-mode .time-back-badge,
body.dark-mode .faq-item {
    background: #111c26;
}

body.dark-mode .time-back-badge strong,
body.dark-mode .care-promise-card h3,
body.dark-mode .time-back-item h4,
body.dark-mode .faq-question h3 {
    color: #f9fafb;
}


/* =====================================================
   RTL
===================================================== */

body.rtl .time-back-badge {
    right: auto;
    left: -25px;
}

body.rtl .time-back-item {
    flex-direction: row-reverse;
}

body.rtl .faq-question {
    flex-direction: row-reverse;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .care-promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .time-back-grid {
        gap: 45px;
    }

    .time-back-image img {
        height: 480px;
    }
}


@media (max-width: 900px) {

    .time-back-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .time-back-content {
        order: 1;
    }

    .time-back-image {
        order: 2;
    }

    .time-back-image img {
        height: 450px;
    }

    .time-back-badge {
        right: 20px;
    }

    body.rtl .time-back-badge {
        right: auto;
        left: 20px;
    }
}


@media (max-width: 600px) {

    .care-promise-grid {
        grid-template-columns: 1fr;
    }

    .care-promise-card {
        padding: 28px 22px;
    }

    .time-back-image img {
        height: 360px;
        border-radius: 14px;
    }

    .time-back-badge {
        right: 12px;
        bottom: 15px;
        padding: 12px 15px;
    }

    .time-back-badge > i {
        width: 36px;
        height: 36px;
    }

    .faq-question {
        min-height: 64px;
        padding: 15px 17px;
    }

    .faq-question h3 {
        font-size: 14px;
    }

    .faq-answer {
        padding-left: 17px;
        padding-right: 17px;
    }

    .faq-item.active .faq-answer {
        padding-left: 17px;
        padding-right: 17px;
        padding-bottom: 18px;
    }
}
/* =========================================================
   HOME 2 - UNIQUE DESIGN
========================================================= */


/* =========================================================
   PROBLEM SECTION
========================================================= */

.home2-problem-section {
    background: var(--background-soft);
}

.home2-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.home2-problem-card {
    position: relative;
    background: var(--white);
    padding: 40px 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: left;
    transition: 0.3s ease;
    overflow: hidden;
}

.home2-problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.home2-problem-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.5;
}

.home2-problem-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    font-size: 25px;
    margin-bottom: 25px;
}

.home2-problem-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--black);
}

.home2-problem-card p {
    color: var(--text-light);
    line-height: 1.8;
}


/* =========================================================
   WARDROBE SECTION
========================================================= */

.home2-wardrobe-section {
    background: var(--background);
}

.home2-wardrobe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 50px;
}

.home2-wardrobe-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.3s ease;
}

.home2-wardrobe-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.home2-wardrobe-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.home2-wardrobe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.home2-wardrobe-card:hover .home2-wardrobe-image img {
    transform: scale(1.08);
}

.home2-wardrobe-tag {
    position: absolute;
    left: 15px;
    bottom: 15px;
    padding: 7px 12px;
    background: var(--white);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 30px;
}

.home2-wardrobe-content {
    padding: 25px;
}

.home2-wardrobe-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--black);
}

.home2-wardrobe-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 18px;
}

.home2-wardrobe-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.home2-wardrobe-content a i {
    transition: 0.3s ease;
}

.home2-wardrobe-content a:hover i {
    transform: translateX(5px);
}


/* =========================================================
   CARE STANDARD
========================================================= */

.home2-care-section {
    background: var(--background-soft);
}

.home2-care-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.home2-care-header h2 {
    margin-top: 10px;
}

.home2-care-header > p {
    max-width: 450px;
    color: var(--text-light);
    line-height: 1.8;
}

.home2-care-track {
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.home2-care-step {
    flex: 1;
    position: relative;
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: 0.3s ease;
}

.home2-care-step:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.home2-care-step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
}

.home2-care-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 23px;
}

.home2-care-step h3 {
    margin-bottom: 10px;
    color: var(--black);
}

.home2-care-step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
}

.home2-care-line {
    width: 45px;
    height: 2px;
    background: var(--border);
    flex-shrink: 0;
}


/* =========================================================
   STANDARD SECTION
========================================================= */

.home2-standard-section {
    background: var(--background);
}

.home2-standard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.home2-standard-image {
    position: relative;
}

.home2-standard-image > img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: var(--radius);
}

.home2-standard-badge {
    position: absolute;
    right: -25px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 22px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.home2-standard-badge > i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    font-size: 20px;
}

.home2-standard-badge div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.home2-standard-badge strong {
    color: var(--black);
}

.home2-standard-badge span {
    color: var(--text-light);
    font-size: 12px;
}

.home2-standard-content h2 {
    margin: 10px 0 20px;
}

.home2-standard-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.home2-standard-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 35px;
}

.home2-standard-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.home2-standard-item > span {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    font-size: 13px;
}

.home2-standard-item h3 {
    font-size: 17px;
    margin-bottom: 5px;
    color: var(--black);
}

.home2-standard-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   ROUTINE SECTION
========================================================= */

.home2-routine-section {
    background: var(--background-soft);
}

.home2-routine-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 50px;
    padding: 45px 35px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-small);
}

.home2-routine-content {
    flex: 1;
    text-align: center;
    max-width: 280px;
}

.home2-routine-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    font-size: 25px;
}

.home2-routine-content h3 {
    margin-bottom: 10px;
    color: var(--black);
}

.home2-routine-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
}

.home2-routine-arrow {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 50%;
    flex-shrink: 0;
}


/* =========================================================
   FINAL CTA
========================================================= */

.home2-final-cta {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../images/lan-11.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.home2-final-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.home2-final-cta .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.home2-final-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.home2-final-content h2 {
    color: var(--white);
    font-size: 48px;
    margin: 10px 0 20px;
}

.home2-final-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}


/* =========================================================
   HOME 2 RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .home2-wardrobe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home2-standard-grid {
        gap: 40px;
    }

    .home2-standard-image > img {
        height: 500px;
    }

    .home2-care-track {
        flex-wrap: wrap;
        gap: 20px;
    }

    .home2-care-step {
        flex: 0 0 calc(50% - 10px);
    }

    .home2-care-line {
        display: none;
    }

}


@media (max-width: 900px) {

    .home2-problem-grid {
        grid-template-columns: 1fr;
    }

    .home2-standard-grid {
        grid-template-columns: 1fr;
    }

    .home2-standard-image > img {
        height: 450px;
    }

    .home2-standard-badge {
        right: 20px;
    }

    .home2-care-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .home2-routine-box {
        flex-direction: column;
    }

    .home2-routine-arrow {
        transform: rotate(90deg);
    }

}


@media (max-width: 600px) {

    .home2-wardrobe-grid {
        grid-template-columns: 1fr;
    }

    .home2-care-step {
        flex: 0 0 100%;
    }

    .home2-standard-image > img {
        height: 380px;
    }

    .home2-standard-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: -30px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .home2-final-cta {
        min-height: 400px;
    }

    .home2-final-content h2 {
        font-size: 34px;
    }

}


@media (max-width: 400px) {

    .home2-wardrobe-image {
        height: 220px;
    }

    .home2-problem-card {
        padding: 30px 22px;
    }

    .home2-routine-box {
        padding: 35px 20px;
    }

}
/* =========================================================
   HOME 2 UNIQUE DESIGN
========================================================= */


/* =========================================================
   PERSONALITY SECTION
========================================================= */

.h2-personality {
    background: var(--background);
}

.h2-personality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 50px;
}

.h2-personality-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.35s ease;
}

.h2-personality-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.h2-personality-image {
    height: 280px;
    overflow: hidden;
}

.h2-personality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.h2-personality-card:hover .h2-personality-image img {
    transform: scale(1.08);
}

.h2-personality-content {
    padding: 25px;
}

.h2-personality-content > span {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.h2-personality-content h3 {
    margin-bottom: 10px;
    color: var(--black);
    font-size: 20px;
}

.h2-personality-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
    text-align: justify;
}


/* =========================================================
   FABRIC SECTION
========================================================= */

.h2-fabric {
    background: var(--background-soft);
}

.h2-fabric-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.h2-fabric-content h2 {
    margin: 10px 0 20px;
}

.h2-fabric-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 15px;
    text-align: justify;
}

.h2-fabric-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.h2-fabric-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.h2-fabric-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
}

.h2-fabric-item h3 {
    font-size: 17px;
    margin-bottom: 5px;
    color: var(--black);
}

.h2-fabric-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.h2-fabric-visual {
    position: relative;
}

.h2-fabric-visual img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: var(--radius);
}

.h2-fabric-label {
    position: absolute;
    left: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--white);
    color: var(--black);
    border-radius: 30px;
    box-shadow: var(--shadow);
    font-weight: 700;
    font-size: 14px;
}

.h2-fabric-label i {
    color: var(--primary);
}


/* =========================================================
   STAIN SECTION
========================================================= */

.h2-stain {
    background: var(--background);
}

.h2-stain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.h2-stain-card {
    position: relative;
    padding: 35px 25px;
    background: var(--background-soft);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: 0.3s ease;
}

.h2-stain-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-small);
}

.h2-stain-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.h2-stain-card > i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    font-size: 23px;
    margin-bottom: 25px;
}

.h2-stain-card h3 {
    color: var(--black);
    font-size: 21px;
    margin-bottom: 12px;
}

.h2-stain-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FRESHNESS LAB
========================================================= */

.h2-lab {
    background: var(--background-soft);
}

.h2-lab-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.h2-lab-top h2 {
    margin-top: 10px;
}

.h2-lab-top > p {
    max-width: 470px;
    color: var(--text-light);
    line-height: 1.8;
    text-align: justify;
}

.h2-lab-track {
    display: flex;
    align-items: center;
    margin-top: 60px;
}

.h2-lab-step {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    position: relative;
    transition: 0.3s ease;
}

.h2-lab-step:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.h2-lab-circle {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    font-size: 25px;
}

.h2-lab-step > span {
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
}

.h2-lab-step h3 {
    margin: 7px 0 10px;
    color: var(--black);
}

.h2-lab-step p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

.h2-lab-connector {
    width: 40px;
    height: 2px;
    background: var(--border);
    flex-shrink: 0;
}


/* =========================================================
   GUIDE SECTION
========================================================= */

.h2-guide {
    background: var(--background);
}

.h2-guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.h2-guide-card {
    padding: 35px 25px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: 0.3s ease;
}

.h2-guide-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-small);
}

.h2-guide-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 23px;
}

.h2-guide-card h3 {
    color: var(--black);
    margin-bottom: 12px;
    font-size: 21px;
}

.h2-guide-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 20px;
}

.h2-guide-card > span {
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* =========================================================
   BEFORE / AFTER
========================================================= */

.h2-before-after {
    background: var(--background-soft);
}

.h2-before-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.h2-before-content h2 {
    margin: 10px 0 20px;
}

.h2-before-content > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
    text-align: justify;
}

.h2-before-points {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.h2-before-points div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.h2-before-points i {
    color: var(--primary);
}

.h2-before-points span {
    color: var(--text);
    font-weight: 600;
}

.h2-before-box {
    display: grid;
    grid-template-columns: 1fr 70px 1fr;
    align-items: center;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-small);
}

.h2-before-image {
    height: 390px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.h2-before-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h2-before-image > span {
    position: absolute;
    left: 15px;
    bottom: 15px;
    padding: 7px 12px;
    background: var(--white);
    color: var(--black);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.h2-before-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
}


/* =========================================================
   MYTH SECTION
========================================================= */

.h2-myths {
    background: var(--background);
}

.h2-myth-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.h2-myth-card {
    padding: 35px;
    background: var(--background-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.h2-myth-badge {
    display: inline-block;
    padding: 6px 12px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.h2-myth-card h3 {
    color: var(--black);
    font-size: 22px;
    line-height: 1.4;
}

.h2-myth-line {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin: 25px 0;
}

.h2-fact > span {
    display: block;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 7px;
}

.h2-fact p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   JOURNAL
========================================================= */

.h2-journal {
    background: var(--background-soft);
}

.h2-journal-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.h2-journal-heading h2 {
    margin-top: 10px;
}

.h2-journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.h2-journal-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: 0.3s ease;
}

.h2-journal-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.h2-journal-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.h2-journal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.h2-journal-card:hover .h2-journal-image img {
    transform: scale(1.06);
}

.h2-journal-image > span {
    position: absolute;
    left: 15px;
    bottom: 15px;
    padding: 7px 12px;
    background: var(--white);
    color: var(--primary);
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
}

.h2-journal-content {
    padding: 25px;
}

.h2-journal-content small {
    color: var(--primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.h2-journal-content h3 {
    margin: 10px 0 20px;
    color: var(--black);
    font-size: 20px;
    line-height: 1.4;
}

.h2-journal-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
}

.h2-journal-content a i {
    transition: 0.3s ease;
}

.h2-journal-content a:hover i {
    transform: translateX(5px);
}


/* =========================================================
   FINAL CTA
========================================================= */

.h2-final-cta {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../images/lan-11.png");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.h2-final-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.h2-final-cta .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.h2-final-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.h2-final-content h2 {
    color: var(--white);
    font-size: 50px;
    line-height: 1.15;
    margin: 12px 0 20px;
}

.h2-final-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
}


/* =========================================================
   HOME 2 RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .h2-personality-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .h2-stain-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .h2-guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .h2-fabric-grid {
        gap: 40px;
    }

    .h2-lab-track {
        flex-wrap: wrap;
        gap: 20px;
    }

    .h2-lab-step {
        flex: 0 0 calc(50% - 10px);
    }

    .h2-lab-connector {
        display: none;
    }

}


@media (max-width: 900px) {

    .h2-fabric-grid {
        grid-template-columns: 1fr;
    }

    .h2-fabric-visual {
        margin-top: 20px;
    }

    .h2-fabric-visual img {
        height: 450px;
    }

    .h2-lab-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .h2-before-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .h2-myth-grid {
        grid-template-columns: 1fr;
    }

    .h2-journal-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .h2-journal-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .h2-personality-grid {
        grid-template-columns: 1fr;
    }

    .h2-personality-image {
        height: 300px;
    }

    .h2-fabric-list {
        grid-template-columns: 1fr;
    }

    .h2-fabric-visual img {
        height: 380px;
    }

    .h2-stain-grid {
        grid-template-columns: 1fr;
    }

    .h2-guide-grid {
        grid-template-columns: 1fr;
    }

    .h2-lab-step {
        flex: 0 0 100%;
    }

    .h2-before-box {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .h2-before-image {
        height: 300px;
    }

    .h2-before-divider {
        transform: rotate(90deg);
        height: 40px;
    }

    .h2-final-cta {
        min-height: 420px;
    }

    .h2-final-content h2 {
        font-size: 35px;
    }

}


@media (max-width: 400px) {

    .h2-personality-content {
        padding: 20px;
    }

    .h2-stain-card {
        padding: 28px 20px;
    }

    .h2-guide-card {
        padding: 28px 20px;
    }

    .h2-myth-card {
        padding: 28px 22px;
    }

    .h2-journal-content {
        padding: 20px;
    }

}
.hero-banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
/* =========================================================
   FRESHCARE LAB - UNIQUE CURVED TIMELINE DESIGN
========================================================= */

.h2-lab {
    position: relative;
    overflow: hidden;
    background: #f8fcfd;
}

/* Decorative background */

.h2-lab::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -280px;
    left: -180px;
    border: 1px solid rgba(21, 150, 168, 0.08);
    border-radius: 50%;
}

.h2-lab::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    bottom: -220px;
    right: -150px;
    border: 1px solid rgba(21, 150, 168, 0.08);
    border-radius: 50%;
}


/* =========================================================
   TOP AREA
========================================================= */

.h2-lab-top {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    gap: 80px;
    margin-bottom: 90px;
}

.h2-lab-top > div {
    max-width: 600px;
}

.h2-lab-top h2 {
    margin-bottom: 0;
}

.h2-lab-top > p {
    max-width: 500px;
    margin: 0;

    color: var(--text-light);
    line-height: 1.9;
    font-size: 15px;
}


/* =========================================================
   MAIN TIMELINE
========================================================= */

.h2-lab-track {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 28px;
    align-items: stretch;
}


/* =========================================================
   REMOVE OLD CONNECTORS
========================================================= */

.h2-lab-connector {
    display: none;
}


/* =========================================================
   CURVED CARDS
========================================================= */

.h2-lab-step {
    position: relative;

    min-height: 390px;

    padding: 115px 30px 35px;

    background: #ffffff;

    border: 1px solid rgba(21, 150, 168, 0.12);

    border-radius: 50px 50px 18px 18px;

    box-shadow:
        0 15px 40px rgba(17, 24, 39, 0.06);

    overflow: hidden;

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease,
        border-color 0.5s ease;
}


/* Different card heights */

.h2-lab-step:nth-child(1) {
    transform: translateY(0);
}

.h2-lab-step:nth-child(3) {
    transform: translateY(35px);
}

.h2-lab-step:nth-child(5) {
    transform: translateY(0);
}

.h2-lab-step:nth-child(7) {
    transform: translateY(35px);
}


/* =========================================================
   LARGE BACKGROUND NUMBER
========================================================= */

.h2-lab-step > span {
    position: absolute;

    top: 18px;
    right: 25px;

    font-size: 76px;
    font-weight: 900;

    line-height: 1;

    color: rgba(21, 150, 168, 0.055);

    transition:
        transform 0.5s ease,
        color 0.5s ease;
}

.h2-lab-step:hover > span {
    transform: scale(1.15) rotate(-5deg);

    color: rgba(21, 150, 168, 0.12);
}


/* =========================================================
   TOP CURVE / GLOW
========================================================= */

.h2-lab-step::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    top: -105px;
    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background: var(--primary-light);

    transition:
        transform 0.5s ease,
        background 0.5s ease;
}

.h2-lab-step:hover::before {
    transform: translateX(-50%) scale(1.25);

    background: #dff5f7;
}


/* =========================================================
   BOTTOM DECORATION
========================================================= */

.h2-lab-step::after {
    content: "";

    position: absolute;

    width: 80px;
    height: 80px;

    right: -35px;
    bottom: -35px;

    border-radius: 50%;

    border: 12px solid rgba(21, 150, 168, 0.06);

    transition:
        transform 0.5s ease;
}

.h2-lab-step:hover::after {
    transform: scale(1.5);
}


/* =========================================================
   ICON
========================================================= */

.h2-lab-circle {
    position: absolute;

    z-index: 3;

    top: 35px;
    left: 50%;

    transform: translateX(-50%);

    width: 82px;
    height: 82px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 7px solid #e5f6f8;

    color: var(--primary);

    font-size: 27px;

    box-shadow:
        0 10px 30px rgba(21, 150, 168, 0.12);

    transition:
        transform 0.5s ease,
        background 0.5s ease,
        color 0.5s ease,
        border-color 0.5s ease;
}


/* Icon hover */

.h2-lab-step:hover .h2-lab-circle {
    transform: translateX(-50%) rotate(360deg);

    background: var(--primary);

    color: #ffffff;

    border-color: var(--primary);
}


/* =========================================================
   CONTENT
========================================================= */

.h2-lab-step h3 {
    position: relative;
    z-index: 4;

    margin: 0 0 15px;

    font-size: 23px;

    text-align: center;

    color: var(--black);

    transition:
        color 0.3s ease;
}

.h2-lab-step:hover h3 {
    color: var(--primary);
}

.h2-lab-step p {
    position: relative;
    z-index: 4;

    margin: 0;

    text-align: center;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   BOTTOM STEP LINE
========================================================= */

.h2-lab-step h3::after {
    content: "";

    display: block;

    width: 35px;
    height: 3px;

    margin: 14px auto 0;

    border-radius: 10px;

    background: var(--primary);

    transform: scaleX(0.4);

    transition:
        transform 0.4s ease;
}

.h2-lab-step:hover h3::after {
    transform: scaleX(1);
}


/* =========================================================
   FLOATING ANIMATION
========================================================= */

.h2-lab-step:nth-child(1) {
    animation: labCardFloat1 5s ease-in-out infinite;
}

.h2-lab-step:nth-child(3) {
    animation: labCardFloat2 5.5s ease-in-out infinite;
}

.h2-lab-step:nth-child(5) {
    animation: labCardFloat1 6s ease-in-out infinite;
}

.h2-lab-step:nth-child(7) {
    animation: labCardFloat2 5.8s ease-in-out infinite;
}


@keyframes labCardFloat1 {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -8px;
    }
}


@keyframes labCardFloat2 {

    0%,
    100% {
        margin-top: 35px;
    }

    50% {
        margin-top: 25px;
    }
}


/* =========================================================
   SCROLL REVEAL STAGGER
========================================================= */

.h2-lab-step:nth-child(1) {
    transition-delay: 0.05s;
}

.h2-lab-step:nth-child(3) {
    transition-delay: 0.15s;
}

.h2-lab-step:nth-child(5) {
    transition-delay: 0.25s;
}

.h2-lab-step:nth-child(7) {
    transition-delay: 0.35s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .h2-lab-top {
        flex-direction: column;
        align-items: flex-start;

        gap: 25px;
        margin-bottom: 60px;
    }

    .h2-lab-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .h2-lab-step:nth-child(1),
    .h2-lab-step:nth-child(3),
    .h2-lab-step:nth-child(5),
    .h2-lab-step:nth-child(7) {
        margin-top: 0;
    }

    .h2-lab-step:nth-child(3),
    .h2-lab-step:nth-child(7) {
        transform: translateY(25px);
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .h2-lab-top {
        margin-bottom: 45px;
    }

    .h2-lab-top > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .h2-lab-track {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .h2-lab-step,
    .h2-lab-step:nth-child(1),
    .h2-lab-step:nth-child(3),
    .h2-lab-step:nth-child(5),
    .h2-lab-step:nth-child(7) {
        min-height: 330px;

        transform: none;

        margin-top: 0;
    }

    .h2-lab-step {
        padding: 110px 25px 30px;

        border-radius: 42px 42px 18px 18px;
    }

    .h2-lab-circle {
        width: 75px;
        height: 75px;

        top: 32px;
    }

    .h2-lab-step > span {
        font-size: 60px;
        top: 15px;
        right: 20px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .h2-lab-step {
        animation: none !important;
    }

    .h2-lab-step:hover .h2-lab-circle {
        transform: translateX(-50%);
    }
}
/* =========================================================
   FRESHCARE ABOUT PAGE
   EXTRA STYLES ONLY
========================================================= */


/* ---------------------------------------------------------
   ABOUT HERO
--------------------------------------------------------- */

.about-hero {
    min-height: 570px;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;

    transition: transform 0.8s ease;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.68),
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.18)
        );

    z-index: 1;
}

.about-hero-content {
    width: min(1200px, calc(100% - 40px));

    position: relative;
    z-index: 2;

    color: #fff;
}

.about-hero-label {
    display: inline-block;

    margin-bottom: 20px;
    padding-left: 18px;

    border-left: 3px solid var(--accent);

    color: #fff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
}

.about-hero-content h1 {
    max-width: 700px;

    margin: 0 0 22px;

    color: #fff;

    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.03;
}

.about-hero-content p {
    max-width: 620px;

    margin: 0;

    color: rgba(255,255,255,0.88);

    font-size: 17px;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   COMMON ABOUT LABEL
--------------------------------------------------------- */

.about-section-label {
    display: block;

    margin-bottom: 16px;

    color: var(--primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2.5px;
}


/* ---------------------------------------------------------
   STORY
--------------------------------------------------------- */

.about-story {
    padding: 120px 0;

    background: var(--background);
}

.about-story-grid {
    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    gap: 90px;

    align-items: center;
}

.about-story-image {
    position: relative;
}

.about-story-image img {
    width: 100%;
    height: 570px;

    display: block;

    object-fit: cover;

    border-radius: 24px;

    box-shadow: 0 25px 70px rgba(17,24,39,0.14);

    transition: transform 0.6s ease;
}

.about-story-image:hover img {
    transform: scale(1.04);
}

.about-story-tag {
    position: absolute;

    left: -25px;
    bottom: 35px;

    width: 225px;

    padding: 22px 25px;

    background: var(--white);

    border-radius: 15px;

    box-shadow: 0 18px 45px rgba(17,24,39,0.13);
}

.about-story-tag span {
    display: block;

    margin-bottom: 7px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}

.about-story-tag strong {
    color: var(--black);

    font-size: 17px;
}

.about-story-content h2 {
    margin: 0 0 25px;

    color: var(--black);

    font-size: clamp(38px,4vw,56px);
    line-height: 1.08;
}

.about-story-content h2 span {
    color: var(--primary);
}

.about-story-content p {
    margin: 0 0 18px;

    color: var(--text-light);

    font-size: 16px;
    line-height: 1.9;
}

.about-story-line {
    width: 70px;
    height: 3px;

    margin: 30px 0;

    background: var(--primary);

    border-radius: 10px;
}

.about-story-highlight {
    display: flex;

    align-items: center;

    gap: 16px;
}

.about-story-highlight > i {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: var(--primary);

    background: var(--primary-light);

    border-radius: 50%;
}

.about-story-highlight strong,
.about-story-highlight span {
    display: block;
}

.about-story-highlight strong {
    margin-bottom: 3px;

    color: var(--black);
}

.about-story-highlight span {
    color: var(--text-light);

    font-size: 13px;
}


/* ---------------------------------------------------------
   APPROACH
--------------------------------------------------------- */

.about-approach {
    padding: 120px 0;

    background: var(--background-soft);
}

.about-approach-intro {
    max-width: 820px;

    margin-bottom: 70px;
}

.about-approach-intro h2 {
    margin: 0 0 22px;

    color: var(--black);

    font-size: clamp(40px,5vw,64px);
    line-height: 1.08;
}

.about-approach-intro h2 span {
    color: var(--primary);
}

.about-approach-intro p {
    max-width: 690px;

    margin: 0;

    color: var(--text-light);

    font-size: 16px;
    line-height: 1.9;
}

.about-approach-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: center;
}

.about-approach-content {
    padding-left: 35px;

    border-left: 1px solid var(--border);
}

.about-approach-number {
    margin-bottom: 18px;

    color: var(--primary);

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 2px;
}

.about-approach-content h3 {
    margin: 0 0 20px;

    color: var(--black);

    font-size: 38px;
    line-height: 1.15;
}

.about-approach-content p {
    margin: 0 0 30px;

    color: var(--text-light);

    font-size: 16px;
    line-height: 1.9;
}

.about-approach-points {
    display: flex;

    flex-direction: column;

    gap: 14px;
}

.about-approach-points div {
    display: flex;
    align-items: center;

    gap: 12px;

    color: var(--text);
}

.about-approach-points i {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);

    background: var(--primary-light);

    border-radius: 50%;

    font-size: 10px;
}

.about-approach-visual {
    position: relative;
}

.about-approach-visual img {
    width: 100%;
    height: 510px;

    display: block;

    object-fit: cover;

    border-radius: 100px 20px 100px 20px;

    box-shadow: 0 25px 70px rgba(17,24,39,0.12);

    transition: transform 0.6s ease;
}

.about-approach-visual:hover img {
    transform: scale(1.04);
}

.about-visual-caption {
    position: absolute;

    right: 25px;
    bottom: 25px;

    width: 245px;

    padding: 20px;

    background: rgba(255,255,255,0.94);

    backdrop-filter: blur(12px);

    border-radius: 14px;
}

.about-visual-caption span {
    display: block;

    margin-bottom: 7px;

    color: var(--primary);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.about-visual-caption strong {
    color: var(--black);

    font-size: 18px;
}


/* ---------------------------------------------------------
   VALUES
   NOTE: Existing project uses .about-value-card
--------------------------------------------------------- */

.about-values {
    padding: 120px 0;

    background: var(--background);
}

.about-values-heading {
    max-width: 720px;

    margin-bottom: 65px;
}

.about-values-heading h2 {
    margin: 0;

    color: var(--black);

    font-size: clamp(38px,4.5vw,58px);
    line-height: 1.08;
}

.about-values-heading h2 span {
    color: var(--primary);
}

.about-values-grid {
    display: grid;

    grid-template-columns: repeat(4,1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}


/* ---------------------------------------------------------
   COMMITMENT
--------------------------------------------------------- */

.about-commitment {
    padding: 100px 0;

    background: var(--background-soft);
}

.about-commitment-box {
    display: grid;

    grid-template-columns: 110px 1fr;

    gap: 40px;

    padding: 65px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 28px;

    box-shadow: var(--shadow-small);
}

.about-commitment-mark {
    width: 78px;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    background: var(--primary);

    border-radius: 22px;

    font-size: 28px;

    transform: rotate(-5deg);
}

.about-commitment-content h2 {
    margin: 0 0 22px;

    color: var(--black);

    font-size: clamp(35px,4vw,52px);
    line-height: 1.1;
}

.about-commitment-content p {
    max-width: 850px;

    margin: 0 0 15px;

    color: var(--text-light);

    font-size: 16px;
    line-height: 1.9;
}


/* ---------------------------------------------------------
   CTA
--------------------------------------------------------- */

.about-cta {
    min-height: 470px;

    padding: 100px 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    overflow: hidden;

    background: var(--black);

    text-align: center;
}

.about-cta-inner {
    max-width: 760px;

    position: relative;
    z-index: 2;
}

.about-cta-inner > span {
    display: block;

    margin-bottom: 18px;

    color: var(--accent);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 3px;
}

.about-cta-inner h2 {
    margin: 0 0 22px;

    color: #fff;

    font-size: clamp(42px,5vw,66px);
    line-height: 1.05;
}

.about-cta-inner p {
    max-width: 620px;

    margin: 0 auto 30px;

    color: rgba(255,255,255,0.72);

    font-size: 16px;
    line-height: 1.8;
}

.about-cta-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 15px 25px;

    color: #fff;

    background: var(--primary);

    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}

.about-cta-button:hover {
    transform: translateY(-3px);

    background: var(--primary-dark);
}


/* ---------------------------------------------------------
   ABOUT SCROLL REVEAL
--------------------------------------------------------- */

.about-reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.about-slide-left {
    transform: translateX(-50px);
}

.about-slide-right {
    transform: translateX(50px);
}

.about-reveal.about-show {
    opacity: 1;

    transform: translate(0);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .about-story-grid,
    .about-approach-grid {
        grid-template-columns: 1fr;
    }

    .about-story-grid {
        gap: 55px;
    }

    .about-approach-grid {
        gap: 55px;
    }

    .about-story-image {
        max-width: 700px;
        margin: auto;
    }

    .about-approach-visual {
        max-width: 750px;
        margin: auto;
        width: 100%;
    }

    .about-values-grid {
        grid-template-columns: repeat(2,1fr);
    }
}


@media (max-width: 700px) {

    .about-container {
        width: calc(100% - 30px);
    }

    .about-hero {
        min-height: 500px;
    }

    .about-hero-content {
        width: calc(100% - 30px);
    }

    .about-hero-content h1 {
        font-size: 46px;
    }

    .about-hero-content p {
        font-size: 15px;
    }

    .about-story,
    .about-approach,
    .about-values {
        padding: 80px 0;
    }

    .about-story-image img {
        height: 430px;
    }

    .about-story-tag {
        left: 15px;
        bottom: 20px;
    }

    .about-story-content h2,
    .about-approach-intro h2 {
        font-size: 40px;
    }

    .about-approach-content {
        padding-left: 22px;
    }

    .about-approach-content h3 {
        font-size: 32px;
    }

    .about-approach-visual img {
        height: 400px;

        border-radius: 60px 15px 60px 15px;
    }

    .about-visual-caption {
        right: 15px;
        bottom: 15px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-commitment-box {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 35px 25px;
    }

    .about-commitment-content h2 {
        font-size: 38px;
    }

    .about-cta {
        min-height: 430px;
        padding: 80px 20px;
    }

    .about-cta-inner h2 {
        font-size: 44px;
    }
}


@media (max-width: 450px) {

    .about-hero {
        min-height: 460px;
    }

    .about-hero-content h1 {
        font-size: 38px;
    }

    .about-story-content h2,
    .about-approach-intro h2 {
        font-size: 34px;
    }

    .about-approach-content h3 {
        font-size: 28px;
    }

    .about-approach-visual img {
        height: 340px;
    }

    .about-visual-caption {
        width: 200px;
    }

    .about-commitment-content h2 {
        font-size: 32px;
    }

    .about-cta-inner h2 {
        font-size: 38px;
    }
}


/* ---------------------------------------------------------
   REDUCED MOTION
--------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {

    .about-reveal,
    .about-slide-left,
    .about-slide-right {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .about-story-image img,
    .about-approach-visual img,
    .about-cta-button {
        transition: none;
    }
}
/* =====================================================
   CONTACT PAGE STYLING
===================================================== */

/* Forms & Input Controls */
.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 8px;
    background-color: var(--white, #ffffff);
    color: var(--text-dark, #222);
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color, #0066ff);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

/* Contact Details Sidebar Card */
.contact-info-card {
    background: var(--background-soft, #f8fafc);
    padding: 35px;
    border-radius: 18px;
    border: 1px solid var(--border, #e2e8f0);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-info-item .why-icon {
    min-width: 45px;
    height: 45px;
    border-radius: 10px;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-info-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 14px;
    color: var(--text-light, #64748b);
    line-height: 1.5;
    margin: 0;
}

.contact-social-card {
    padding: 20px;
    background: var(--white, #ffffff);
    border-radius: 12px;
    border: 1px solid var(--border, #e2e8f0);
}

.contact-social-card h4 {
    margin-bottom: 6px;
}

.contact-social-card p {
    font-size: 15px;
    color: var(--text-light, #64748b);
    margin-bottom: 12px;
}

/* Map Container */
.map-section {
    background: var(--background-soft, #f8fafc);
    padding: 60px 0;
}

.map-wrapper {
    width: 100%;
    height: 380px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border, #e2e8f0);
    box-shadow: var(--shadow-small, 0 4px 6px rgba(0,0,0,0.05));
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-row-2col {
        grid-template-columns: 1fr;
    }
}
/* =====================================================
   ABOUT PAGE UNIQUE STYLING & ADDITIONAL SECTIONS
===================================================== */

/* 1. Unique 3-Image Layout */
.about-showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-images-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-img-box {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium, 0 10px 25px rgba(0,0,0,0.08));
    border: 1px solid var(--border, #e2e8f0);
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-img-box:hover img {
    transform: scale(1.03);
}

.img-main {
    height: 300px;
}

.img-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.img-sub {
    height: 180px;
}

/* 2. Core Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    background: var(--white, #ffffff);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border, #e2e8f0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium, 0 10px 25px rgba(0,0,0,0.08));
}

.value-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background: rgba(0, 102, 255, 0.1);
    color: var(--primary-color, #0066ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-light, #64748b);
    line-height: 1.6;
    margin: 0;
}

/* 3. Working Process Timeline */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
    position: relative;
}

.process-step {
    background: var(--background-soft, #f8fafc);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--border, #e2e8f0);
    position: relative;
}

.step-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color, #0066ff);
    opacity: 0.3;
    position: absolute;
    top: 15px;
    right: 20px;
}

.process-step h4 {
    font-size: 18px;
    margin: 15px 0 10px 0;
}

.process-step p {
    font-size: 13px;
    color: var(--text-light, #64748b);
    margin: 0;
}

/* 4. Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--white, #ffffff);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border, #e2e8f0);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 14px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--primary);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-info .avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color, #0066ff);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.user-details h5 {
    font-size: 15px;
    margin: 0;
}

.user-details span {
    font-size: 12px;
    color: var(--text-light, #64748b);
}

/* 5. FAQ Accordion Section */
.faq-wrapper {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--white, #ffffff);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 12px;
    padding: 20px;
}

.faq-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark, #222);
}

.faq-item p {
    font-size: 14px;
    color: var(--text-light, #64748b);
    margin: 0;
    line-height: 1.5;
}

/* Responsive Support */
@media (max-width: 991px) {
    .about-showcase-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================================
   FRESHCARE ABOUT PAGE
   Big Laundry inspired structure
   FreshCare custom styling
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

.freshcare-about {
    --fc-primary: #1596a8;
    --fc-primary-dark: #0d7180;
    --fc-light: #e8f7f9;
    --fc-soft: #f7fafb;
    --fc-text: #111827;
    --fc-body: #4b5563;
    --fc-muted: #6b7280;
    --fc-border: #e5e7eb;
    --fc-white: #ffffff;

    overflow: hidden;
}


/* =========================================================
   COMMON LABEL
========================================================= */

.fc-label {
    display: inline-block;

    margin-bottom: 16px;

    color: var(--fc-primary);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================================
   HERO
========================================================= */

.fc-about-hero {
    position: relative;

    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


.fc-about-hero-image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 0;

    transform: scale(1.02);

    transition: transform 1.2s ease;
}


.fc-about-hero:hover .fc-about-hero-image {
    transform: scale(1.06);
}


.fc-about-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 40, 47, 0.82),
            rgba(8, 40, 47, 0.48),
            rgba(8, 40, 47, 0.25)
        );

    z-index: 1;
}


.fc-about-hero .container {
    position: relative;

    width: 100%;

    z-index: 2;
}


.fc-about-hero-content {
    max-width: 700px;

    padding: 90px 0;

    animation: fcHeroReveal 0.9s ease both;
}


.fc-about-hero-content .fc-label {
    color: #ffffff;
}


.fc-about-hero-content h1 {
    margin: 0 0 24px;

    color: #ffffff;

    font-size: clamp(48px, 6vw, 82px);

    line-height: 0.98;

    letter-spacing: -2px;
}


.fc-about-hero-content p {
    max-width: 590px;

    margin: 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   INTRO
========================================================= */

.fc-about-intro {
    background: var(--fc-white);
}


.fc-intro-grid {
    display: grid;

    grid-template-columns: 1.3fr 0.7fr;

    gap: 90px;

    align-items: center;
}


.fc-intro-content h2 {
    margin: 0 0 25px;

    color: var(--fc-text);

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.08;

    letter-spacing: -1.5px;
}


.fc-intro-content p {
    max-width: 680px;

    margin: 0 0 16px;

    color: var(--fc-body);

    font-size: 16px;

    line-height: 1.85;
}


.fc-intro-signature {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 30px;

    color: var(--fc-primary);

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}


.fc-sign-line {
    width: 45px;
    height: 2px;

    background: var(--fc-primary);
}


.fc-intro-highlight {
    position: relative;

    padding: 55px 45px;

    background: var(--fc-primary);

    color: #ffffff;

    overflow: hidden;

    border-radius: 0 70px 0 70px;

    box-shadow:
        0 25px 60px rgba(21, 150, 168, 0.18);
}


.fc-intro-highlight::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    bottom: -80px;

    border: 1px solid rgba(255, 255, 255, 0.22);

    border-radius: 50%;
}


.fc-highlight-number {
    margin-bottom: 35px;

    font-size: 60px;
    font-weight: 800;

    line-height: 1;

    opacity: 0.18;
}


.fc-intro-highlight > span {
    display: block;

    margin-bottom: 14px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;
}


.fc-intro-highlight h3 {
    margin: 0 0 18px;

    font-size: 30px;

    line-height: 1.2;
}


.fc-intro-highlight p {
    margin: 0;

    color: rgba(255, 255, 255, 0.8);

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   WHAT WE DO
========================================================= */

.fc-about-services {
    padding: 110px 0;

    background: var(--fc-soft);
}


.fc-section-heading {
    display: grid;

    grid-template-columns: 1fr 0.8fr;

    gap: 60px;

    align-items: end;

    margin-bottom: 55px;
}


.fc-section-heading h2 {
    margin: 0;

    color: var(--fc-text);

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.05;

    letter-spacing: -1.5px;
}


.fc-section-heading > p {
    margin: 0;

    color: var(--fc-muted);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   SERVICE ROWS
========================================================= */

.fc-service-list {
    border-top: 1px solid var(--fc-border);
}


.fc-service-row {
    display: grid;

    grid-template-columns: 70px 70px 1fr 50px;

    gap: 25px;

    align-items: center;

    padding: 30px 15px;

    border-bottom: 1px solid var(--fc-border);

    transition:
        background 0.35s ease,
        padding 0.35s ease;
}


.fc-service-row:hover {
    padding-left: 28px;
    padding-right: 28px;

    background: #ffffff;
}


.fc-service-number {
    color: var(--fc-primary);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1px;
}


.fc-service-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--fc-light);

    color: var(--fc-primary);

    border-radius: 50%;

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}


.fc-service-row:hover .fc-service-icon {
    background: var(--fc-primary);

    color: #ffffff;

    transform: rotate(-8deg);
}


.fc-service-content h3 {
    margin: 0 0 7px;

    color: var(--fc-text);

    font-size: 22px;
}


.fc-service-content p {
    max-width: 750px;

    margin: 0;

    color: var(--fc-muted);

    font-size: 14px;

    line-height: 1.7;
}


.fc-service-arrow {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--fc-border);

    border-radius: 50%;

    color: var(--fc-primary);

    transition:
        background 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}


.fc-service-row:hover .fc-service-arrow {
    background: var(--fc-primary);

    color: #ffffff;

    transform: translateX(5px);
}


/* =========================================================
   STRENGTHS
========================================================= */

.fc-about-strength {
    background: #ffffff;
}


.fc-strength-layout {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 90px;
}


.fc-strength-heading h2 {
    margin: 0 0 25px;

    color: var(--fc-text);

    font-size: clamp(38px, 4vw, 56px);

    line-height: 1.05;

    letter-spacing: -1.5px;
}


.fc-strength-heading p {
    max-width: 430px;

    margin: 0;

    color: var(--fc-muted);

    line-height: 1.8;
}


.fc-strength-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 1px;

    background: var(--fc-border);

    border: 1px solid var(--fc-border);
}


.fc-strength-card {
    position: relative;

    min-height: 250px;

    padding: 35px;

    background: #ffffff;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}


.fc-strength-card:hover {
    background: var(--fc-light);

    transform: translateY(-5px);
}


.fc-strength-card > span {
    position: absolute;

    top: 25px;
    right: 25px;

    color: var(--fc-primary);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
}


.fc-strength-card i {
    display: flex;

    width: 50px;
    height: 50px;

    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    background: var(--fc-light);

    color: var(--fc-primary);

    border-radius: 14px;
}


.fc-strength-card h3 {
    margin: 0 0 10px;

    color: var(--fc-text);

    font-size: 21px;
}


.fc-strength-card p {
    margin: 0;

    color: var(--fc-muted);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   APPROACH
========================================================= */

.fc-about-approach {
    padding: 100px 0;

    background: var(--fc-primary);
}


.fc-approach-box {
    display: grid;

    grid-template-columns: 100px 1fr 0.75fr;

    gap: 60px;

    align-items: center;
}


.fc-approach-number {
    color: rgba(255, 255, 255, 0.2);

    font-size: 80px;
    font-weight: 800;

    line-height: 1;
}


.fc-approach-content .fc-label {
    color: #ffffff;
}


.fc-approach-content h2 {
    margin: 0 0 22px;

    color: #ffffff;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.05;

    letter-spacing: -1.5px;
}


.fc-approach-content p {
    margin: 0 0 14px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;

    line-height: 1.8;
}


.fc-approach-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


.fc-approach-points > div {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 18px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    color: #ffffff;

    font-size: 13px;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.fc-approach-points > div:hover {
    background: rgba(255, 255, 255, 0.1);

    transform: translateY(-4px);
}


.fc-approach-points i {
    color: #ffffff;
}


/* =========================================================
   COMMITMENT
========================================================= */

.fc-about-commitment {
    background: var(--fc-soft);
}


.fc-commitment-content {
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}


.fc-commitment-content h2 {
    margin: 0 0 25px;

    color: var(--fc-text);

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.05;

    letter-spacing: -1.8px;
}


.fc-commitment-content p {
    max-width: 760px;

    margin: 0 auto 32px;

    color: var(--fc-muted);

    font-size: 16px;

    line-height: 1.85;
}


.fc-commitment-content .btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.fc-reveal {
    opacity: 0;

    transform: translateY(35px);

    animation:
        fcReveal 0.8s ease forwards;
}


.fc-service-row:nth-child(1) {
    animation-delay: 0.05s;
}

.fc-service-row:nth-child(2) {
    animation-delay: 0.15s;
}

.fc-service-row:nth-child(3) {
    animation-delay: 0.25s;
}

.fc-service-row:nth-child(4) {
    animation-delay: 0.35s;
}


.fc-strength-card:nth-child(1) {
    animation-delay: 0.05s;
}

.fc-strength-card:nth-child(2) {
    animation-delay: 0.15s;
}

.fc-strength-card:nth-child(3) {
    animation-delay: 0.25s;
}

.fc-strength-card:nth-child(4) {
    animation-delay: 0.35s;
}


@keyframes fcReveal {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes fcHeroReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}
/* =========================================================
   FRESHCARE ABOUT PAGE - ORGANIC EDITORIAL DESIGN
========================================================= */

.fresh-about {
    --fc-teal: #1596a8;
    --fc-dark: #123b4a;
    --fc-light: #eef9f8;
    --fc-soft: #f7fbfa;
    --fc-text: #40545c;
    --fc-line: #cce8e7;
    overflow: hidden;
    background: #ffffff;
    color: var(--fc-dark);
}

.fresh-about * {
    box-sizing: border-box;
}

.fresh-about h1,
.fresh-about h2,
.fresh-about h3,
.fresh-about p {
    margin-top: 0;

}

.fresh-label {
    display: inline-block;
    color: var(--fc-teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.fresh-about h1,
.fresh-about h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.08;
}

.fresh-about h1 span,
.fresh-about h2 span {
    display: block;
    color: var(--fc-teal);
}


/* =========================================================
   HERO
========================================================= */

.fresh-about-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 75% 35%, #dff4f4 0, transparent 32%),
        #f7fbfa;
}

.fresh-about-hero-grid {
    position: relative;
    z-index: 2;
    min-height: 680px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
}

.fresh-about-hero-content {
    padding-left: 45px;
}

.fresh-about-hero h1 {
    max-width: 650px;
    font-size: clamp(48px, 6vw, 78px);
    color: var(--fc-dark);
    margin-bottom: 25px;
}

.fresh-about-hero p {
    max-width: 550px;
    color: var(--fc-text);
    font-size: 17px;
    line-height: 1.8;
}

.fresh-line {
    width: 110px;
    height: 3px;
    background: var(--fc-teal);
    border-radius: 50%;
    margin: 25px 0;
}

.fresh-main-btn,
.fresh-final-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: .3s ease;
}

.fresh-main-btn {
    background: var(--fc-dark);
    color: #fff;
}

.fresh-main-btn:hover {
    background: var(--fc-teal);
    transform: translateY(-3px);
}

.fresh-about-hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fresh-hero-circle {
    width: min(470px, 80%);
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 18px;
    background: #ffffff;
    box-shadow:
        0 0 0 1px #dcefee,
        0 0 0 25px rgba(255,255,255,.7),
        0 0 0 26px #dcefee;
}

.fresh-hero-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.fresh-floating-word {
    position: absolute;
    left: 5%;
    bottom: 18%;
    padding: 15px 22px;
    background: var(--fc-teal);
    color: #fff;
    font-family: Georgia, serif;
    font-size: 20px;
    line-height: 1.1;
    transform: rotate(-8deg);
    border-radius: 4px 25px 4px 25px;
}

.fresh-dots {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #8bcf63;
    border-radius: 50%;
}

.dot-one {
    top: 20%;
    right: 8%;
}

.dot-two {
    bottom: 18%;
    right: 15%;
}

.fresh-scroll-mark {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 65px;
    background: #fff;
    border: 1px dashed var(--fc-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fc-teal);
    z-index: 4;
}


/* =========================================================
   WHO WE ARE
========================================================= */

.fresh-who {
    padding: 120px 0;
    background: #fff;
}

.fresh-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.fresh-who-visual {
    position: relative;
    padding: 35px;
}

.fresh-organic-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: .92;
    overflow: hidden;
    border-radius: 48% 52% 42% 58% / 45% 42% 58% 55%;
}

.fresh-organic-image::before {
    content: "";
    position: absolute;
    inset: -12px;
    border: 1px solid #cce8e7;
    border-radius: 50%;
    z-index: -1;
}

.fresh-organic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fresh-hand-line {
    position: absolute;
    right: 0;
    bottom: 45px;
    color: var(--fc-teal);
    font-family: cursive;
    font-size: 18px;
    transform: rotate(-5deg);
}

.fresh-who-content h2 {
    font-size: clamp(40px, 4vw, 58px);
    margin-bottom: 25px;
}

.fresh-who-content p {
    color: var(--fc-text);
    line-height: 1.85;
    font-size: 15px;
    max-width: 570px;
}

.fresh-signature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    color: var(--fc-teal);
    font-family: cursive;
    font-size: 18px;
}

.fresh-signature span {
    width: 45px;
    height: 2px;
    background: var(--fc-teal);
}


/* =========================================================
   BELIEF
========================================================= */

.fresh-belief {
    padding: 100px 0;
    background: var(--fc-light);
}

.fresh-belief-layout {
    position: relative;
    min-height: 330px;
    display: grid;
    grid-template-columns: 130px 1fr 250px;
    align-items: center;
    gap: 40px;
}

.fresh-belief-number {
    font-family: Georgia, serif;
    font-size: 100px;
    color: rgba(21,150,168,.22);
}

.fresh-belief-content h2 {
    font-size: clamp(38px, 4vw, 58px);
    margin-bottom: 22px;
}

.fresh-belief-content p {
    max-width: 620px;
    color: var(--fc-text);
    line-height: 1.8;
}

.fresh-belief-art {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid #b8dfde;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fresh-belief-art::before {
    content: "";
    position: absolute;
    inset: 15px;
    border: 1px dashed var(--fc-teal);
    border-radius: 50%;
}

.fresh-belief-art i {
    font-size: 65px;
    color: var(--fc-teal);
}

.fresh-belief-art span {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #8bcf63;
    border-radius: 50%;
    top: 20px;
    right: 25px;
}


/* =========================================================
   JOURNEY
========================================================= */

.fresh-journey {
    padding: 120px 0;
    background: #fff;
}

.fresh-section-heading {
    max-width: 650px;
    margin-bottom: 80px;
}

.fresh-section-heading h2 {
    font-size: clamp(40px, 4vw, 60px);
    margin-bottom: 22px;
}

.fresh-section-heading p {
    color: var(--fc-text);
    line-height: 1.8;
}

.fresh-journey-line {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.fresh-journey-line::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 6%;
    right: 6%;
    height: 1px;
    background: var(--fc-line);
}

.fresh-journey-item {
    position: relative;
    z-index: 2;
    padding-right: 20px;
}

.journey-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--fc-teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
}

.fresh-journey-item > i {
    font-size: 25px;
    color: var(--fc-teal);
    margin-bottom: 18px;
}

.fresh-journey-item h3 {
    font-family: Georgia, serif;
    font-size: 23px;
}

.fresh-journey-item p {
    color: var(--fc-text);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   WHAT WE DO
========================================================= */

.fresh-what {
    padding: 110px 0;
    background: var(--fc-soft);
}

.fresh-what-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.fresh-what-content h2 {
    font-size: clamp(42px, 4vw, 62px);
    margin-bottom: 20px;
}

.fresh-what-content > p {
    max-width: 500px;
    color: var(--fc-text);
    line-height: 1.8;
}

.fresh-service-list {
    margin-top: 35px;
    max-width: 520px;
}

.fresh-service-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid var(--fc-line);
    text-decoration: none;
    color: var(--fc-dark);
    transition: .3s ease;
}

.fresh-service-list a:hover {
    color: var(--fc-teal);
    padding-left: 8px;
}

.fresh-service-list a span {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
}

.fresh-service-list a span i {
    color: var(--fc-teal);
    width: 25px;
}

.fresh-what-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.fresh-what-image {
    max-width: 460px;
    border-radius: 55% 45% 58% 42% / 45% 55% 45% 55%;
}

.fresh-image-note {
    position: absolute;
    right: 0;
    bottom: 30px;
    padding: 18px 25px;
    background: #fff;
    border-radius: 30px 5px 30px 5px;
    box-shadow: 0 15px 40px rgba(18,59,74,.10);
    font-family: cursive;
    color: var(--fc-teal);
}

.fresh-image-note strong {
    display: block;
    font-size: 21px;
}


/* =========================================================
   APPROACH
========================================================= */

.fresh-approach {
    padding: 120px 0;
}

.fresh-approach-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 75px;
}

.fresh-approach-heading h2 {
    font-size: clamp(40px, 4vw, 60px);
    margin-bottom: 22px;
}

.fresh-approach-heading p {
    color: var(--fc-text);
    line-height: 1.8;
    font-size: 15px;
}

.fresh-care-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.fresh-care-step {
    flex: 1;
    text-align: center;
    max-width: 220px;
}

.care-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--fc-light);
    border: 1px solid var(--fc-line);
    display: flex;
    align-items: center;
    justify-content: center;
}

.care-icon i {
    font-size: 25px;
    color: var(--fc-teal);
}

.fresh-care-step > span {
    font-size: 11px;
    color: var(--fc-teal);
    font-weight: 800;
}

.fresh-care-step h3 {
    font-family: Georgia, serif;
    font-size: 22px;
    margin: 8px 0;
}

.fresh-care-step p {
    color: var(--fc-text);
    font-size: 15px;
    line-height: 1.7;
}

.fresh-flow-arrow {
    color: var(--fc-teal);
    font-size: 18px;
}


/* =========================================================
   STRENGTHS
========================================================= */

.fresh-strengths {
    padding: 110px 0;
    background: var(--fc-light);
}

.fresh-strength-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.fresh-strength-intro h2 {
    font-size: clamp(42px, 4vw, 60px);
}

.fresh-strength-intro p {
    color: var(--fc-text);
    line-height: 1.8;
    max-width: 450px;
    text-align: justify;
}

.fresh-strength-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.fresh-strength-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 15px;
    padding: 28px 0;
    border-bottom: 1px solid var(--fc-line);
}

.fresh-strength-item > span {
    color: var(--fc-teal);
    font-size: 12px;
    font-weight: 800;
}

.fresh-strength-item i {
    color: var(--fc-teal);
    font-size: 20px;
    margin-bottom: 10px;
}

.fresh-strength-item h3 {
    font-family: Georgia, serif;
    margin-bottom: 8px;
}

.fresh-strength-item p {
    margin: 0;
    color: var(--fc-text);
    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   STANDARDS
========================================================= */

.fresh-standards {
    padding: 110px 0;
}

.fresh-standards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.fresh-standards-grid h2 {
    font-size: clamp(42px, 4vw, 60px);
}

.fresh-standard-row {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 20px 0;
    border-bottom: 1px solid var(--fc-line);
}

.standard-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--fc-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fc-teal);
}

.fresh-standard-row h3 {
    font-family: Georgia, serif;
    margin-bottom: 5px;
}

.fresh-standard-row p {
    margin: 0;
    color: var(--fc-text);
    font-size: 15px;
}


/* =========================================================
   NUMBERS
========================================================= */

.fresh-numbers {
    padding: 100px 0;
    background: var(--fc-soft);
}

.fresh-numbers-heading {
    text-align: center;
    margin-bottom: 55px;
}

.fresh-numbers-heading h2 {
    font-size: clamp(40px, 4vw, 58px);
}

.fresh-number-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.fresh-number-row div {
    padding: 10px 20px;
    border-right: 1px solid var(--fc-line);
}

.fresh-number-row div:last-child {
    border-right: 0;
}

.fresh-number-row strong {
    display: block;
    color: var(--fc-teal);
    font-family: Georgia, serif;
    font-size: 45px;
    font-weight: 500;
}

.fresh-number-row span {
    display: block;
    color: var(--fc-text);
    margin-top: 8px;
}


/* =========================================================
   EXPERIENCE
========================================================= */

.fresh-experience {
    padding: 110px 0;
}

.fresh-experience-heading {
    max-width: 600px;
    margin-bottom: 65px;
}

.fresh-experience-heading h2 {
    font-size: clamp(40px, 4vw, 58px);
}

.fresh-experience-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.fresh-experience-flow > div {
    text-align: center;
    flex: 1;
}

.fresh-experience-flow > div > i {
    display: flex;
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--fc-light);
    color: var(--fc-teal);
    font-size: 23px;
}

.fresh-experience-flow > div > span {
    color: var(--fc-teal);
    font-size: 11px;
    font-weight: 800;
}

.fresh-experience-flow h3 {
    font-family: Georgia, serif;
    font-size: 20px;
    margin: 7px 0;
}

.fresh-experience-flow p {
    color: var(--fc-text);
    font-size: 15px;
    line-height: 1.6;
}

.experience-arrow {
    color: var(--fc-teal);
}


/* =========================================================
   COMMITMENT
========================================================= */

.fresh-commitment {
    padding: 100px 0;
    background: #f1faf9;
}

.fresh-commitment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.fresh-commitment h2 {
    font-size: clamp(38px, 4vw, 56px);
}

.fresh-commitment-content > p {
    color: var(--fc-text);
    line-height: 1.9;
    font-size: 16px;
    text-align: justify;
}


/* =========================================================
   FINAL CTA
========================================================= */

.fresh-final {
    position: relative;
    overflow: hidden;
    padding: 115px 0 130px;
    background: var(--fc-dark);
    color: #fff;
}

.fresh-final::before,
.fresh-final::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
}

.fresh-final::before {
    left: -180px;
    bottom: -80px;
    transform: rotate(-8deg);
}

.fresh-final::after {
    right: -180px;
    top: -90px;
    transform: rotate(8deg);
}

.fresh-final-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.fresh-final .fresh-label {
    color: #8ee1e2;
}

.fresh-final h2 {
    font-size: clamp(45px, 5vw, 70px);
    margin-bottom: 22px;
}

.fresh-final h2 span {
    color: #6fd4d7;
}

.fresh-final p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,.75);
    line-height: 1.8;
}

.fresh-final-btn {
    background: #fff;
    color:var(--primary) ;
}

.fresh-final-btn:hover {
    background: var(--fc-teal);
    color: black;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .fresh-about-hero-grid,
    .fresh-who-grid,
    .fresh-what-grid,
    .fresh-strength-grid,
    .fresh-standards-grid,
    .fresh-commitment-content {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .fresh-about-hero {
        padding: 80px 0;
    }

    .fresh-about-hero-grid {
        min-height: auto;
    }

    .fresh-about-hero-content {
        padding-left: 0;
        text-align: center;
    }

    .fresh-about-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .fresh-line {
        margin-left: auto;
        margin-right: auto;
    }

    .fresh-about-hero-visual {
        min-height: 450px;
    }

    .fresh-who-visual {
        display: flex;
        justify-content: center;
    }

    .fresh-journey-line {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .fresh-journey-line::before {
        display: none;
    }

    .fresh-belief-layout {
        grid-template-columns: 80px 1fr;
    }

    .fresh-belief-art {
        display: none;
    }

    .fresh-care-flow {
        flex-wrap: wrap;
    }

    .fresh-care-step {
        flex-basis: 40%;
    }

    .fresh-flow-arrow {
        display: none;
    }
}


@media (max-width: 650px) {

    .fresh-about-hero {
        min-height: auto;
    }

    .fresh-about-hero-grid {
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .fresh-about-hero h1 {
        font-size: 44px;
    }

    .fresh-about-hero p {
        font-size: 15px;
    }

    .fresh-about-hero-visual {
        min-height: 350px;
    }

    .fresh-hero-circle {
        width: 280px;
    }

    .fresh-floating-word {
        left: 3%;
        bottom: 10%;
        font-size: 16px;
    }

    .fresh-who,
    .fresh-journey,
    .fresh-what,
    .fresh-approach,
    .fresh-strengths,
    .fresh-standards,
    .fresh-experience {
        padding: 80px 0;
    }

    .fresh-who-visual {
        padding: 15px;
    }

    .fresh-organic-image {
        max-width: 350px;
    }

    .fresh-journey-line {
        grid-template-columns: 1fr;
    }

    .fresh-belief-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .fresh-belief-number {
        font-size: 65px;
    }

    .fresh-strength-list {
        grid-template-columns: 1fr;
    }

    .fresh-number-row {
        grid-template-columns: 1fr 1fr;
        gap: 30px 0;
    }

    .fresh-number-row div:nth-child(2) {
        border-right: 0;
    }

    .fresh-number-row strong {
        font-size: 35px;
    }

    .fresh-experience-flow {
        flex-direction: column;
        gap: 35px;
    }

    .experience-arrow {
        transform: rotate(90deg);
    }

    .fresh-commitment-content {
        gap: 25px;
    }

    .fresh-final {
        padding: 90px 0 110px;
    }

    .fresh-final h2 {
        font-size: 42px;
    }
}

/* =========================================================
   FRESHCARE ABOUT HERO
   BACKGROUND IMAGE + IMAGE CIRCLES + CENTER CONTENT
========================================================= */

.fresh-about-hero {
    position: relative;
    width: 100%;
    min-height: 690px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf8f8;
}


/* =========================================================
   FULL BACKGROUND IMAGE
========================================================= */

.fresh-about-bg {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 0;
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.fresh-about-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: rgba(165, 164, 164, 0.7);
}
/* =========================================================
   MAIN HERO LAYOUT
========================================================= */

.fresh-about-hero-inner {
    position: relative;
    z-index: 3;

    width: 100%;
    min-height: 690px;

    display: grid;

    grid-template-columns:
        minmax(180px, 280px)
        minmax(420px, 650px)
        minmax(180px, 280px);

    align-items: center;
    justify-content: space-between;

    gap: 35px;
}


/* =========================================================
   CENTER CONTENT
========================================================= */

.fresh-about-center {
    text-align: center;
    position: relative;
    z-index: 5;

    padding: 30px 10px;
}

.fresh-about-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    color:white;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;

    margin-bottom: 20px;
}

.fresh-about-tag::before,
.fresh-about-tag::after {
    content: "";

    width: 45px;
    height: 1px;

    background: #1596a8;
}

.fresh-about-center h1 {
    margin: 0 auto 24px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(45px, 5vw, 72px);

    font-weight: 500;

    line-height: 1.06;

    color: white;
}

.fresh-about-center h1 span {
    display: block;
    color:white;
}

.fresh-about-center p {
    max-width: 570px;

    margin: 0 auto 30px;

    color: white;

    font-size: 15px;
    line-height: 1.8;
}

.fresh-about-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 15px 27px;

    background: #123b4a;
    color: #ffffff;

    border-radius: 40px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: .3s ease;
}

.fresh-about-btn:hover {
    background: #1596a8;
    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   IMAGE CIRCLES
========================================================= */

.fresh-about-circle {
    position: relative;

    width: 235px;
    height: 235px;

    border-radius: 50%;

    padding: 14px;

    background: rgba(255,255,255,.88);

    box-shadow:
        0 0 0 1px rgba(21,150,168,.20),
        0 0 0 12px rgba(255,255,255,.30),
        0 0 0 13px rgba(21,150,168,.15);

    z-index: 4;
}

.fresh-about-circle img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;

    display: block;
}


/* =========================================================
   CIRCLE POSITION
========================================================= */

.fresh-circle-left {
    justify-self: center;

    transform:
        translateY(-20px)
        rotate(-4deg);
}

.fresh-circle-right {
    justify-self: center;

    transform:
        translateY(30px)
        rotate(4deg);
}


/* =========================================================
   OUTER RING
========================================================= */

.fresh-circle-ring {
    position: absolute;

    inset: -24px;

    border: 1px solid rgba(21,150,168,.25);

    border-radius: 50%;

    pointer-events: none;
}

.fresh-circle-ring::before {
    content: "";

    position: absolute;

    inset: 12px;

    border: 1px dashed rgba(21,150,168,.35);

    border-radius: 50%;
}


/* =========================================================
   CIRCLE DOTS
========================================================= */

.fresh-circle-dot {
    position: absolute;

    width: 9px;
    height: 9px;

    background: #8bcf63;

    border-radius: 50%;

    z-index: 6;
}

.dot-a {
    top: -17px;
    right: 48px;
}

.dot-b {
    bottom: 18px;
    left: -18px;
}

.dot-c {
    top: 25px;
    right: -19px;
}

.dot-d {
    bottom: -15px;
    left: 58px;
}


/* =========================================================
   LEAF DECORATION
========================================================= */

.fresh-circle-leaf {
    position: absolute;

    bottom: -28px;
    right: -32px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1596a8;

    font-size: 24px;

    transform: rotate(-25deg);
}

.fresh-circle-left .fresh-circle-leaf {
    right: auto;
    left: -38px;

    transform: rotate(25deg);
}


/* =========================================================
   SCROLL BUTTON
========================================================= */

.fresh-about-scroll {
    position: absolute;

    z-index: 8;

    left: 50%;
    bottom: -1px;

    transform: translateX(-50%);

    width: 66px;
    height: 66px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,.92);

    color: #1596a8;

    border-radius: 50%;

    border: 1px dashed #1596a8;

    box-shadow: 0 5px 20px rgba(18,59,74,.08);
}

.fresh-about-scroll i {
    animation: freshAboutScroll 1.5s ease-in-out infinite;
}

@keyframes freshAboutScroll {

    0%,
    100% {
        transform: translateY(-3px);
    }

    50% {
        transform: translateY(4px);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .fresh-about-hero-inner {
        grid-template-columns:
            180px
            1fr
            180px;

        gap: 20px;
    }

    .fresh-about-circle {
        width: 185px;
        height: 185px;
    }

    .fresh-about-center h1 {
        font-size: 48px;
    }

    .fresh-about-center p {
        font-size: 14px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 750px) {

    .fresh-about-hero {
        min-height: 760px;
        align-items: flex-start;
    }

    .fresh-about-bg {
        object-position: center;
    }

    .fresh-about-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(238,250,249,.91) 0%,
                rgba(255,255,255,.93) 45%,
                rgba(238,250,249,.80) 100%
            );
    }

    .fresh-about-hero-inner {
        min-height: 760px;

        display: flex;
        flex-direction: column;

        justify-content: center;
        gap: 25px;

        padding-top: 45px;
        padding-bottom: 70px;
    }

    .fresh-about-center {
        order: 1;
    }

    .fresh-circle-left {
        order: 2;

        position: absolute;

        left: 8px;
        bottom: 75px;

        width: 125px;
        height: 125px;

        transform: rotate(-5deg);
    }

    .fresh-circle-right {
        order: 3;

        position: absolute;

        right: 8px;
        bottom: 55px;

        width: 125px;
        height: 125px;

        transform: rotate(5deg);
    }

    .fresh-circle-ring {
        inset: -12px;
    }

    .fresh-circle-ring::before {
        inset: 7px;
    }

    .fresh-circle-leaf {
        font-size: 17px;

        width: 35px;
        height: 35px;

        bottom: -20px;
        right: -20px;
    }

    .fresh-circle-left .fresh-circle-leaf {
        left: -20px;
    }

    .fresh-about-tag {
        font-size: 10px;
    }

    .fresh-about-tag::before,
    .fresh-about-tag::after {
        width: 25px;
    }

    .fresh-about-center h1 {
        font-size: 43px;
    }

    .fresh-about-center p {
        font-size: 14px;
        line-height: 1.7;
    }

    .fresh-about-scroll {
        width: 55px;
        height: 55px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .fresh-about-hero {
        min-height: 720px;
    }

    .fresh-about-hero-inner {
        min-height: 720px;
    }

    .fresh-about-center h1 {
        font-size: 37px;
    }

    .fresh-about-circle {
        width: 105px;
        height: 105px;
    }

    .fresh-circle-left {
        left: 5px;
    }

    .fresh-circle-right {
        right: 5px;
    }

    .fresh-about-center p {
        padding: 0 15px;
    }
}

/* OUR STANDARDS - Main Description */
.fresh-standards .fresh-standards-grid > div:first-child p {
    text-align: justify !important;
}
/* =========================================================
   FRESHCARE LOGIN PAGE
========================================================= */

.fresh-auth-page {
    min-height: 100vh;
    background: var(--background-soft);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;

    position: relative;
}


/* =========================================================
   LOGIN WRAPPER
========================================================= */

.fresh-auth-wrapper {
    width: 100%;
    max-width: 1080px;
    min-height: 650px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: var(--white);

    border-radius: 22px;
    overflow: hidden;

    box-shadow:
        0 25px 70px rgba(17, 24, 39, 0.12);
}


/* =========================================================
   IMAGE SIDE
========================================================= */

.fresh-auth-visual {
    position: relative;
    min-height: 650px;
    overflow: hidden;
}

.fresh-auth-visual img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;
}

.fresh-auth-visual-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(8, 43, 51, 0.82),
        rgba(8, 43, 51, 0.18)
    );
}

.fresh-auth-visual-content {
    position: absolute;

    left: 45px;
    right: 45px;
    bottom: 45px;

    color: #fff;
    z-index: 2;
}

.fresh-auth-visual-content span {
    display: block;

    margin-bottom: 12px;

    color: #7ee1e9;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;
}

.fresh-auth-visual-content h2 {
    margin: 0 0 15px;

    color: #fff;

    font-size: 42px;
    line-height: 1.1;

    font-weight: 500;
}

.fresh-auth-visual-content p {
    max-width: 410px;

    margin: 0;

    color: rgba(255,255,255,0.85);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   FORM SIDE
========================================================= */

.fresh-auth-form-area {
    display: flex;

    align-items: center;
    justify-content: center;

    padding: 55px;
}

.fresh-auth-form {
    width: 100%;
    max-width: 390px;
}


/* =========================================================
   LOGO
========================================================= */

.fresh-auth-logo {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    margin-bottom: 38px;

    color: var(--black);

    text-decoration: none;

    font-size: 25px;
    font-weight: 700;
}

.fresh-auth-logo-icon {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: var(--primary-light);
    color: var(--primary);

    font-size: 18px;
}

.fresh-auth-logo-text span {
    color: var(--primary);
}


/* =========================================================
   HEADING
========================================================= */

.fresh-auth-heading {
    margin-bottom: 32px;
}

.fresh-auth-heading small {
    display: block;

    margin-bottom: 10px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.5px;
}

.fresh-auth-heading h1 {
    margin: 0 0 10px;

    color: var(--black);

    font-size: 38px;
    line-height: 1.15;

    font-weight: 600;
}

.fresh-auth-heading p {
    margin: 0;

    color: var(--text-light);

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FORM
========================================================= */

.fresh-form-group {
    margin-bottom: 20px;
}

.fresh-form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--black);

    font-size: 15px;
    font-weight: 600;
}

.fresh-input-wrapper {
    position: relative;
}

.fresh-input-wrapper > i {
    position: absolute;

    left: 16px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--text-light);

    font-size: 14px;

    pointer-events: none;
}

.fresh-input-wrapper input {
    width: 100%;
    height: 52px;

    padding: 0 45px;

    border: 1px solid var(--border);
    border-radius: 9px;

    outline: none;

    background: var(--white);
    color: var(--black);

    font-family: inherit;
    font-size: 15px;

    transition: 0.3s ease;
}

.fresh-input-wrapper input:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(21, 150, 168, 0.10);
}


/* =========================================================
   PASSWORD TOGGLE
========================================================= */

.fresh-password-toggle {
    position: absolute;

    right: 15px;
    top: 50%;

    transform: translateY(-50%);

    border: 0;

    background: transparent;

    color: var(--text-light);

    cursor: pointer;

    padding: 5px;
}


/* =========================================================
   OPTIONS
========================================================= */

.fresh-auth-options {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin: 5px 0 25px;
}

.fresh-remember {
    display: flex;

    align-items: center;
    gap: 8px;

    color: var(--text-light);

    font-size: 13px;
}

.fresh-remember input {
    accent-color: var(--primary);
}

.fresh-forgot {
    color: var(--primary);

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;
}

.fresh-forgot:hover {
    color: var(--primary-dark);
}


/* =========================================================
   LOGIN BUTTON
========================================================= */

.fresh-auth-submit {
    width: 100%;
    min-height: 52px;

    border: 0;
    border-radius: 9px;

    background: var(--primary);
    color: #fff;

    font-family: inherit;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;
}

.fresh-auth-submit:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);
}

.fresh-auth-submit i {
    margin-left: 8px;
}


/* =========================================================
   DIVIDER
========================================================= */

.fresh-auth-divider {
    display: flex;

    align-items: center;
    gap: 15px;

    margin: 28px 0;

    color: var(--text-light);

    font-size: 12px;
}

.fresh-auth-divider::before,
.fresh-auth-divider::after {
    content: "";

    flex: 1;

    height: 1px;

    background: var(--border);
}


/* =========================================================
   SOCIAL
========================================================= */

.fresh-social-login {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;
}

.fresh-social-login a {
    height: 45px;

    border: 1px solid var(--border);
    border-radius: 8px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--text);

    text-decoration: none;

    transition: 0.3s ease;
}

.fresh-social-login a:hover {
    border-color: var(--primary);

    color: var(--primary);

    transform: translateY(-2px);
}


/* =========================================================
   REGISTER LINK
========================================================= */

.fresh-auth-switch {
    margin-top: 28px;

    text-align: center;

    color: var(--text-light);

    font-size: 13px;
}

.fresh-auth-switch a {
    color: var(--primary);

    font-weight: 700;

    text-decoration: none;
}

.fresh-auth-switch a:hover {
    color: var(--primary-dark);
}


/* =========================================================
   BACK HOME
========================================================= */

.fresh-back-home-wrapper {
    text-align: center;
}

.fresh-back-home {
    display: inline-flex;

    align-items: center;
    gap: 7px;

    margin-top: 25px;

    color: var(--text-light);

    text-decoration: none;

    font-size: 12px;
}

.fresh-back-home:hover {
    color: var(--primary);
}


/* =========================================================
   FLOATING THEME / RTL CONTROLS
========================================================= */

.auth-floating-controls {
    position: fixed;

    top: 50%;
    right: 25px;

    transform: translateY(-50%);

    z-index: 9999;

    display: flex;

    flex-direction: column;
    gap: 10px;
}

.auth-floating-controls button {
    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: var(--white);
    color: var(--text);

    cursor: pointer;

    transition: all 0.3s ease;

    box-shadow:
        0 8px 25px rgba(17, 24, 39, 0.10);
}

.auth-floating-controls button i,
.auth-floating-controls button span {
    color: var(--primary);
}

.auth-floating-controls button i {
    font-size: 15px;
}

.auth-floating-controls button span {
    font-size: 10px;
    font-weight: 700;
}

.auth-floating-controls button:hover {
    background: var(--primary);

    border-color: var(--primary);

    transform: translateX(-3px);
}

.auth-floating-controls button:hover i,
.auth-floating-controls button:hover span {
    color: #fff;
}


/* =========================================================
   RTL FLOATING CONTROL POSITION
========================================================= */

body.rtl .auth-floating-controls,
html[dir="rtl"] .auth-floating-controls {
    right: auto;
    left: 25px;
}

body.rtl .auth-floating-controls button:hover,
html[dir="rtl"] .auth-floating-controls button:hover {
    transform: translateX(3px);
}


/* =========================================================
   RTL LOGIN FORM
========================================================= */

body.rtl .fresh-auth-page,
html[dir="rtl"] .fresh-auth-page {
    direction: rtl;
}

body.rtl .fresh-auth-heading,
html[dir="rtl"] .fresh-auth-heading {
    text-align: right;
}

body.rtl .fresh-form-group,
html[dir="rtl"] .fresh-form-group {
    text-align: right;
}

body.rtl .fresh-input-wrapper > i,
html[dir="rtl"] .fresh-input-wrapper > i {
    left: auto;
    right: 16px;
}

body.rtl .fresh-password-toggle,
html[dir="rtl"] .fresh-password-toggle {
    right: auto;
    left: 15px;
}

body.rtl .fresh-input-wrapper input,
html[dir="rtl"] .fresh-input-wrapper input {
    padding-left: 45px;
    padding-right: 45px;
}

body.rtl .fresh-auth-submit i,
html[dir="rtl"] .fresh-auth-submit i {
    margin-left: 0;
    margin-right: 8px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .fresh-auth-wrapper {
        max-width: 600px;

        grid-template-columns: 1fr;
    }

    .fresh-auth-visual {
        min-height: 300px;
        max-height: 300px;
    }

    .fresh-auth-visual-content {
        left: 35px;
        right: 35px;
        bottom: 30px;
    }

    .fresh-auth-visual-content h2 {
        font-size: 32px;
    }

    .fresh-auth-form-area {
        padding: 45px 40px;
    }

}


@media (max-width: 600px) {

    .fresh-auth-page {
        padding: 20px 12px;
    }

    .fresh-auth-wrapper {
        border-radius: 15px;
    }

    .fresh-auth-visual {
        min-height: 250px;
        max-height: 250px;
    }

    .fresh-auth-visual-content {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }

    .fresh-auth-visual-content span {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .fresh-auth-visual-content h2 {
        font-size: 27px;
    }

    .fresh-auth-visual-content p {
        display: none;
    }

    .fresh-auth-form-area {
        padding: 35px 25px;
    }

    .fresh-auth-logo {
        margin-bottom: 28px;
    }

    .fresh-auth-heading h1 {
        font-size: 31px;
    }


    /* Floating controls */

    .auth-floating-controls {
        top: 18px;
        right: 15px;

        transform: none;

        flex-direction: row;
    }

    body.rtl .auth-floating-controls,
    html[dir="rtl"] .auth-floating-controls {
        right: auto;
        left: 15px;
    }

    .auth-floating-controls button {
        width: 40px;
        height: 40px;
    }

}


@media (max-width: 400px) {

    .fresh-auth-page {
        padding: 10px;
    }

    .fresh-auth-form-area {
        padding: 30px 18px;
    }

    .fresh-auth-heading h1 {
        font-size: 28px;
    }

    .fresh-auth-options {
        align-items: flex-start;

        flex-direction: column;
    }

}
/* =========================================================
   FRESHCARE REGISTER PAGE
   FINAL AUTH PAGE CSS
   ========================================================= */

.fresh-auth-page {
    min-height: 100vh;
    width: 100%;
    position: relative;
    background: #f7fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    overflow: hidden;
}

.fresh-auth-wrapper {
    width: min(1100px, 100%);
    min-height: 700px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(17, 24, 39, 0.12);
    position: relative;
    z-index: 2;
}

/* LEFT IMAGE */

.fresh-auth-visual {
    position: relative;
    min-height: 700px;
    overflow: hidden;
}

.fresh-auth-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.fresh-auth-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.68),
        rgba(0, 0, 0, 0.08)
    );
    z-index: 1;
}

.fresh-auth-visual-content {
    position: absolute;
    left: 50px;
    right: 50px;
    bottom: 55px;
    color: #ffffff;
    z-index: 2;
}

.fresh-auth-visual-content > span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
    color: #ffffff;
}

.fresh-auth-visual-content h1 {
    margin: 0 0 18px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;
    font-weight: 400;
    color: #ffffff;
}

.fresh-auth-visual-content h1 strong {
    font-weight: 700;
    color: #ffffff;
}

.fresh-auth-visual-content p {
    max-width: 430px;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
}


/* RIGHT FORM */

.fresh-auth-form-area {
    padding: 55px 65px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fresh-auth-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    text-decoration: none;
    margin-bottom: 35px;
    
}

.fresh-auth-logo .logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #ffffff;
    font-size: 17px;
}

.fresh-auth-logo .logo-text {
    font-size: 25px;
    font-weight: 800;
    color: #111827;
}

.fresh-auth-logo .logo-text span {
    color: var(--primary);
}


/* HEADING */

.fresh-auth-heading {
    margin-bottom: 25px;
}

.fresh-auth-heading > span {
    display: block;
    margin-bottom: 9px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.fresh-auth-heading h2 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 400;
}

.fresh-auth-heading h2 strong {
    font-weight: 700;
}

.fresh-auth-heading p {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
}


/* FORM */

#registerForm {
    width: 100%;
}

#registerForm .fresh-form-group {
    margin-bottom: 15px;
}

#registerForm .fresh-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
}

.fresh-input-wrapper {
    position: relative;
    width: 100%;
}

.fresh-input-wrapper > i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
    z-index: 2;
    pointer-events: none;
}

.fresh-input-wrapper input {
    width: 100%;
    height: 48px;
    padding: 0 45px;
    border: 1px solid #e5e7eb;
    border-radius: 9px;
    background: #ffffff;
    color: #111827;
    font-family: inherit;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
    box-sizing: border-box;
}

.fresh-input-wrapper input::placeholder {
    color: #a1a1aa;
}

.fresh-input-wrapper input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21, 150, 168, 0.10);
}


/* PASSWORD EYE */

.fresh-password-toggle {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fresh-password-toggle:hover {
    color: var(--primary);
}


/* TERMS */

#registerForm .fresh-auth-options {
    margin: 6px 0 20px;
}

.fresh-check-label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.5;
    cursor: pointer;
}

.fresh-check-label input {
    width: 15px;
    height: 15px;
    margin: 2px 0 0;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.fresh-check-label a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}


/* CREATE ACCOUNT BUTTON */

.fresh-auth-submit {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}


/* DIVIDER */

.fresh-auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 23px 0 17px;
}

.fresh-auth-divider::before,
.fresh-auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.fresh-auth-divider span {
    color: #9ca3af;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    white-space: nowrap;
}


/* SOCIAL */

.fresh-social-login {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.fresh-social-login a {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    background: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.fresh-social-login a:hover {
    color: #ffffff;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}


/* SIGN IN */

.fresh-auth-switch {
    margin-top: 20px;
    text-align: center;
    font-size: 15px;
    color: #6b7280;
}

.fresh-auth-switch a {
    margin-left: 5px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}


/* BACK HOME */

.fresh-back-home {
    margin-top: 17px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    color: #9ca3af;
    font-size: 15px;
    text-decoration: none;
}

.fresh-back-home:hover {
    color: var(--primary);
}


/* =========================================================
   FLOATING DARK / RTL CONTROLS
   ========================================================= */

.auth-floating-controls {
    position: fixed;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999999;
}

.auth-floating-controls button {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    background: #ffffff;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(17,24,39,0.12);
    transition: all 0.3s ease;
}

.auth-floating-controls button:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
}


/* =========================================================
   RTL
   ========================================================= */

html[dir="rtl"] .fresh-auth-form-area,
body.rtl .fresh-auth-form-area {
    text-align: right;
}

html[dir="rtl"] .fresh-input-wrapper > i,
body.rtl .fresh-input-wrapper > i {
    left: auto;
    right: 15px;
}

html[dir="rtl"] .fresh-input-wrapper input,
body.rtl .fresh-input-wrapper input {
    padding-left: 45px;
    padding-right: 45px;
}

html[dir="rtl"] .fresh-password-toggle,
body.rtl .fresh-password-toggle {
    right: auto;
    left: 13px;
}

html[dir="rtl"] .fresh-auth-switch a,
body.rtl .fresh-auth-switch a {
    margin-left: 0;
    margin-right: 5px;
}

html[dir="rtl"] .auth-floating-controls,
body.rtl .auth-floating-controls {
    right: auto;
    left: 22px;
}


/* =========================================================
   DARK MODE
   ========================================================= */

body.dark-mode .fresh-auth-page {
    background: #0b1117;
}

body.dark-mode .fresh-auth-wrapper {
    background: #111820;
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}

body.dark-mode .fresh-auth-form-area {
    background: #111820;
}

body.dark-mode .fresh-auth-logo .logo-text,
body.dark-mode .fresh-auth-heading h2 {
    color: #ffffff;
}

body.dark-mode .fresh-auth-heading p {
    color: #9ca3af;
}

body.dark-mode #registerForm .fresh-form-group label {
    color: #d1d5db;
}

body.dark-mode .fresh-input-wrapper input {
    background: #18212b;
    border-color: #2d3945;
    color: #ffffff;
}

body.dark-mode .fresh-input-wrapper input::placeholder {
    color: #6b7280;
}

body.dark-mode .fresh-input-wrapper input:focus {
    border-color: var(--primary);
}

body.dark-mode .fresh-check-label {
    color: #9ca3af;
}

body.dark-mode .fresh-auth-divider::before,
body.dark-mode .fresh-auth-divider::after {
    background: #2d3945;
}

body.dark-mode .fresh-social-login a {
    background: #18212b;
    border-color: #2d3945;
    color: #d1d5db;
}

body.dark-mode .fresh-auth-switch {
    color: #9ca3af;
}

body.dark-mode .fresh-back-home {
    color: #6b7280;
}

body.dark-mode .auth-floating-controls button {
    background: #18212b;
    border-color: #2d3945;
    color: #d1d5db;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .fresh-auth-page {
        padding: 25px;
    }

    .fresh-auth-wrapper {
        grid-template-columns: 1fr;
        max-width: 600px;
        min-height: auto;
    }

    .fresh-auth-visual {
        min-height: 300px;
        height: 300px;
    }

    .fresh-auth-visual-content {
        left: 35px;
        right: 35px;
        bottom: 30px;
    }

    .fresh-auth-visual-content h1 {
        font-size: 40px;
    }

    .fresh-auth-form-area {
        padding: 40px 45px;
    }

    .auth-floating-controls {
        top: 20px;
        right: 20px;
        transform: none;
        flex-direction: row;
    }

    html[dir="rtl"] .auth-floating-controls,
    body.rtl .auth-floating-controls {
        right: auto;
        left: 20px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .fresh-auth-page {
        min-height: 100vh;
        padding: 15px;
        align-items: flex-start;
    }

    .fresh-auth-wrapper {
        width: 100%;
        margin-top: 65px;
        border-radius: 18px;
    }

    .fresh-auth-visual {
        min-height: 230px;
        height: 230px;
    }

    .fresh-auth-visual-content {
        left: 25px;
        right: 25px;
        bottom: 25px;
    }

    .fresh-auth-visual-content h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .fresh-auth-visual-content p {
        font-size: 12px;
        line-height: 1.6;
    }

    .fresh-auth-form-area {
        padding: 30px 25px;
    }

    .fresh-auth-logo {
        margin-bottom: 25px;
    }

    .fresh-auth-heading h2 {
        font-size: 31px;
    }

    .fresh-auth-heading {
        margin-bottom: 22px;
    }

    .auth-floating-controls {
        top: 15px;
        right: 15px;
    }

    html[dir="rtl"] .auth-floating-controls,
    body.rtl .auth-floating-controls {
        left: 15px;
    }

    .auth-floating-controls button {
        width: 40px;
        height: 40px;
    }
}
/* =========================================================
   HOW IT WORKS PAGE
========================================================= */


/* =========================================================
   HERO
========================================================= */

.how-work-hero {
    position: relative;
    min-height: 590px;

    background-image:
        url("../images/how\ -1.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.how-work-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 28, 35, 0.82),
            rgba(10, 28, 35, 0.48),
            rgba(10, 28, 35, 0.15)
        );
}

.how-work-hero .container {
    position: relative;
    z-index: 2;
}

.how-work-hero-content {
    max-width: 650px;
    padding: 100px 0;
    
}

.how-work-eyebrow {
    display: inline-block;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 20px;
}

.how-work-hero h1 {
    color: #ffffff;

    font-size: clamp(48px, 6vw, 78px);

    line-height: 1.02;

    margin: 0 0 25px;

    font-weight: 400;
}

.how-work-hero h1 strong {
    display: block;

    font-weight: 700;
}

.how-work-hero p {
    max-width: 570px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 32px;
}

.how-work-hero .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}


/* =========================================================
   INTRO
========================================================= */

.how-work-intro {
    padding: 110px 0;

    background: var(--background);
}

.how-work-intro-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 80px;

    align-items: center;
}

.how-work-intro-content {
    max-width: 570px;
}

.how-work-intro-content h2 {
    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.15;

    margin: 15px 0 25px;

    color: var(--black);

    font-weight: 400;
}

.how-work-intro-content h2 strong {
    display: block;

    font-weight: 700;
}

.how-work-intro-content p {
    color: var(--text-light);

    font-size: 16px;

    line-height: 1.85;

    margin-bottom: 17px;
    text-align: justify;
}

.how-work-mini-points {
    margin-top: 30px;

    display: flex;
    flex-direction: column;

    gap: 13px;
}

.how-work-mini-points div {
    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--text);

    font-size: 14px;

    font-weight: 600;
}

.how-work-mini-points i {
    color: var(--primary);

    font-size: 17px;
}


/* IMAGE */

.how-work-intro-image {
    position: relative;

    min-height: 540px;
}

.how-work-intro-image img {
    width: 100%;
    height: 540px;

    object-fit: cover;

    border-radius: 4px;

    display: block;
}

.how-work-image-card {
    position: absolute;

    left: -35px;
    bottom: 35px;

    background: var(--white);

    padding: 20px 25px;

    display: flex;
    align-items: center;

    gap: 15px;

    box-shadow: var(--shadow);

    border-radius: 8px;
}

.how-work-image-card > span {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-light);

    color: var(--primary);

    border-radius: 50%;
}

.how-work-image-card strong {
    display: block;

    color: var(--black);

    font-size: 14px;

    margin-bottom: 4px;
}

.how-work-image-card small {
    color: var(--text-light);

    font-size: 15px;
}


/* =========================================================
   PROCESS SECTION
========================================================= */

.how-work-process {
    padding: 110px 0;

    background: var(--background-soft);
}

.section-header.centered {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 65px;
}

.section-header.centered h2 {
    margin: 15px 0 18px;

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.15;

    font-weight: 400;

    color: var(--black);
}

.section-header.centered h2 strong {
    font-weight: 700;
}

.section-header.centered p {
    color: var(--text-light);

    line-height: 1.8;

    font-size: 15px;
}


/* STEPS */

.how-work-steps {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 20px;

    position: relative;
}

.how-work-step {
    position: relative;

    background: var(--white);

    padding: 35px 25px 32px;

    border-radius: 10px;

    min-height: 310px;

    box-shadow: var(--shadow-small);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.how-work-step:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);
}

.how-work-step-number {
    position: absolute;

    top: 18px;
    right: 20px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    color: var(--primary);

    opacity: 0.7;
}

.how-work-step-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-light);

    color: var(--primary);

    border-radius: 50%;

    font-size: 21px;

    margin-bottom: 28px;
}

.how-work-step-label {
    display: block;

    color: var(--primary);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.8px;

    margin-bottom: 10px;
}

.how-work-step h3 {
    font-size: 20px;

    color: var(--black);

    margin-bottom: 14px;
}

.how-work-step p {
    color: var(--text-light);

    font-size: 14px;

    line-height: 1.75;

    margin: 0;
}


/* =========================================================
   VISUAL BANNER
========================================================= */

.how-work-banner {
    padding: 90px 0;

    background: var(--background);
}

.how-work-banner-box {
    display: grid;

    grid-template-columns: 1fr 1fr;

    background: var(--primary-light);

    overflow: hidden;

    border-radius: 10px;
}

.how-work-banner-image {
    min-height: 540px;
}

.how-work-banner-image img {
    width: 100%;
    height: 100%;

    min-height: 540px;

    object-fit: cover;

    display: block;
}

.how-work-banner-content {
    padding: 75px 65px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.how-work-banner-content h2 {
    color: var(--black);

    font-size: clamp(35px, 4vw, 52px);

    line-height: 1.12;

    font-weight: 400;

    margin: 15px 0 22px;
}

.how-work-banner-content h2 strong {
    display: block;

    font-weight: 700;
}

.how-work-banner-content > p {
    color: var(--text-light);

    line-height: 1.85;

    font-size: 15px;

    max-width: 500px;

    margin-bottom: 35px;
    text-align: justify;
}

.how-work-banner-features {
    display: flex;

    flex-direction: column;

    gap: 22px;
}

.how-work-banner-features > div {
    display: flex;

    gap: 15px;

    align-items: flex-start;
}

.how-work-banner-features > div > i {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);

    color: var(--primary);

    border-radius: 50%;
}

.how-work-banner-features strong {
    display: block;

    color: var(--black);

    font-size: 14px;

    margin-bottom: 4px;
}

.how-work-banner-features span {
    display: block;

    color: var(--text-light);

    font-size: 13px;

    line-height: 1.5;
}


/* =========================================================
   CARE SECTION
========================================================= */

.how-work-care {
    padding: 50px 0;

    background: var(--background-soft);
}

.how-work-care-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}

.how-work-care-card {
    background: var(--white);

    padding: 35px 28px;

    border-radius: 10px;

    border: 1px solid var(--border);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.how-work-care-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow-small);
}

.how-work-care-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-light);

    color: var(--primary);

    border-radius: 50%;

    font-size: 19px;

    margin-bottom: 24px;
}

.how-work-care-card h3 {
    color: var(--black);

    font-size: 19px;

    margin-bottom: 13px;
}

.how-work-care-card p {
    color: var(--text-light);

    font-size: 14px;

    line-height: 1.75;

    margin: 0;
}


/* =========================================================
   CTA
========================================================= */

.how-work-cta {
    position: relative;

    padding: 120px 0;

    background-image:
        linear-gradient(
            rgba(10, 35, 42, 0.82),
            rgba(10, 35, 42, 0.82)
        ),
        url("../images/lan-11.png");

    background-size: cover;

    background-position: center;
}

.how-work-cta-content {
    max-width: 720px;

    margin: auto;

    text-align: center;
}

.how-work-cta .section-subtitle {
    color: #ffffff;
}

.how-work-cta h2 {
    color: #ffffff;

    font-size: clamp(36px, 5vw, 58px);

    line-height: 1.12;

    font-weight: 400;

    margin: 18px 0 22px;
}

.how-work-cta h2 strong {
    font-weight: 700;
}

.how-work-cta p {
    color: rgba(255, 255, 255, 0.82);

    font-size: 16px;

    line-height: 1.8;

    max-width: 570px;

    margin: 0 auto 32px;
}

.how-work-cta .btn {
    display: inline-flex;

    align-items: center;

    gap: 12px;
}


/* =========================================================
   RTL
========================================================= */

body.rtl .how-work-hero-overlay {
    background:
        linear-gradient(
            270deg,
            rgba(10, 28, 35, 0.82),
            rgba(10, 28, 35, 0.48),
            rgba(10, 28, 35, 0.15)
        );
}

body.rtl .how-work-image-card {
    left: auto;
    right: -35px;
}

body.rtl .how-work-step-number {
    right: auto;
    left: 20px;
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark-mode .how-work-intro,
body.dark-mode .how-work-banner {
    background: var(--background);
}

body.dark-mode .how-work-process,
body.dark-mode .how-work-care {
    background: var(--background-soft);
}

body.dark-mode .how-work-intro-content h2,
body.dark-mode .section-header.centered h2,
body.dark-mode .how-work-step h3,
body.dark-mode .how-work-banner-content h2,
body.dark-mode .how-work-care-card h3,
body.dark-mode .how-work-image-card strong,
body.dark-mode .how-work-banner-features strong {
    color: var(--black);
}

body.dark-mode .how-work-step,
body.dark-mode .how-work-care-card {
    background: var(--background);
    border-color: var(--border);
}

body.dark-mode .how-work-image-card {
    background: var(--background);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {

    .how-work-intro-grid {
        gap: 45px;
    }

    .how-work-steps {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .how-work-care-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 900px) {

    .how-work-hero {
        min-height: 520px;
    }

    .how-work-hero-content {
        padding: 80px 0;
    }

    .how-work-intro-grid {
        grid-template-columns: 1fr;
    }

    .how-work-intro-content {
        max-width: 100%;
    }

    .how-work-intro-image {
        min-height: 450px;
    }

    .how-work-intro-image img {
        height: 450px;
    }

    .how-work-image-card {
        left: 25px;
    }

    body.rtl .how-work-image-card {
        right: 25px;
    }

    .how-work-banner-box {
        grid-template-columns: 1fr;
    }

    .how-work-banner-image {
        min-height: 400px;
    }

    .how-work-banner-image img {
        min-height: 400px;
        height: 400px;
    }

    .how-work-banner-content {
        padding: 55px 40px;
    }

}


@media (max-width: 600px) {

    .how-work-hero {
        min-height: 500px;
    }

    .how-work-hero-content {
        padding: 70px 0;
    }

    .how-work-hero h1 {
        font-size: 44px;
    }

    .how-work-hero p {
        font-size: 15px;
    }

    .how-work-intro,
    .how-work-process,
    .how-work-banner,
    .how-work-care {
        padding: 75px 0;
    }

    .how-work-intro-image {
        min-height: 360px;
    }

    .how-work-intro-image img {
        height: 360px;
    }

    .how-work-image-card {
        left: 15px;
        bottom: 20px;

        padding: 15px;
    }

    body.rtl .how-work-image-card {
        right: 15px;
    }

    .how-work-steps {
        grid-template-columns: 1fr;
    }

    .how-work-step {
        min-height: auto;
    }

    .how-work-care-grid {
        grid-template-columns: 1fr;
    }

    .how-work-banner-image,
    .how-work-banner-image img {
        min-height: 300px;
        height: 300px;
    }

    .how-work-banner-content {
        padding: 45px 25px;
    }

    .how-work-banner-content h2 {
        font-size: 36px;
    }

    .how-work-cta {
        padding: 80px 0;
    }

    .how-work-cta h2 {
        font-size: 38px;
    }

}


@media (max-width: 400px) {

    .how-work-hero h1 {
        font-size: 38px;
    }

    .how-work-step {
        padding: 30px 20px;
    }

    .how-work-banner-content {
        padding: 40px 20px;
    }

}
/* =========================================================
   HOW IT WORKS — JOURNEY PROCESS
========================================================= */

.how-work-process {
    padding: 90px 0 100px;
    background: var(--background-soft);
}


/* SECTION HEADING */

.how-work-process .section-header {
    margin-bottom: 70px;
}


/* JOURNEY */

.how-work-journey {
    position: relative;

    display: grid;
    grid-template-columns: repeat(5, 1fr);

    column-gap: 35px;
}


/* CONNECTING LINE */

.how-work-journey::before {
    content: "";

    position: absolute;

    top: 31px;
    left: 9%;
    right: 9%;

    height: 1px;

    background: var(--border);

    z-index: 0;
}


/* STEP */

.how-work-journey-step {
    position: relative;

    z-index: 1;

    min-width: 0;
}


/* TOP AREA */

.how-work-journey-top {
    height: 65px;

    display: flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 25px;
}


/* NUMBER */

.how-work-journey-number {
    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    color: var(--primary);

    background: var(--background-soft);

    padding-right: 8px;
}


/* ICON */

.how-work-journey-icon {
    width: 62px;
    height: 62px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary);

    color: #ffffff;

    border-radius: 50%;

    font-size: 20px;

    box-shadow:
        0 0 0 8px var(--background-soft);
}


/* LABEL */

.how-work-journey-step .how-work-step-label {
    display: block;

    color: var(--primary);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 11px;
    
}


/* HEADING */

.how-work-journey-step h3 {
    color: var(--black);

    font-size: 20px;

    line-height: 1.25;

    margin: 0 0 14px;

    font-weight: 700;
}


/* TEXT */

.how-work-journey-step p {
    color: var(--text-light);

    font-size: 15px;

    line-height: 1.75;

    max-width: 210px;

    margin: 0;
    text-align: justify;
}


/* =========================================================
   HOVER
========================================================= */

.how-work-journey-step:hover
.how-work-journey-icon {
    transform: translateY(-4px);

    transition: transform .3s ease;
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark-mode .how-work-journey-number {
    background: var(--background-soft);
}

body.dark-mode .how-work-journey-icon {
    box-shadow:
        0 0 0 8px var(--background-soft);
}


/* =========================================================
   RTL
========================================================= */

body.rtl .how-work-journey {
    direction: rtl;
}

body.rtl .how-work-journey-number {
    padding-right: 0;
    padding-left: 8px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .how-work-journey {
        grid-template-columns:
            repeat(3, 1fr);

        row-gap: 55px;
    }

    .how-work-journey::before {
        display: none;
    }

    .how-work-journey-step {
        padding-right: 20px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .how-work-process {
        padding: 70px 0;
    }

    .how-work-process .section-header {
        margin-bottom: 50px;
    }

    .how-work-journey {
        display: block;
    }

    .how-work-journey-step {
        position: relative;

        padding: 0 0 45px 75px;

        margin-bottom: 25px;
    }

    .how-work-journey-step:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
    }


    /* VERTICAL LINE */

    .how-work-journey-step:not(:last-child)::before {
        content: "";

        position: absolute;

        top: 65px;
        left: 30px;

        width: 1px;
        height: calc(100% - 40px);

        background: var(--border);
    }


    .how-work-journey-top {
        position: static;

        height: 65px;

        margin-bottom: 22px;
    }


    .how-work-journey-number {
        position: absolute;

        left: 0;
        top: 24px;

        background: transparent;

        padding: 0;
    }


    .how-work-journey-icon {
        position: relative;

        width: 60px;
        height: 60px;

        margin-left: 28px;
    }


    body.rtl .how-work-journey-step {
        padding-left: 0;
        padding-right: 75px;
    }

    body.rtl .how-work-journey-step:not(:last-child)::before {
        left: auto;
        right: 30px;
    }

    body.rtl .how-work-journey-number {
        left: auto;
        right: 0;
    }

    body.rtl .how-work-journey-icon {
        margin-left: 0;
        margin-right: 28px;
    }


    .how-work-journey-step p {
        max-width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .how-work-journey-step {
        padding-left: 65px;
    }

    body.rtl .how-work-journey-step {
        padding-left: 0;
        padding-right: 65px;
    }

    .how-work-journey-icon {
        width: 54px;
        height: 54px;

        font-size: 18px;
    }

}
/* =========================================================
   HOW IT WORKS — BEHIND THE CARE
   Editorial List Design
========================================================= */

.how-work-care {
    padding: 50px;
    background: var(--background);
}

.how-work-care .section-header {
    max-width: 720px;
    margin: 0 auto 80px;
}


/* Main List */

.how-work-care-list {
    max-width: 1000px;
    margin: 0 auto;
}


/* Individual Item */

.how-work-care-item {
    position: relative;

    display: grid;
    grid-template-columns: 100px 70px 1fr;
    align-items: center;

    column-gap: 35px;

    padding: 42px 0;

    border-top: 1px solid var(--border);

    transition:
        padding-left .35s ease,
        padding-right .35s ease;
}


/* Last Border */

.how-work-care-item:last-child {
    border-bottom: 1px solid var(--border);
}


/* Large Number */

.how-work-care-number {
    font-size: 48px;
    line-height: 1;

    font-weight: 300;

    letter-spacing: -2px;

    color: var(--primary);

    transition:
        color .35s ease,
        transform .35s ease;
}


/* Icon */

.how-work-care-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);

    font-size: 22px;

    border-left: 1px solid var(--primary);

    transition:
        transform .35s ease,
        color .35s ease;
}


/* Content */

.how-work-care-content {
    max-width: 620px;
}


/* Small Label */

.how-work-care-label {
    display: block;

    margin-bottom: 9px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    color: var(--primary);
}


/* Heading */

.how-work-care-content h3 {
    margin: 0 0 12px;

    color: var(--black);

    font-size: 25px;
    line-height: 1.25;

    font-weight: 700;

    transition: transform .35s ease;
}


/* Paragraph */

.how-work-care-content p {
    margin: 0;

    max-width: 600px;

    color: var(--text-light);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================================
   HOVER
========================================================= */

.how-work-care-item:hover {
    padding-left: 12px;
}

.how-work-care-item:hover .how-work-care-number {
    color: var(--primary);
    transform: translateX(4px);
}

.how-work-care-item:hover .how-work-care-icon {
    transform: translateX(5px);
}

.how-work-care-item:hover .how-work-care-content h3 {
    transform: translateX(4px);
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark-mode .how-work-care-number {
    color: var(--border);
}

body.dark-mode .how-work-care-item:hover .how-work-care-number {
    color: var(--primary);
}


/* =========================================================
   RTL
========================================================= */

body.rtl .how-work-care-item {
    direction: rtl;
}

body.rtl .how-work-care-icon {
    border-left: none;
    border-right: 1px solid var(--primary);
}

body.rtl .how-work-care-item:hover {
    padding-left: 0;
    padding-right: 12px;
}

body.rtl .how-work-care-item:hover .how-work-care-number {
    transform: translateX(-4px);
}

body.rtl .how-work-care-item:hover .how-work-care-icon {
    transform: translateX(-5px);
}

body.rtl .how-work-care-item:hover .how-work-care-content h3 {
    transform: translateX(-4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 800px) {

    .how-work-care {
        padding: 85px 0 95px;
    }

    .how-work-care .section-header {
        margin-bottom: 60px;
    }

    .how-work-care-item {
        grid-template-columns: 75px 60px 1fr;
        column-gap: 25px;
        padding: 35px 0;
    }

    .how-work-care-number {
        font-size: 38px;
    }

    .how-work-care-icon {
        width: 52px;
        height: 52px;
        font-size: 19px;
    }

    .how-work-care-content h3 {
        font-size: 22px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .how-work-care {
        padding: 70px 0 80px;
    }

    .how-work-care .section-header {
        margin-bottom: 45px;
    }

    .how-work-care-item {
        grid-template-columns: 55px 45px 1fr;
        column-gap: 16px;

        padding: 28px 0;
    }

    .how-work-care-number {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .how-work-care-icon {
        width: 42px;
        height: 42px;

        font-size: 16px;
    }

    .how-work-care-label {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .how-work-care-content h3 {
        font-size: 19px;
        margin-bottom: 9px;
    }

    .how-work-care-content p {
        font-size: 13px;
        line-height: 1.7;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .how-work-care-item {
        grid-template-columns: 42px 38px 1fr;
        column-gap: 12px;
    }

    .how-work-care-number {
        font-size: 25px;
    }

    .how-work-care-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .how-work-care-content h3 {
        font-size: 17px;
    }

    .how-work-care-content p {
        font-size: 12px;
    }

}
.how-work-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-work-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.how-work-hero-content h1 {
    margin-left: auto;
    margin-right: auto;
}

.how-work-hero-content p {
    margin-left: auto;
    margin-right: auto;
}

.how-work-hero-content .btn {
    display: inline-flex;
}

/* =========================================================
   FRESHCARE USER DASHBOARD
========================================================= */


/* =========================================================
   DASHBOARD WRAPPER
========================================================= */

.dashboard-wrapper {
    min-height: 100vh;
    display: flex;
    background: var(--background-soft);
}


/* =========================================================
   SIDEBAR
========================================================= */

.dashboard-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 255px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--background);
    border-right: 1px solid var(--border);
    z-index: 1000;
    transition: transform .35s ease;
}


/* =========================================================
   LOGO
========================================================= */

.dashboard-logo {
    height: 90px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.dashboard-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.dashboard-logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 16px;
}

.dashboard-logo-text {
    color: var(--black);
    font-size: 23px;
    font-weight: 800;
}

.dashboard-logo-text span {
    color: var(--primary);
}


/* =========================================================
   SIDEBAR NAVIGATION
========================================================= */

.dashboard-nav {
    flex: 1;
    padding: 30px 18px;
    overflow-y: auto;
}

.dashboard-nav-title {
    display: block;
    margin: 0 12px 12px;
    color: var(--text-light);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.dashboard-account-title {
    margin-top: 34px;
}

.dashboard-nav-link {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 5px;
    padding: 0 13px;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: all .3s ease;
}

.dashboard-nav-link i {
    width: 20px;
    text-align: center;
    font-size: 15px;
}

.dashboard-nav-link span {
    flex: 1;
}

.dashboard-nav-link small {
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 9px;
    font-weight: 700;
}

.dashboard-nav-link:hover,
.dashboard-nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}


/* =========================================================
   SIDEBAR BOTTOM
========================================================= */

.dashboard-sidebar-bottom {
    padding: 20px 18px;
    border-top: 1px solid var(--border);
}

.dashboard-sidebar-bottom a {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 13px;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
    transition: all .3s ease;
}

.dashboard-sidebar-bottom a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.dashboard-sidebar-bottom .dashboard-logout:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, .08);
}


/* =========================================================
   MAIN
========================================================= */

.dashboard-main {
    width: calc(100% - 255px);
    min-height: 100vh;
    margin-left: 255px;
}


/* =========================================================
   TOPBAR
========================================================= */

.dashboard-topbar {
    height: 90px;
    padding: 0 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

.dashboard-topbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dashboard-label {
    display: block;
    margin-bottom: 4px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.dashboard-topbar h1 {
    margin: 0;
    color: var(--black);
    font-size: 22px;
    line-height: 1.2;
}

.dashboard-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--background);
    color: var(--black);
    cursor: pointer;
}

.dashboard-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dashboard-tool-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--background);
    color: var(--text);
    cursor: pointer;
    transition: all .3s ease;
}

.dashboard-tool-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

.dashboard-rtl-btn {
    height: 40px;
    padding: 0 11px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: var(--background);
    color: var(--text);
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}

.dashboard-notification span {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.dashboard-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
    padding-left: 18px;
    border-left: 1px solid var(--border);
}

.dashboard-user-avatar {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
}

.dashboard-user-details {
    display: flex;
    flex-direction: column;
}

.dashboard-user-details strong {
    color: var(--black);
    font-size: 12px;
}

.dashboard-user-details span {
    margin-top: 2px;
    color: var(--text-light);
    font-size: 9px;
}

.dashboard-user-arrow {
    margin-left: 5px;
    color: var(--text-light);
    font-size: 9px;
}


/* =========================================================
   CONTENT
========================================================= */

.dashboard-content {
    max-width: 1450px;
    margin: 0 auto;
    padding: 35px;
}


/* =========================================================
   WELCOME
========================================================= */

.dashboard-welcome {
    position: relative;
    min-height: 245px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 50px;
    overflow: hidden;
    background: var(--primary);
    border-radius: 12px;
}

.dashboard-welcome-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.dashboard-welcome-content > span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .8);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.dashboard-welcome-content h2 {
    margin: 0 0 15px;
    color: var(--white);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
    letter-spacing: -1.5px;
}

.dashboard-welcome-content h2 strong {
    display: block;
    color: var(--white);
    font-weight: 400;
}

.dashboard-welcome-content p {
    max-width: 590px;
    margin: 0 0 24px;
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    line-height: 1.7;
}

.dashboard-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 18px;
    color: var(--black);
    background: var(--white);
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    transition: all .3s ease;
}

.dashboard-primary-btn:hover {
    transform: translateY(-2px);
}

.dashboard-welcome-decoration {
    position: absolute;
    right: 50px;
    bottom: -45px;
    color: rgba(255, 255, 255, .12);
    font-size: 210px;
    transform: rotate(-15deg);
}


/* =========================================================
   STATS
========================================================= */

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 20px;
}

.dashboard-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.dashboard-stat-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 8px;
    font-size: 17px;
}

.dashboard-stat span {
    display: block;
    margin-bottom: 4px;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.dashboard-stat strong {
    display: block;
    color: var(--black);
    font-size: 22px;
    line-height: 1.2;
}

.dashboard-stat small {
    display: block;
    margin-top: 4px;
    color: var(--text-light);
    font-size: 15px;
}


/* =========================================================
   MAIN GRID
========================================================= */

.dashboard-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(280px, .8fr);
    gap: 20px;
    margin-top: 20px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.dashboard-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.dashboard-section-heading > div span {
    display: block;
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.dashboard-section-heading h2 {
    margin: 0;
    color: var(--black);
    font-size: 22px;
}

.dashboard-section-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   CURRENT ORDER
========================================================= */

.dashboard-order-section {
    padding: 28px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.dashboard-section-heading > div > span {
    display: block;
}

.dashboard-status {
    padding: 7px 11px;
    color: var(--primary);
    background: var(--primary-light);
    border-radius: 20px;
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
}

.dashboard-order-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.dashboard-order-details span {
    display: block;
    margin-bottom: 7px;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
}

.dashboard-order-details strong {
    display: block;
    color: var(--black);
    font-size: 15px;
    line-height: 1.5;
}


/* =========================================================
   ORDER PROGRESS
========================================================= */

.dashboard-progress {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 28px 0 18px;
}

.dashboard-progress-line {
    position: absolute;
    top: 47px;
    left: 9%;
    right: 9%;
    height: 1px;
    background: var(--border);
}

.dashboard-progress-step {
    position: relative;
    z-index: 2;
    width: 20%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 9px;
    text-align: center;
}

.dashboard-progress-step > div {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-light);
    font-size: 13px;
}

.dashboard-progress-step.active > div {
    color: var(--white);
    background: var(--primary);
    border-color: var(--primary);
}

.dashboard-progress-step span {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 600;
}

.dashboard-progress-step.active span {
    color: var(--primary);
}


/* =========================================================
   ORDER FOOTER
========================================================= */

.dashboard-order-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
}

.dashboard-order-footer span {
    color: var(--text-light);
    font-size: 13px;
}

.dashboard-order-footer strong {
    color: var(--black);
}

.dashboard-order-footer a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   BOOKING CARD
========================================================= */

.dashboard-booking-card {
    position: relative;
    min-height: 100%;
    padding: 32px;
    overflow: hidden;
    background: var(--black);
    border-radius: 10px;
}

.dashboard-booking-card > span {
    display: block;
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.dashboard-booking-card h2 {
    position: relative;
    z-index: 2;
    margin: 0 0 15px;
    color: var(--white);
    font-size: 29px;
    line-height: 1.15;
}

.dashboard-booking-card h2 strong {
    display: block;
    color: var(--primary);
    font-weight: 500;
}

.dashboard-booking-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 25px;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    line-height: 1.7;
}

.dashboard-booking-card > a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--white);
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
}

.booking-decoration {
    position: absolute;
    right: -35px;
    bottom: -35px;
    color: rgba(255, 255, 255, .06);
    font-size: 170px;
    transform: rotate(-15deg);
}


/* =========================================================
   RECENT ORDERS
========================================================= */

.dashboard-recent-section {
    margin-top: 20px;
    padding: 28px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.dashboard-order-table {
    width: 100%;
}

.dashboard-table-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.2fr .8fr 1fr .5fr;
    align-items: center;
    gap: 15px;
    min-height: 60px;
    border-bottom: 1px solid var(--border);
}

.dashboard-table-row:last-child {
    border-bottom: none;
}

.dashboard-table-row > span {
    color: var(--text);
    font-size: 13px;
}

.dashboard-table-head {
    min-height: 38px;
}

.dashboard-table-head > span {
    color: var(--text-light);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.dashboard-order-id {
    color: var(--primary) !important;
    font-weight: 700;
}

.dashboard-table-row em {
    display: inline-block;
    padding: 6px 9px;
    border-radius: 20px;
    font-style: normal;
    font-size: 13px;
    font-weight: 700;
}

.status-completed {
    color: #218838;
    background: rgba(40, 167, 69, .1);
}

.dashboard-view-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 5px;
    background: var(--background);
    color: var(--primary);
    cursor: pointer;
}


/* =========================================================
   BOTTOM GRID
========================================================= */

.dashboard-bottom-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 20px;
    margin-top: 20px;
}

.dashboard-address-section,
.dashboard-support-section {
    padding: 28px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.dashboard-section-heading button {
    border: none;
    background: transparent;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.dashboard-address {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.dashboard-address-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 8px;
}

.dashboard-address strong {
    display: block;
    color: var(--black);
    font-size: 13px;
}

.dashboard-address p {
    margin: 4px 0;
    color: var(--text);
    font-size: 13px;
}

.dashboard-address span {
    color: var(--text-light);
    font-size: 13px;
}

.dashboard-support-section {
    background: var(--primary-light);
    border-color: transparent;
}

.dashboard-support-section > span {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.dashboard-support-section h2 {
    margin: 10px 0;
    color: var(--black);
    font-size: 26px;
    line-height: 1.15;
}

.dashboard-support-section h2 strong {
    color: var(--primary);
}

.dashboard-support-section p {
    max-width: 350px;
    margin: 0 0 18px;
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.7;
}

.dashboard-support-section a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   FOOTER
========================================================= */

.dashboard-footer {
    padding: 22px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
}

.dashboard-footer p,
.dashboard-footer span {
    margin: 0;
    color: var(--text-light);
    font-size: 9px;
}


/* =========================================================
   RTL
========================================================= */

html[dir="rtl"] .dashboard-sidebar {
    left: auto;
    right: 0;
    border-right: none;
    border-left: 1px solid var(--border);
}

html[dir="rtl"] .dashboard-main {
    margin-left: 0;
    margin-right: 255px;
}

html[dir="rtl"] .dashboard-user {
    margin-left: 0;
    margin-right: 10px;
    padding-left: 0;
    padding-right: 18px;
    border-left: none;
    border-right: 1px solid var(--border);
}

html[dir="rtl"] .dashboard-welcome-decoration {
    right: auto;
    left: 50px;
    transform: rotate(15deg);
}

html[dir="rtl"] .dashboard-table-row {
    direction: rtl;
}


/* =========================================================
   RESPONSIVE - 1200
========================================================= */

@media (max-width: 1200px) {

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-main-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-booking-card {
        min-height: 260px;
    }

}


/* =========================================================
   RESPONSIVE - 900
========================================================= */

@media (max-width: 900px) {

    .dashboard-sidebar {
        transform: translateX(-100%);
    }

    .dashboard-sidebar.open {
        transform: translateX(0);
    }

    .dashboard-main {
        width: 100%;
        margin-left: 0;
    }

    html[dir="rtl"] .dashboard-sidebar {
        transform: translateX(100%);
    }

    html[dir="rtl"] .dashboard-sidebar.open {
        transform: translateX(0);
    }

    html[dir="rtl"] .dashboard-main {
        margin-right: 0;
    }

    .dashboard-menu-toggle {
        display: flex;
    }

    .dashboard-content {
        padding: 25px;
    }

    .dashboard-order-details {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-bottom-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   RESPONSIVE - 700
========================================================= */

@media (max-width: 700px) {

    .dashboard-topbar {
        padding: 0 20px;
    }

    .dashboard-user-details,
    .dashboard-user-arrow {
        display: none;
    }

    .dashboard-user {
        margin-left: 3px;
        padding-left: 10px;
    }

    html[dir="rtl"] .dashboard-user {
        margin-right: 3px;
        padding-right: 10px;
    }

    .dashboard-welcome {
        padding: 35px 28px;
    }

    .dashboard-welcome-decoration {
        right: -20px;
        font-size: 150px;
    }

    html[dir="rtl"] .dashboard-welcome-decoration {
        left: -20px;
    }

    .dashboard-table-row {
        grid-template-columns: 1fr 1.2fr .8fr 1fr;
        padding: 15px 0;
    }

    .dashboard-table-row > span:nth-child(3),
    .dashboard-table-row > span:nth-child(6),
    .dashboard-table-head > span:nth-child(3),
    .dashboard-table-head > span:nth-child(6) {
        display: none;
    }

}


/* =========================================================
   RESPONSIVE - 550
========================================================= */

@media (max-width: 550px) {

    .dashboard-content {
        padding: 18px;
    }

    .dashboard-topbar {
        height: 75px;
    }

    .dashboard-label {
        font-size: 8px;
    }

    .dashboard-topbar h1 {
        font-size: 19px;
    }

    .dashboard-rtl-btn {
        display: none;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-welcome {
        min-height: 330px;
        padding: 30px 25px;
        align-items: flex-start;
    }

    .dashboard-welcome-content h2 {
        font-size: 34px;
    }

    .dashboard-welcome-decoration {
        right: 15px;
        bottom: -20px;
        font-size: 130px;
    }

    html[dir="rtl"] .dashboard-welcome-decoration {
        left: 15px;
        right: auto;
    }

    .dashboard-order-section,
    .dashboard-recent-section,
    .dashboard-address-section,
    .dashboard-support-section {
        padding: 22px 18px;
    }

    .dashboard-order-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .dashboard-progress {
        min-width: 500px;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .dashboard-progress-step {
        min-width: 100px;
    }

    .dashboard-progress-line {
        left: 50px;
        right: auto;
        width: 400px;
    }

    .dashboard-order-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .dashboard-booking-card {
        min-height: 280px;
    }

    .dashboard-table-row {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 8px;
    }

    .dashboard-table-row > span:nth-child(4),
    .dashboard-table-head > span:nth-child(4) {
        display: none;
    }

    .dashboard-footer {
        padding: 20px;
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

}


/* =========================================================
   RESPONSIVE - 380
========================================================= */

@media (max-width: 380px) {

    .dashboard-topbar-right {
        gap: 5px;
    }

    .dashboard-tool-btn {
        width: 35px;
        height: 35px;
    }

    .dashboard-user-avatar {
        width: 35px;
        height: 35px;
    }

    .dashboard-welcome-content h2 {
        font-size: 30px;
    }

}

/* =========================================================
   FRESHCARE SERVICES — LNDRY-INSPIRED PREMIUM SERVICE PAGE
   All selectors are prefixed with .fcx- so this file does
   not intentionally override service styles on other pages.
========================================================= */

.freshcare-services-page {
    --fcx-ink: #10272a;
    --fcx-muted: #667578;
    --fcx-teal: #1596a8;
    --fcx-teal-dark: #0d7180;
    --fcx-soft: #eef8f8;
    --fcx-paper: #f8fbfb;
    --fcx-line: #dfe9e9;
    --fcx-white: #ffffff;
    --fcx-dark: #0c1d20;
    --fcx-gold: #c9a45c;
    background: var(--fcx-white);
    color: var(--fcx-ink);
    overflow-x: hidden;
}

.freshcare-services-page *,
.freshcare-services-page *::before,
.freshcare-services-page *::after {
    box-sizing: border-box;
}

.freshcare-services-page img {
    display: block;
    width: 100%;
}

.freshcare-services-page a {
    text-decoration: none;
}

.freshcare-services-page .container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}


/* =========================================================
   HERO
========================================================= */

.fcx-services-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #10272a;
}

.fcx-hero-media,
.fcx-hero-shade {
    position: absolute;
    inset: 0;
}

.fcx-hero-media img {
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.fcx-hero-shade {
    background:
        linear-gradient(90deg, rgba(7, 25, 28, .88) 0%, rgba(7, 25, 28, .66) 43%, rgba(7, 25, 28, .18) 100%),
        linear-gradient(0deg, rgba(7, 25, 28, .30), transparent 35%);
    z-index: 1;
}

.fcx-hero-inner {
    position: relative;
    z-index: 2;
}

.fcx-hero-copy {
    max-width: 700px;
    padding: 110px 0 100px;
    color: var(--fcx-white);
}

.fcx-eyebrow,
.fcx-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .20em;
    text-transform: uppercase;
}

.fcx-eyebrow {
    color: #c9eeee;
    margin-bottom: 22px;
}

.fcx-eyebrow i {
    font-size: 12px;
}

.fcx-hero-copy h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(52px, 7vw, 92px);
    line-height: .94;
    letter-spacing: -.055em;
    font-weight: 650;
    color: white;
}

.fcx-hero-copy h1 span {
    display: block;
    color: #8de1e6;
}

.fcx-hero-copy > p {
    max-width: 600px;
    margin: 30px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 17px;
    line-height: 1.8;
}

.fcx-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.fcx-btn {
    min-height: 54px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    transition: .25s ease;
}

.fcx-btn i {
    transition: transform .25s ease;
}

.fcx-btn:hover i {
    transform: translateX(4px);
}

.fcx-btn-primary {
    color: #092226;
    background: #a5e7e9;
}

.fcx-btn-primary:hover {
    background: #d4f6f7;
    transform: translateY(-2px);
}

.fcx-btn-ghost {
    color: #fff;
    border: 1px solid rgba(255,255,255,.42);
    background: rgba(255,255,255,.07);
}

.fcx-btn-ghost:hover {
    background: rgba(255,255,255,.15);
}

.fcx-hero-proof {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 55px;
}

.fcx-proof-item {
    display: grid;
    gap: 5px;
}

.fcx-proof-item strong {
    font-size: 16px;
    letter-spacing: -.02em;
}

.fcx-proof-item span {
    color: rgba(255,255,255,.62);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.fcx-proof-line {
    width: 1px;
    height: 34px;
    background: rgba(255,255,255,.25);
}


/* =========================================================
   INTRO
========================================================= */

.fcx-intro-section {
    padding: 110px 0 90px;
    background: var(--fcx-white);
}

.fcx-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: end;
}

.fcx-section-kicker {
    color: var(--fcx-teal);
}

.fcx-intro-heading h2,
.fcx-section-head h2,
.fcx-process-copy h2,
.fcx-standards-head h2,
.fcx-faq-intro h2 {
    margin: 16px 0 0;
    color: var(--fcx-ink);
    font-size: clamp(40px, 5vw, 64px);
    line-height: .98;
    letter-spacing: -.045em;
    font-weight: 650;
}

.freshcare-services-page em {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    color: var(--fcx-teal);
}

.fcx-intro-copy {
    padding-bottom: 4px;
}

.fcx-intro-copy p {
    max-width: 560px;
    margin: 0;
    color: var(--fcx-muted);
    font-size: 16px;
    line-height: 1.9;
    text-align: justify;
}

.fcx-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    color: var(--fcx-ink);
    font-size: 15px;
    font-weight: 800;
    border-bottom: 1px solid var(--fcx-ink);
    padding-bottom: 7px;
}

.fcx-text-link i {
    transition: transform .25s ease;
}

.fcx-text-link:hover i {
    transform: translate(4px,-2px);
}

.fcx-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--fcx-line);
    border-bottom: 1px solid var(--fcx-line);
    margin-top: 90px;
}

.fcx-trust-card {
    min-height: 125px;
    padding: 28px 24px;
    display: flex;
    align-items: center;
    gap: 17px;
    border-right: 1px solid var(--fcx-line);
}

.fcx-trust-card:last-child {
    border-right: 0;
}

.fcx-trust-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--fcx-teal);
    background: var(--fcx-soft);
}

.fcx-trust-card strong {
    display: block;
    font-size: 15px;
    margin-bottom: 6px;
}

.fcx-trust-card p {
    margin: 0;
    color: var(--fcx-muted);
    font-size: 15px;
    line-height: 1.55;
}


/* =========================================================
   CATALOG
========================================================= */

.fcx-catalog-section {
    padding: 110px 0 125px;
    background: var(--fcx-paper);
}

.fcx-section-head {
    display: grid;
    grid-template-columns: 1.1fr .7fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 55px;
}

.fcx-section-head > p {
    margin: 0 0 5px;
    color: var(--fcx-muted);
    font-size: 15px;
    line-height: 1.85;
    text-align: justify;
}

.fcx-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.fcx-service-card {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    min-height: 405px;
    background: var(--fcx-white);
    border: 1px solid var(--fcx-line);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.fcx-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(16,39,42,.09);
}

.fcx-service-image {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    background: #dceaea;
}

.fcx-service-image img {
    height: 100%;
    min-height: 405px;
    object-fit: cover;
    transition: transform .55s ease;
}

.fcx-service-card:hover .fcx-service-image img {
    transform: scale(1.045);
}

.fcx-card-label {
    position: absolute;
    top: 17px;
    left: 17px;
    padding: 8px 10px;
    color: #10272a;
    background: #a5e7e9;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .12em;
}

.fcx-service-body {
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
}

.fcx-service-number {
    color: var(--fcx-teal);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .15em;
}

.fcx-service-body h3 {
    margin: 11px 0 11px;
    color: var(--fcx-ink);
    font-size: 29px;
    letter-spacing: -.035em;
}

.fcx-service-body > p {
    margin: 0;
    color: var(--fcx-muted);
    font-size: 15px;
    line-height: 1.75;
    text-align: justify;
}

.fcx-service-body ul {
    list-style: none;
    margin: 21px 0 0;
    padding: 0;
    display: grid;
    gap: 9px;
}

.fcx-service-body li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #4e5d5f;
    font-size: 14px;
}

.fcx-service-body li i {
    color: var(--fcx-teal);
    font-size: 10px;
}

.fcx-card-link {
    margin-top: auto;
    padding-top: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 900;
}

.fcx-card-link i {
    transition: transform .25s ease;
}

.fcx-card-link:hover i {
    transform: translateX(5px);
}


/* =========================================================
   PREMIUM CARE
========================================================= */

.fcx-premium-section {
    padding: 120px 0;
    background: var(--fcx-white);
}

.fcx-premium-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 570px;
    background: var(--fcx-dark);
    overflow: hidden;
}

.fcx-premium-image {
    min-height: 570px;
    overflow: hidden;
}

.fcx-premium-image img {
    height: 100%;
    object-fit: cover;
}

.fcx-premium-content {
    padding: 70px 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fcx-premium-content .fcx-section-kicker {
    color: #86dce1;
}

.fcx-premium-content h2 {
    margin: 18px 0 24px;
    color: #fff;
    font-size: clamp(40px, 4vw, 62px);
    line-height: .98;
    letter-spacing: -.045em;
}

.fcx-premium-content p {
    margin: 0;
    max-width: 500px;
    color: rgba(255,255,255,.68);
    font-size: 14px;
    line-height: 1.9;
}

.fcx-premium-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 35px;
}

.fcx-premium-points div {
    min-height: 95px;
    padding: 17px 14px;
    display: grid;
    align-content: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,.12);
}

.fcx-premium-points i {
    color: #9be3e6;
}

.fcx-premium-points span {
    color: rgba(255,255,255,.8);
    font-size: 15px;
    line-height: 1.35;
}

.fcx-dark-button {
    width: fit-content;
    margin-top: 32px;
    padding: 14px 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #0d272a;
    background: #a5e7e9;
    font-size: 15px;
    font-weight: 900;
}

.fcx-dark-button i {
    transition: transform .25s ease;
}

.fcx-dark-button:hover i {
    transform: translateX(4px);
}


/* =========================================================
   SERVICE FIT
========================================================= */

.fcx-fit-section {
    padding: 115px 0;
    background: var(--fcx-paper);
}

.fcx-section-head-centered {
    display: block;
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.fcx-section-head-centered > p {
    max-width: 530px;
    margin: 22px auto 0;
}

.fcx-fit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid var(--fcx-line);
    border-left: 1px solid var(--fcx-line);
}

.fcx-fit-item {
    min-height: 170px;
    padding: 30px 30px 30px 25px;
    display: grid;
    grid-template-columns: 42px 1fr 40px;
    gap: 20px;
    align-items: center;
    border-right: 1px solid var(--fcx-line);
    border-bottom: 1px solid var(--fcx-line);
    transition: background .25s ease;
}

.fcx-fit-item:hover {
    background: var(--fcx-white);
}

.fcx-fit-item > span {
    color: var(--fcx-teal);
    font-size: 11px;
    font-weight: 900;
}

.fcx-fit-item h3 {
    margin: 0 0 7px;
    color: var(--fcx-ink);
    font-size: 18px;
}

.fcx-fit-item p {
    margin: 0;
    color: var(--fcx-muted);
    font-size: 15px;
    line-height: 1.7;
}

.fcx-fit-item > i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--fcx-teal);
    border: 1px solid var(--fcx-line);
    border-radius: 50%;
}


/* =========================================================
   PROCESS
========================================================= */

.fcx-process-section {
    padding: 125px 0;
    background: var(--fcx-white);
}

.fcx-process-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
}

.fcx-process-copy {
    position: sticky;
    top: 100px;
    align-self: start;
}

.fcx-process-copy > p {
    max-width: 460px;
    margin: 25px 0 0;
    color: var(--fcx-muted);
    font-size: 15px;
    line-height: 1.9;
}

.fcx-process-list {
    border-top: 1px solid var(--fcx-line);
}

.fcx-process-step {
    min-height: 120px;
    display: grid;
    grid-template-columns: 58px 1fr 42px;
    gap: 20px;
    align-items: center;
    border-bottom: 1px solid var(--fcx-line);
}

.fcx-process-number {
    color: var(--fcx-teal);
    font-size: 12px;
    font-weight: 900;
    padding-left: 10px;
}

.fcx-process-step h3 {
    margin: 0 0 5px;
    color: var(--fcx-ink);
    font-size: 18px;
}

.fcx-process-step p {
    margin: 0;
    color: var(--fcx-muted);
    font-size: 15px;
    line-height: 1.6;
}

.fcx-process-step > i {
    color: var(--fcx-teal);
    font-size: 17px;
}


/* =========================================================
   STANDARDS
========================================================= */

.fcx-standards-section {
    padding: 115px 0;
    background: #eaf5f5;
}

.fcx-standards-head {
    max-width: 760px;
    margin-bottom: 55px;
}

.fcx-standards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(16,39,42,.15);
    border-left: 1px solid rgba(16,39,42,.15);
}

.fcx-standard-card {
    min-height: 315px;
    padding: 30px;
    position: relative;
    border-right: 1px solid rgba(16,39,42,.15);
    border-bottom: 1px solid rgba(16,39,42,.15);
}

.fcx-standard-icon {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    color: var(--fcx-teal);
    background: rgba(255,255,255,.7);
    border-radius: 50%;
}

.fcx-standard-index {
    position: absolute;
    top: 31px;
    right: 30px;
    color: rgba(16,39,42,.35);
    font-size: 10px;
    font-weight: 900;
}

.fcx-standard-card h3 {
    margin: 55px 0 12px;
    color: var(--fcx-ink);
    font-size: 18px;
}

.fcx-standard-card p {
    margin: 0;
    color: #607072;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   STATS
========================================================= */

.fcx-stats-section {
    padding: 55px 0;
    background: var(--fcx-dark);
}

.fcx-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.fcx-stat {
    padding: 15px 30px;
    border-right: 1px solid rgba(255,255,255,.12);
}

.fcx-stat:last-child {
    border-right: 0;
}

.fcx-stat strong {
    display: block;
    color: #a5e7e9;
    font-size: 47px;
    line-height: 1;
    letter-spacing: -.05em;
}

.fcx-stat strong span {
    font-size: 23px;
}

.fcx-stat p {
    margin: 9px 0 0;
    color: rgba(255,255,255,.58);
    font-size: 10px;
    letter-spacing: .13em;
    text-transform: uppercase;
}


/* =========================================================
   FAQ
========================================================= */

.fcx-faq-section {
    padding: 125px 0;
    background: var(--fcx-white);
}

.fcx-faq-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 100px;
    padding-left: 10px;
}

.fcx-faq-intro p {
    max-width: 410px;
    margin: 24px 0 0;
    color: var(--fcx-muted);
    font-size: 14px;
    line-height: 1.85;
}

.fcx-faq-list {
    border-top: 1px solid var(--fcx-line);
}

.fcx-faq-item {
    border-bottom: 1px solid var(--fcx-line);
}

.fcx-faq-item summary {
    min-height: 83px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    list-style: none;
    color: var(--fcx-ink);
    font-size: 15px;
    font-weight: 750;
    padding-right: 10px;
    padding-left: 10px;
}

.fcx-faq-item summary::-webkit-details-marker {
    display: none;
}

.fcx-faq-item summary span {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    border: 1px solid var(--fcx-line);
    color: var(--fcx-teal);
    border-radius: 50%;
}

.fcx-faq-item summary i {
    transition: transform .25s ease;
}

.fcx-faq-item[open] summary i {
    transform: rotate(45deg);
}

.fcx-faq-item p {
    max-width: 700px;
    margin: -5px 0 25px;
    padding-right: 45px;
    color: var(--fcx-muted);
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   FINAL CTA
========================================================= */

.fcx-final-section {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    background: var(--fcx-dark);
}

.fcx-final-image,
.fcx-final-overlay {
    position: absolute;
    inset: 0;
}

.fcx-final-image img {
    height: 100%;
    object-fit: cover;
}

.fcx-final-overlay {
    background: linear-gradient(90deg, rgba(7,25,28,.92), rgba(7,25,28,.60), rgba(7,25,28,.25));
    z-index: 1;
}

.fcx-final-content {
    position: relative;
    z-index: 2;
    max-width: 690px;
    padding: 100px 0;
    color: #fff;
}

.fcx-final-content .fcx-section-kicker {
    color: #9be3e6;
}

.fcx-final-content h2 {
    margin: 17px 0 20px;
    color: #fff;
    font-size: clamp(45px, 6vw, 75px);
    line-height: .96;
    letter-spacing: -.05em;
}

.fcx-final-content p {
    max-width: 570px;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.85;
}

.fcx-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
}

.fcx-btn-light {
    color: #0c2528;
    background: #a5e7e9;
}

.fcx-btn-outline-light {
    color: #fff;
    border: 1px solid rgba(255,255,255,.45);
}

.fcx-btn-outline-light:hover {
    background: rgba(255,255,255,.1);
}


/* =========================================================
   FOOTER SUPPORT
========================================================= */

.freshcare-services-page .fcx-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.freshcare-services-page .fcx-footer-contact li {
    display: flex;
    align-items: center;
    gap: 9px;
}

.freshcare-services-page .fcx-footer-contact i {
    color: var(--fcx-teal);
}


/* =========================================================
   DARK MODE — SCOPED
========================================================= */

.dark-mode .freshcare-services-page,
html.dark-mode .freshcare-services-page {
    --fcx-white: #101d1f;
    --fcx-paper: #0d181a;
    --fcx-ink: #eef8f8;
    --fcx-muted: #a8b8ba;
    --fcx-line: #2a3b3e;
    background: #101d1f;
}

.dark-mode .freshcare-services-page .fcx-intro-section,
.dark-mode .freshcare-services-page .fcx-premium-section,
.dark-mode .freshcare-services-page .fcx-process-section,
.dark-mode .freshcare-services-page .fcx-faq-section {
    background: #101d1f;
}

.dark-mode .freshcare-services-page .fcx-catalog-section,
.dark-mode .freshcare-services-page .fcx-fit-section {
    background: #0d181a;
}

.dark-mode .freshcare-services-page .fcx-service-card {
    background: #142326;
    border-color: #2a3b3e;
}

.dark-mode .freshcare-services-page .fcx-service-body li {
    color: #a9b8ba;
}

.dark-mode .freshcare-services-page .fcx-standards-section {
    background: #132628;
}

.dark-mode .freshcare-services-page .fcx-standard-card {
    border-color: #355054;
}

.dark-mode .freshcare-services-page .fcx-standard-card p {
    color: #a9b8ba;
}

.dark-mode .freshcare-services-page .fcx-standard-icon {
    background: #193236;
}

.dark-mode .freshcare-services-page .fcx-fit-item:hover {
    background: #142326;
}


/* =========================================================
   RTL — SCOPED
========================================================= */

html[dir="rtl"] .freshcare-services-page .fcx-hero-copy {
    text-align: right;
}

html[dir="rtl"] .freshcare-services-page .fcx-hero-shade {
    background:
        linear-gradient(270deg, rgba(7,25,28,.88) 0%, rgba(7,25,28,.66) 43%, rgba(7,25,28,.18) 100%);
}

html[dir="rtl"] .freshcare-services-page .fcx-btn:hover i,
html[dir="rtl"] .freshcare-services-page .fcx-card-link:hover i,
html[dir="rtl"] .freshcare-services-page .fcx-text-link:hover i,
html[dir="rtl"] .freshcare-services-page .fcx-dark-button:hover i {
    transform: translateX(-4px);
}

html[dir="rtl"] .freshcare-services-page .fcx-trust-card,
html[dir="rtl"] .freshcare-services-page .fcx-fit-item,
html[dir="rtl"] .freshcare-services-page .fcx-process-step {
    text-align: right;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .freshcare-services-page .container {
        width: min(100% - 36px, 900px);
    }

    .fcx-services-hero {
        min-height: 650px;
    }

    .fcx-hero-copy {
        padding: 90px 0;
    }

    .fcx-intro-grid,
    .fcx-section-head,
    .fcx-process-layout,
    .fcx-faq-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .fcx-trust-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .fcx-trust-card:nth-child(2) {
        border-right: 0;
    }

    .fcx-trust-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--fcx-line);
    }

    .fcx-service-grid {
        grid-template-columns: 1fr;
    }

    .fcx-premium-card {
        grid-template-columns: 1fr;
    }

    .fcx-premium-image {
        min-height: 420px;
    }

    .fcx-premium-content {
        padding: 55px 45px;
    }

    .fcx-standards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fcx-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 25px;
    }

    .fcx-stat:nth-child(2) {
        border-right: 0;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .freshcare-services-page .container {
        width: min(100% - 28px, 600px);
    }

    .fcx-services-hero {
        min-height: 670px;
    }

    .fcx-hero-shade {
        background:
            linear-gradient(90deg, rgba(7,25,28,.90), rgba(7,25,28,.62)),
            linear-gradient(0deg, rgba(7,25,28,.40), transparent);
    }

    .fcx-hero-copy {
        padding: 95px 0 75px;
    }

    .fcx-hero-copy h1 {
        font-size: clamp(48px, 15vw, 68px);
    }

    .fcx-hero-copy > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .fcx-hero-proof {
        gap: 12px;
        margin-top: 40px;
    }

    .fcx-proof-item strong {
        font-size: 13px;
    }

    .fcx-proof-item span {
        font-size: 8px;
        letter-spacing: .07em;
    }

    .fcx-proof-line {
        height: 28px;
    }

    .fcx-intro-section,
    .fcx-catalog-section,
    .fcx-premium-section,
    .fcx-fit-section,
    .fcx-process-section,
    .fcx-standards-section,
    .fcx-faq-section {
        padding: 75px 0;
    }

    .fcx-intro-heading h2,
    .fcx-section-head h2,
    .fcx-process-copy h2,
    .fcx-standards-head h2,
    .fcx-faq-intro h2 {
        font-size: 42px;
    }

    .fcx-trust-row {
        grid-template-columns: 1fr;
        margin-top: 60px;
    }

    .fcx-trust-card,
    .fcx-trust-card:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--fcx-line);
    }

    .fcx-trust-card:last-child {
        border-bottom: 0;
    }

    .fcx-service-card {
        grid-template-columns: 1fr;
    }

    .fcx-service-image,
    .fcx-service-image img {
        min-height: 280px;
        height: 280px;
    }

    .fcx-service-body {
        min-height: 370px;
        padding: 28px 25px;
    }

    .fcx-premium-image {
        min-height: 300px;
    }

    .fcx-premium-content {
        padding: 45px 25px;
    }

    .fcx-premium-content h2 {
        font-size: 42px;
    }

    .fcx-premium-points {
        grid-template-columns: 1fr;
    }

    .fcx-fit-grid {
        grid-template-columns: 1fr;
    }

    .fcx-fit-item {
        min-height: 150px;
        grid-template-columns: 32px 1fr 36px;
        gap: 12px;
        padding: 22px 18px;
    }

    .fcx-process-copy {
        position: static;
    }

    .fcx-process-step {
        grid-template-columns: 42px 1fr 30px;
        gap: 12px;
        min-height: 115px;
    }

    .fcx-standards-grid {
        grid-template-columns: 1fr;
    }

    .fcx-standard-card {
        min-height: 265px;
    }

    .fcx-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fcx-stat {
        padding: 10px 16px;
    }

    .fcx-stat strong {
        font-size: 38px;
    }

    .fcx-final-section {
        min-height: 600px;
    }

    .fcx-final-overlay {
        background: rgba(7,25,28,.78);
    }

    .fcx-final-content {
        padding: 90px 0;
    }

    .fcx-final-content h2 {
        font-size: 50px;
    }

    .fcx-final-actions,
    .fcx-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .fcx-btn {
        width: 100%;
    }

    .fcx-faq-item summary {
        font-size: 13px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .fcx-hero-proof {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .fcx-proof-line {
        display: none;
    }

    .fcx-intro-heading h2,
    .fcx-section-head h2,
    .fcx-process-copy h2,
    .fcx-standards-head h2,
    .fcx-faq-intro h2 {
        font-size: 37px;
    }

    .fcx-service-body h3 {
        font-size: 26px;
    }

    .fcx-stats-grid {
        grid-template-columns: 1fr;
    }

    .fcx-stat,
    .fcx-stat:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
        padding-bottom: 20px;
    }

    .fcx-stat:last-child {
        border-bottom: 0;
    }
}
/* =========================================================
   FRESHCARE PRICING PAGE
   All selectors are scoped to avoid disturbing other pages
========================================================= */

.freshcare-pricing-page {
    overflow: hidden;
}


/* =========================================================
   HERO
========================================================= */

.freshcare-pricing-page .pricing-hero {
    position: relative;
    min-height: 570px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            90deg,
            rgba(5, 40, 47, .94),
            rgba(9, 89, 101, .76),
            rgba(21, 150, 168, .40)
        ),
        url("https://images.unsplash.com/photo-1517677208171-0bc6725a3e60?auto=format&fit=crop&w=2000&q=90")
        center / cover no-repeat;
}

.freshcare-pricing-page .pricing-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(255,255,255,.12),
            transparent 32%
        );
}

.freshcare-pricing-page .pricing-hero .container {
    position: relative;
    z-index: 2;
}

.freshcare-pricing-page .pricing-hero-content {
    max-width: 760px;
    color: #fff;
    padding: 100px 0;
}

.freshcare-pricing-page .pricing-eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    color: white;
}

.freshcare-pricing-page .pricing-hero h1 {
    max-width: 800px;
    margin: 0 0 25px;
    font-size: clamp(48px, 6vw, 82px);
    line-height: .98;
    letter-spacing: -3px;
    font-weight: 800;
    color: #7fe1eb;

}

.freshcare-pricing-page .pricing-hero h1 span {
    display: block;
    color: #7fe1eb;
}

.freshcare-pricing-page .pricing-hero p {
    max-width: 650px;
    margin-bottom: 34px;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,.84);
}

.freshcare-pricing-page .pricing-hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.freshcare-pricing-page .pricing-hero .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.freshcare-pricing-page .pricing-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 25px;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: .3s ease;
}

.freshcare-pricing-page .pricing-outline-btn:hover {
    background: #fff;
    color: #0d7180;
}


/* =========================================================
   INTRO
========================================================= */

.freshcare-pricing-page .pricing-intro {
    padding: 105px 0 80px;
    background: var(--background);
}

.freshcare-pricing-page .pricing-intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.freshcare-pricing-page .section-label {
    display: inline-block;
    margin-bottom: 17px;
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.freshcare-pricing-page .pricing-intro-heading h2,
.freshcare-pricing-page .section-heading h2 {
    margin: 0;
    color: var(--black);
    font-size: clamp(34px, 4vw, 55px);
    line-height: 1.05;
    letter-spacing: -1.8px;
}

.freshcare-pricing-page .pricing-intro-heading h2 span,
.freshcare-pricing-page .section-heading h2 span {
    color: var(--primary);
}

.freshcare-pricing-page .pricing-intro-content p {
    margin: 0 0 18px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.85;
    text-align: justify;
}

.freshcare-pricing-page .pricing-trust-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 65px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.freshcare-pricing-page .pricing-trust-item {
    display: flex;
    gap: 15px;
    align-items: center;
    min-height: 105px;
    padding: 20px 25px;
    border-right: 1px solid var(--border);
}

.freshcare-pricing-page .pricing-trust-item:last-child {
    border-right: 0;
}

.freshcare-pricing-page .pricing-trust-item > span {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
}

.freshcare-pricing-page .pricing-trust-item strong {
    display: block;
    margin-bottom: 4px;
    color: var(--black);
    font-size: 15px;
}

.freshcare-pricing-page .pricing-trust-item small {
    color: var(--text-light);
    font-size: 15px;
}


/* =========================================================
   QUICK PRICING
========================================================= */

.freshcare-pricing-page .quick-pricing {
    padding: 105px 0;
    background: var(--background-soft);
}

.freshcare-pricing-page .section-heading.centered {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.freshcare-pricing-page .section-heading.centered p {
    max-width: 560px;
    margin: 20px auto 0;
    color: var(--text-light);
    line-height: 1.7;
}

.freshcare-pricing-page .quick-price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.freshcare-pricing-page .quick-price-card {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 20px;
    align-items: center;
    min-height: 180px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--background);
    box-shadow: var(--shadow-small);
    transition: .35s ease;
}

.freshcare-pricing-page .quick-price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.freshcare-pricing-page .quick-price-card.featured {
    border: 1px solid var(--primary);
}

.freshcare-pricing-page .quick-price-badge {
    position: absolute;
    top: 0;
    right: 25px;
    padding: 7px 12px;
    border-radius: 0 0 7px 7px;
    background: var(--primary);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.freshcare-pricing-page .quick-price-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 23px;
}

.freshcare-pricing-page .quick-price-type {
    display: block;
    margin-bottom: 7px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.freshcare-pricing-page .quick-price-info h3 {
    margin: 0 0 8px;
    color: var(--black);
    font-size: 21px;
}

.freshcare-pricing-page .quick-price-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.freshcare-pricing-page .quick-price-value {
    min-width: 90px;
    text-align: right;
}

.freshcare-pricing-page .quick-price-value span {
    display: block;
    margin-bottom: 3px;
    color: var(--text-light);
    font-size: 10px;
}

.freshcare-pricing-page .quick-price-value strong {
    color: var(--primary);
    font-size: 30px;
    letter-spacing: -1px;
}

.freshcare-pricing-page .quick-price-value small {
    color: var(--text-light);
    font-size: 11px;
}


/* =========================================================
   ITEM PRICING
========================================================= */

.freshcare-pricing-page .item-pricing-section {
    padding: 115px 0;
    background: var(--background);
}

.freshcare-pricing-page .pricing-list-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 42px;
}

.freshcare-pricing-page .pricing-list-heading > p {
    max-width: 390px;
    margin: 0 0 5px;
    color: var(--text-light);
    line-height: 1.75;
}

.freshcare-pricing-page .pricing-search-box {
    position: relative;
    max-width: 650px;
    margin-bottom: 25px;
}

.freshcare-pricing-page .pricing-search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.freshcare-pricing-page .pricing-search-box input {
    width: 100%;
    height: 58px;
    padding: 0 20px 0 52px;
    border: 1px solid var(--border);
    border-radius: 9px;
    outline: none;
    background: var(--background-soft);
    color: var(--black);
    font-family: inherit;
    font-size: 14px;
}

.freshcare-pricing-page .pricing-search-box input:focus {
    border-color: var(--primary);
}

.freshcare-pricing-page .price-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 55px;
}

.freshcare-pricing-page .price-filter {
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: var(--background);
    color: var(--text);
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    transition: .25s ease;
}

.freshcare-pricing-page .price-filter:hover,
.freshcare-pricing-page .price-filter.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.freshcare-pricing-page .pricing-category-block {
    margin-bottom: 65px;
}

.freshcare-pricing-page .pricing-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin-bottom: 15px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--black);
}

.freshcare-pricing-page .pricing-category-header > div {
    display: flex;
    gap: 17px;
    align-items: center;
}

.freshcare-pricing-page .pricing-category-header > div > span {
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
}

.freshcare-pricing-page .pricing-category-header h3 {
    margin: 0 0 4px;
    color: var(--black);
    font-size: 25px;
}

.freshcare-pricing-page .pricing-category-header p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
}

.freshcare-pricing-page .category-note {
    padding: 7px 13px;
    border-radius: 50px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
}

.freshcare-pricing-page .item-price-table {
    border-top: 1px solid var(--border);
}

.freshcare-pricing-page .item-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 78px;
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    transition: .25s ease;
}

.freshcare-pricing-page .item-price-row:hover {
    padding-left: 27px;
    padding-right: 27px;
    background: var(--background-soft);
}

.freshcare-pricing-page .item-name {
    display: flex;
    align-items: center;
    gap: 15px;
}

.freshcare-pricing-page .item-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: var(--primary-light);
    color: var(--primary);
}

.freshcare-pricing-page .item-name strong {
    display: block;
    color: var(--black);
    font-size: 14px;
}

.freshcare-pricing-page .item-name small {
    display: block;
    margin-top: 4px;
    color: var(--text-light);
    font-size: 15px;
}

.freshcare-pricing-page .item-price {
    color: var(--primary);
    font-size: 18px;
}


/* =========================================================
   ADDONS
========================================================= */

.freshcare-pricing-page .addons-box {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px;
    align-items: center;
    padding: 50px;
    border-radius: 18px;
    background: var(--primary);
    color: black;
}

.freshcare-pricing-page .addons-content .section-label {
    color: white;
}

.freshcare-pricing-page .addons-content h3 {
    margin: 0 0 13px;
    font-size: 34px;
    line-height: 1.1;
}

.freshcare-pricing-page .addons-content h3 span {
    color: white;
}

.freshcare-pricing-page .addons-content p {
    margin: 0;
    color: white;
    line-height: 1.7;
}

.freshcare-pricing-page .addon-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.freshcare-pricing-page .addon-item {
    display: grid;
    grid-template-columns: 45px 1fr auto;
    gap: 13px;
    align-items: center;
    padding: 18px;
    border: 1px solid white;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
}

.freshcare-pricing-page .addon-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    background: rgba(127,225,235,.12);
    color: #7fe1eb;
}

.freshcare-pricing-page .addon-item strong {
    display: block;
    font-size: 13px;
}

.freshcare-pricing-page .addon-item small {
    display: block;
    margin-top: 4px;
    color: white;
    font-size: 15px;
}

.freshcare-pricing-page .addon-item b {
    color: #f5b942;
    font-size: 15px;
}


/* =========================================================
   MONTHLY PLANS
========================================================= */

.freshcare-pricing-page .monthly-pricing {
    padding: 115px 0;
    background: var(--background-soft);
}

.freshcare-pricing-page .monthly-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.freshcare-pricing-page .monthly-card {
    position: relative;
    padding: 38px 32px 32px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--background);
    box-shadow: var(--shadow-small);
}

.freshcare-pricing-page .monthly-card.featured-plan {
    border: 2px solid var(--primary);
    transform: translateY(-10px);
}

.freshcare-pricing-page .monthly-popular {
    position: absolute;
    top: 0;
    right: 25px;
    padding: 7px 12px;
    border-radius: 0 0 7px 7px;
    background: var(--primary);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
}

.freshcare-pricing-page .monthly-tag {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--primary);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.freshcare-pricing-page .monthly-top h3 {
    margin: 0 0 9px;
    color: var(--black);
    font-size: 25px;
}

.freshcare-pricing-page .monthly-top p {
    min-height: 42px;
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.freshcare-pricing-page .monthly-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin: 30px 0;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border);
}

.freshcare-pricing-page .monthly-price strong {
    color: var(--primary);
    font-size: 38px;
    letter-spacing: -1.5px;
}

.freshcare-pricing-page .monthly-price span {
    color: var(--text-light);
    font-size: 15px;
}

.freshcare-pricing-page .monthly-card ul {
    display: grid;
    gap: 13px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.freshcare-pricing-page .monthly-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 15px;
}

.freshcare-pricing-page .monthly-card li i {
    color: var(--primary);
}

.freshcare-pricing-page .monthly-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 48px;
    padding: 0 17px;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--black);
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    transition: .3s ease;
}

.freshcare-pricing-page .monthly-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}


/* =========================================================
   PRICE CLARITY
========================================================= */

.freshcare-pricing-page .price-clarity {
    padding: 115px 0;
    background: var(--background);
}

.freshcare-pricing-page .clarity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.freshcare-pricing-page .clarity-image {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    border-radius: 18px;
}

.freshcare-pricing-page .clarity-image img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
}

.freshcare-pricing-page .clarity-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(0,0,0,.68)
    );
}

.freshcare-pricing-page .clarity-image-label {
    position: absolute;
    left: 35px;
    bottom: 35px;
    z-index: 2;
    color: #fff;
}

.freshcare-pricing-page .clarity-image-label span {
    display: block;
    margin-bottom: 8px;
    color: #7fe1eb;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
}

.freshcare-pricing-page .clarity-image-label strong {
    font-size: 27px;
}

.freshcare-pricing-page .clarity-content h2 {
    margin: 0 0 25px;
    color: var(--black);
    font-size: clamp(38px, 4vw, 57px);
    line-height: 1.02;
    letter-spacing: -2px;
}

.freshcare-pricing-page .clarity-content h2 span {
    color: var(--primary);
}

.freshcare-pricing-page .clarity-content > p {
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.freshcare-pricing-page .clarity-points {
    display: grid;
    gap: 20px;
    margin-bottom: 35px;
}

.freshcare-pricing-page .clarity-points > div {
    display: flex;
    gap: 14px;
}

.freshcare-pricing-page .clarity-points > div > span {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
}

.freshcare-pricing-page .clarity-points strong {
    display: block;
    margin-bottom: 4px;
    color: var(--black);
    font-size: 14px;
}

.freshcare-pricing-page .clarity-points p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}


/* =========================================================
   FAQ
========================================================= */

.freshcare-pricing-page .pricing-faq {
    padding: 110px 0;
    background: var(--background-soft);
}

.freshcare-pricing-page .pricing-faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.freshcare-pricing-page .pricing-faq-list details {
    border-bottom: 1px solid var(--border);
}

.freshcare-pricing-page .pricing-faq-list summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-height: 75px;
    cursor: pointer;
    list-style: none;
    color: var(--black);
    font-size: 15px;
    font-weight: 700;
}

.freshcare-pricing-page .pricing-faq-list summary::-webkit-details-marker {
    display: none;
}

.freshcare-pricing-page .pricing-faq-list summary span {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--primary);
    font-size: 10px;
    transition: .3s ease;
}

.freshcare-pricing-page .pricing-faq-list details[open] summary span {
    transform: rotate(45deg);
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.freshcare-pricing-page .pricing-faq-list details p {
    max-width: 750px;
    margin: 0 0 25px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   FINAL CTA
========================================================= */

.freshcare-pricing-page .pricing-final-cta {
    padding: 110px 0;
    background:
        linear-gradient(
            110deg,
            #073c46,
            #1596a8
        );
}

.freshcare-pricing-page .pricing-cta-inner {
    max-width: 850px;
    margin: auto;
    text-align: center;
    color: #fff;
}

.freshcare-pricing-page .pricing-cta-inner .section-label {
    color: #7fe1eb;
}

.freshcare-pricing-page .pricing-cta-inner h2 {
    margin: 0 0 20px;
    font-size: clamp(38px, 5vw, 65px);
    line-height: 1;
    letter-spacing: -2px;
}

.freshcare-pricing-page .pricing-cta-inner h2 span {
    color: white;
}

.freshcare-pricing-page .pricing-cta-inner p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,.78);
    line-height: 1.8;
}

.freshcare-pricing-page .pricing-cta-inner .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}


/* =========================================================
   DARK MODE
========================================================= */

.dark-mode .freshcare-pricing-page .pricing-intro-heading h2,
.dark-mode .freshcare-pricing-page .section-heading h2,
.dark-mode .freshcare-pricing-page .quick-price-info h3,
.dark-mode .freshcare-pricing-page .pricing-category-header h3,
.dark-mode .freshcare-pricing-page .item-name strong,
.dark-mode .freshcare-pricing-page .monthly-top h3,
.dark-mode .freshcare-pricing-page .clarity-content h2,
.dark-mode .freshcare-pricing-page .clarity-points strong,
.dark-mode .freshcare-pricing-page .pricing-faq-list summary {
    color: #fff;
}

.dark-mode .freshcare-pricing-page .quick-price-card,
.dark-mode .freshcare-pricing-page .monthly-card {
    background: #172126;
}

.dark-mode .freshcare-pricing-page .pricing-search-box input {
    background: #172126;
    color: #fff;
}

.dark-mode .freshcare-pricing-page .price-filter {
    background: #172126;
    color: #ddd;
}

.dark-mode .freshcare-pricing-page .item-price-row:hover {
    background: #172126;
}

.dark-mode .freshcare-pricing-page .monthly-btn {
    color: #fff;
}

.dark-mode .freshcare-pricing-page .pricing-category-header {
    border-color: #fff;
}


/* =========================================================
   RTL
========================================================= */

html[dir="rtl"] .freshcare-pricing-page .pricing-trust-item {
    border-right: 0;
    border-left: 1px solid var(--border);
}

html[dir="rtl"] .freshcare-pricing-page .pricing-trust-item:last-child {
    border-left: 0;
}

html[dir="rtl"] .freshcare-pricing-page .pricing-search-box i {
    left: auto;
    right: 20px;
}

html[dir="rtl"] .freshcare-pricing-page .pricing-search-box input {
    padding: 0 52px 0 20px;
}

html[dir="rtl"] .freshcare-pricing-page .item-price-row:hover {
    padding-left: 20px;
    padding-right: 27px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .freshcare-pricing-page .pricing-intro-grid,
    .freshcare-pricing-page .clarity-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .freshcare-pricing-page .pricing-trust-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .freshcare-pricing-page .pricing-trust-item:nth-child(2) {
        border-right: 0;
    }

    .freshcare-pricing-page .pricing-trust-item:nth-child(3),
    .freshcare-pricing-page .pricing-trust-item:nth-child(4) {
        border-top: 1px solid var(--border);
    }

    .freshcare-pricing-page .quick-price-grid {
        grid-template-columns: 1fr;
    }

    .freshcare-pricing-page .monthly-grid {
        grid-template-columns: 1fr;
    }

    .freshcare-pricing-page .monthly-card.featured-plan {
        transform: none;
    }

    .freshcare-pricing-page .addons-box {
        grid-template-columns: 1fr;
    }

    .freshcare-pricing-page .clarity-image,
    .freshcare-pricing-page .clarity-image img {
        min-height: 500px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .freshcare-pricing-page .pricing-hero {
        min-height: 620px;
    }

    .freshcare-pricing-page .pricing-hero-content {
        padding: 80px 0;
    }

    .freshcare-pricing-page .pricing-hero h1 {
        font-size: 47px;
        letter-spacing: -2px;
    }

    .freshcare-pricing-page .pricing-hero p {
        font-size: 15px;
    }

    .freshcare-pricing-page .pricing-intro,
    .freshcare-pricing-page .quick-pricing,
    .freshcare-pricing-page .item-pricing-section,
    .freshcare-pricing-page .monthly-pricing,
    .freshcare-pricing-page .price-clarity,
    .freshcare-pricing-page .pricing-faq {
        padding: 75px 0;
    }

    .freshcare-pricing-page .pricing-trust-row {
        grid-template-columns: 1fr;
    }

    .freshcare-pricing-page .pricing-trust-item,
    .freshcare-pricing-page .pricing-trust-item:nth-child(2),
    .freshcare-pricing-page .pricing-trust-item:nth-child(3),
    .freshcare-pricing-page .pricing-trust-item:nth-child(4) {
        border-right: 0;
        border-left: 0;
        border-top: 1px solid var(--border);
    }

    .freshcare-pricing-page .pricing-trust-item:first-child {
        border-top: 0;
    }

    .freshcare-pricing-page .quick-price-card {
        grid-template-columns: 52px 1fr;
        padding: 24px;
    }

    .freshcare-pricing-page .quick-price-icon {
        width: 52px;
        height: 52px;
    }

    .freshcare-pricing-page .quick-price-value {
        grid-column: 2;
        text-align: left;
        min-width: auto;
    }

    .freshcare-pricing-page .pricing-list-heading {
        display: block;
    }

    .freshcare-pricing-page .pricing-list-heading > p {
        margin-top: 20px;
    }

    .freshcare-pricing-page .pricing-category-header {
        align-items: flex-start;
    }

    .freshcare-pricing-page .pricing-category-header > div {
        align-items: flex-start;
    }

    .freshcare-pricing-page .category-note {
        white-space: nowrap;
    }

    .freshcare-pricing-page .item-price-row {
        padding: 14px 5px;
    }

    .freshcare-pricing-page .item-price-row:hover {
        padding-left: 10px;
        padding-right: 10px;
    }

    .freshcare-pricing-page .item-name {
        gap: 10px;
    }

    .freshcare-pricing-page .item-icon {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
    }

    .freshcare-pricing-page .item-name strong {
        font-size: 13px;
    }

    .freshcare-pricing-page .item-name small {
        font-size: 10px;
    }

    .freshcare-pricing-page .item-price {
        font-size: 16px;
    }

    .freshcare-pricing-page .addons-box {
        padding: 30px 22px;
    }

    .freshcare-pricing-page .addon-list {
        grid-template-columns: 1fr;
    }

    .freshcare-pricing-page .clarity-image,
    .freshcare-pricing-page .clarity-image img {
        min-height: 420px;
    }

    .freshcare-pricing-page .clarity-content h2 {
        font-size: 40px;
    }

    .freshcare-pricing-page .pricing-final-cta {
        padding: 80px 0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .freshcare-pricing-page .pricing-hero h1 {
        font-size: 40px;
    }

    .freshcare-pricing-page .pricing-hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .freshcare-pricing-page .pricing-hero-buttons .btn,
    .freshcare-pricing-page .pricing-outline-btn {
        width: 100%;
    }

    .freshcare-pricing-page .quick-price-card {
        display: grid;
        grid-template-columns: 48px 1fr;
        gap: 13px;
    }

    .freshcare-pricing-page .quick-price-info h3 {
        font-size: 18px;
    }

    .freshcare-pricing-page .quick-price-value strong {
        font-size: 25px;
    }

    .freshcare-pricing-page .pricing-category-header {
        display: block;
    }

    .freshcare-pricing-page .category-note {
        display: inline-block;
        margin-top: 15px;
    }

    .freshcare-pricing-page .addons-content h3 {
        font-size: 28px;
    }

    .freshcare-pricing-page .clarity-content h2 {
        font-size: 35px;
    }

}
/* =========================================================
   FRESHCARE USER DASHBOARD
   All dashboard styles are scoped with .freshcare-user-dashboard
========================================================= */


/* =========================================================
   DASHBOARD MAIN
========================================================= */

.freshcare-user-dashboard {
    background: #f5f8f9;
}

.fcu-dashboard {
    min-height: calc(100vh - 80px);
    padding: 45px 0 70px;
}

.fcu-dashboard-container {
    width: min(1380px, calc(100% - 40px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 30px;

    align-items: start;
}


/* =========================================================
   SIDEBAR
========================================================= */

.fcu-sidebar {
    background: #ffffff;
    border: 1px solid #e5ebed;
    border-radius: 18px;

    padding: 24px 16px;

    position: sticky;
    top: 100px;

    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.05);
}


.fcu-profile {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 4px 8px 24px;

    border-bottom: 1px solid #edf1f2;
}


.fcu-profile-image {
    width: 46px;
    height: 46px;

    border-radius: 50%;

    background: #1596a8;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
}


.fcu-profile-info {
    min-width: 0;
}


.fcu-profile-info h3 {
    margin: 0;

    font-size: 15px;
    font-weight: 700;

    color: #111827;
}


.fcu-profile-info p {
    margin: 4px 0 0;

    color: #1596a8;

    font-size: 11px;
    font-weight: 600;
}


/* =========================================================
   SIDEBAR NAV
========================================================= */

.fcu-sidebar-nav {
    display: flex;
    flex-direction: column;

    gap: 5px;

    padding: 22px 0;
}


.fcu-sidebar-link {
    min-height: 44px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 0 12px;

    border-radius: 10px;

    text-decoration: none;

    color: #6b7280;

    font-size: 13px;
    font-weight: 600;

    transition: all 0.25s ease;
}


.fcu-sidebar-link span {
    width: 22px;

    display: flex;
    justify-content: center;

    font-size: 14px;
}


.fcu-sidebar-link small {
    margin-left: auto;

    width: 21px;
    height: 21px;

    border-radius: 50%;

    background: #e8f7f9;

    color: #1596a8;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 10px;
}


.fcu-sidebar-link:hover {
    background: #f1fafb;
    color: #1596a8;
}


.fcu-sidebar-link.fcu-active {
    background: #1596a8;
    color: #ffffff;
}


.fcu-sidebar-link.fcu-active small {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}


/* =========================================================
   SIDEBAR BOTTOM
========================================================= */

.fcu-sidebar-bottom {
    border-top: 1px solid #edf1f2;

    padding-top: 18px;
}


.fcu-help-box {
    display: flex;
    align-items: center;

    gap: 9px;

    padding: 12px;

    border-radius: 11px;

    background: #f7fafb;

    text-decoration: none;

    color: #374151;

    transition: 0.25s ease;
}


.fcu-help-box:hover {
    background: #eaf7f9;
}


.fcu-help-icon {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    border-radius: 8px;

    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1596a8;

    font-size: 13px;
}


.fcu-help-box strong {
    display: block;

    font-size: 15px;
}


.fcu-help-box small {
    display: block;

    margin-top: 2px;

    color: #8b95a1;

    font-size: 15px;
}


.fcu-help-box > i {
    margin-left: auto;

    color: #9ca3af;

    font-size: 10px;
}


.fcu-logout {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-top: 15px;

    padding: 7px 12px;

    text-decoration: none;

    color: #ef4444;

    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.fcu-main-content {
    min-width: 0;
}


.fcu-topbar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 28px;
}


.fcu-page-label {
    display: block;

    margin-bottom: 7px;

    color: #1596a8;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 1.5px;
}


.fcu-topbar h1 {
    margin: 0;

    color: #111827;

    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.15;

    font-weight: 700;
}


.fcu-topbar p {
    margin: 8px 0 0;

    color: #7b8490;

    font-size: 15px;
}


.fcu-top-actions {
    display: flex;
    align-items: center;

    gap: 12px;
}


.fcu-notification {
    width: 42px;
    height: 42px;

    border: 1px solid #e1e8ea;

    border-radius: 10px;

    background: #ffffff;

    color: #4b5563;

    cursor: pointer;

    position: relative;

    transition: 0.25s ease;
}


.fcu-notification:hover {
    border-color: #1596a8;
    color: #1596a8;
}


.fcu-notification span {
    position: absolute;

    width: 7px;
    height: 7px;

    top: 9px;
    right: 10px;

    border-radius: 50%;

    background: #ef4444;

    border: 1px solid #ffffff;
}


/* =========================================================
   BUTTONS
========================================================= */

.fcu-primary-btn {
    min-height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 0 17px;

    border: 1px solid #1596a8;
    border-radius: 9px;

    background: #1596a8;

    color: #ffffff;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.25s ease;
}


.fcu-primary-btn:hover {
    background: #0d7180;
    border-color: #0d7180;
}


.fcu-outline-btn {
    min-height: 36px;

    padding: 0 13px;

    border: 1px solid #dce5e7;
    border-radius: 8px;

    background: transparent;

    color: #4b5563;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.25s ease;
}


.fcu-outline-btn:hover {
    border-color: #1596a8;
    color: #1596a8;
}


/* =========================================================
   STATS
========================================================= */

.fcu-stats-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 15px;

    margin-bottom: 20px;
}


.fcu-stat-card {
    min-width: 0;

    padding: 20px;

    background: #ffffff;

    border: 1px solid #e5ebed;

    border-radius: 14px;

    display: flex;
    align-items: center;

    gap: 14px;

    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.03);
}


.fcu-stat-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    border-radius: 10px;

    background: #e8f7f9;

    color: #1596a8;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
}


.fcu-stat-icon.green {
    background: #ecfdf5;
    color: #10b981;
}


.fcu-stat-icon.orange {
    background: #fff7ed;
    color: #f97316;
}


.fcu-stat-icon.purple {
    background: #f5f3ff;
    color: #8b5cf6;
}


.fcu-stat-content {
    min-width: 0;
}


.fcu-stat-content span {
    display: block;

    color: #7b8490;

    font-size: 15px;
    font-weight: 600;

    white-space: nowrap;
}


.fcu-stat-content strong {
    display: block;

    margin-top: 4px;

    color: #111827;

    font-size: 22px;
    line-height: 1;
}


.fcu-stat-content small {
    display: block;

    margin-top: 7px;

    color: #8b95a1;

    font-size: 13px;

    white-space: nowrap;
}


.fcu-stat-content small i {
    color: #10b981;

    margin-right: 3px;
}


/* =========================================================
   CONTENT GRID
========================================================= */

.fcu-content-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.6fr)
        minmax(280px, 0.8fr);

    gap: 20px;

    margin-bottom: 20px;
}


/* =========================================================
   PANEL
========================================================= */

.fcu-panel {
    background: #ffffff;

    border: 1px solid #e5ebed;

    border-radius: 15px;

    padding: 22px;

    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.03);
}


.fcu-panel-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 22px;
}


.fcu-small-label {
    display: block;

    color: #1596a8;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.3px;
}


.fcu-panel-heading h2 {
    margin: 5px 0 0;

    color: #111827;

    font-size: 18px;
    line-height: 1.2;

    font-weight: 700;
}


.fcu-status {
    display: inline-flex;
    align-items: center;

    padding: 6px 10px;

    border-radius: 20px;

    background: #fff7ed;

    color: #ea580c;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;
}


.fcu-heading-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: #e8f7f9;

    color: #1596a8;
}


/* =========================================================
   ORDER INFO
========================================================= */

.fcu-order-info {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    padding-bottom: 22px;

    border-bottom: 1px solid #edf1f2;
}


.fcu-order-info span,
.fcu-order-footer span {
    display: block;

    color: #8b95a1;

    font-size: 13px;

    margin-bottom: 5px;
}


.fcu-order-info strong,
.fcu-order-footer strong {
    color: var(--primary);

    font-size: 15px;
}


/* =========================================================
   TRACKING
========================================================= */

.fcu-tracking {
    position: relative;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    padding: 27px 5px 25px;
}


.fcu-track-line {
    position: absolute;

    left: 10%;
    right: 10%;

    top: 48px;

    height: 2px;

    background: #e5e7eb;

    z-index: 0;
}


.fcu-track-step {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


.fcu-track-icon {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    border: 2px solid #e5e7eb;

    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #9ca3af;

    font-size: 15px;

    margin-bottom: 9px;
}


.fcu-track-step.completed .fcu-track-icon,
.fcu-track-step.active .fcu-track-icon {
    border-color: #1596a8;

    background: #1596a8;

    color: #ffffff;
}


.fcu-track-step.completed::before {
    content: "";

    position: absolute;

    width: 25%;
    height: 2px;

    background: #1596a8;

    top: 18px;

    right: 50%;
}


.fcu-track-step span {
    color: var(--primary);

    font-size: 13px;
    font-weight: 700;
}


.fcu-track-step small {
    margin-top: 3px;

    color: #9ca3af;

    font-size: 13px;
}


.fcu-track-step.active span {
    color: #1596a8;
}


/* =========================================================
   ORDER FOOTER
========================================================= */

.fcu-order-footer {
    display: flex;
    align-items: center;

    gap: 30px;

    padding-top: 18px;

    border-top: 1px solid #edf1f2;
}


.fcu-order-footer .fcu-outline-btn {
    margin-left: auto;
}


/* =========================================================
   PICKUP PANEL
========================================================= */

.fcu-pickup-date {
    display: flex;
    align-items: center;

    gap: 14px;

    padding-bottom: 20px;

    border-bottom: 1px solid #edf1f2;
}


.fcu-date-box {
    width: 55px;
    height: 60px;

    flex: 0 0 55px;

    border-radius: 9px;

    background: #e8f7f9;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}


.fcu-date-box span {
    color: #1596a8;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1px;
}


.fcu-date-box strong {
    margin-top: 3px;

    color: orange;

    font-size: 22px;
}


.fcu-pickup-date > div:last-child strong {
    color: var(--primary);

    font-size: 15px;
}


.fcu-pickup-date p {
    margin: 5px 0 0;

    color: #8b95a1;

    font-size: 15px;
}


.fcu-address {
    display: flex;

    gap: 12px;

    padding: 18px 0;
}


.fcu-address > i {
    color: #1596a8;

    font-size: 14px;

    margin-top: 2px;
}


.fcu-address strong {
    display: block;

    color: var(--primary);

    font-size: 13px;
}


.fcu-address p {
    margin: 5px 0 0;

    color: #8b95a1;

    font-size: 15px;

    line-height: 1.7;
}


.fcu-pickup-actions {
    display: flex;

    gap: 8px;
}


.fcu-pickup-actions button {
    flex: 1;
}


/* =========================================================
   RECENT ORDERS
========================================================= */

.fcu-recent-orders {
    margin-bottom: 28px;
}


.fcu-view-all {
    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: #1596a8;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;
}


.fcu-table-wrapper {
    overflow-x: auto;
}


.fcu-orders-table {
    width: 100%;

    border-collapse: collapse;

    min-width: 700px;
}


.fcu-orders-table th {
    padding: 11px 12px;

    text-align: left;

    background: #f8fafb;

    color: #8b95a1;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.7px;

    text-transform: uppercase;
}


.fcu-orders-table td {
    padding: 15px 12px;

    border-bottom: 1px solid #edf1f2;

    color: #6b7280;

    font-size: 13px;
}


.fcu-orders-table tr:last-child td {
    border-bottom: none;
}


.fcu-orders-table td strong {
    color: var(--primary);

    font-size: 13px;
}


.fcu-table-status {
    display: inline-flex;

    padding: 5px 8px;

    border-radius: 15px;

    font-size: 13px;
    font-weight: 700;
}


.fcu-table-status.processing {
    background: #fff7ed;
    color: #ea580c;
}


.fcu-table-status.delivered {
    background: #ecfdf5;
    color: #059669;
}


.fcu-more-btn {
    border: none;

    background: transparent;

    color: #9ca3af;

    cursor: pointer;

    font-size: 13px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.fcu-section-heading {
    margin-bottom: 15px;
}


.fcu-section-heading h2 {
    margin: 5px 0 0;

    color: #111827;

    font-size: 20px;
}


/* =========================================================
   SERVICES
========================================================= */

.fcu-services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;

    margin-bottom: 25px;
}


.fcu-service-card {
    position: relative;

    display: flex;
    align-items: center;

    gap: 13px;

    min-width: 0;

    padding: 18px;

    background: #ffffff;

    border: 1px solid #e5ebed;

    border-radius: 13px;

    text-decoration: none;

    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.03);

    transition: 0.25s ease;
}


.fcu-service-card:hover {
    transform: translateY(-3px);

    border-color: #b8dfe4;

    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.07);
}


.fcu-service-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    border-radius: 10px;

    background: #e8f7f9;

    color: #1596a8;

    display: flex;
    align-items: center;
    justify-content: center;
}


.fcu-service-icon.green {
    background: #ecfdf5;
    color: #10b981;
}


.fcu-service-icon.orange {
    background: #fff7ed;
    color: #f97316;
}


.fcu-service-card h3 {
    margin: 0;

    color: #111827;

    font-size: 15px;
}


.fcu-service-card p {
    margin: 5px 0;

    color: #8b95a1;

    font-size: 13px;

    line-height: 1.5;
}


.fcu-service-card span {
    color: #1596a8;

    font-size: 15px;
    font-weight: 700;
}


.fcu-service-arrow {
    margin-left: auto;

    color: #9ca3af;

    font-size: 15px;
}


/* =========================================================
   BOTTOM GRID
========================================================= */

.fcu-bottom-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;

    margin-bottom: 20px;
}


.fcu-icon-action {
    width: 32px;
    height: 32px;

    border: 1px solid #e1e8ea;

    border-radius: 8px;

    background: #ffffff;

    color: #1596a8;

    cursor: pointer;
}


.fcu-saved-address {
    display: flex;

    gap: 14px;

    align-items: flex-start;
}


.fcu-address-icon,
.fcu-card-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    border-radius: 9px;

    background: #e8f7f9;

    color: #1596a8;

    display: flex;
    align-items: center;
    justify-content: center;
}


.fcu-saved-address strong {
    display: block;

    color: #111827;

    font-size: 13px;
}


.fcu-saved-address p {
    margin: 4px 0;

    color: var(--primary);

    font-size: 13px;
}


.fcu-saved-address span {
    color: #8b95a1;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   PAYMENT
========================================================= */

.fcu-payment-method {
    display: flex;
    align-items: center;

    gap: 13px;
}


.fcu-payment-method strong {
    display: block;

    color: var(--primary);

    font-size: 15px;
}


.fcu-payment-method p {
    margin: 4px 0 0;

    color: #8b95a1;

    font-size: 15px;
}


.fcu-payment-active {
    margin-left: auto;

    padding: 5px 8px;

    border-radius: 15px;

    background: #ecfdf5;

    color: #059669;

    font-size: 15px;
    font-weight: 700;
}


/* =========================================================
   PROFILE
========================================================= */

.fcu-profile-panel {
    margin-bottom: 10px;
}


.fcu-profile-details {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 20px;
}


.fcu-profile-details span {
    display: block;

    color: #8b95a1;

    font-size: 15px;

    margin-bottom: 6px;
}


.fcu-profile-details strong {
    color: var(--primary);

    font-size: 15px;

    word-break: break-word;
}


/* =========================================================
   FOOTER
========================================================= */

.fcu-footer {
    background: #ffffff;

    border-top: 1px solid #e5ebed;

    padding: 20px 0;
}


.fcu-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.fcu-footer p {
    margin: 0;

    color: #8b95a1;

    font-size: 15px;
}


.fcu-footer div:last-child {
    display: flex;

    gap: 20px;
}


.fcu-footer a {
    color: #6b7280;

    text-decoration: none;

    font-size: 15px;
}


.fcu-footer a:hover {
    color: #1596a8;
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark-mode .freshcare-user-dashboard,
.dark-mode .freshcare-user-dashboard {
    background: #0f1720;
}


body.dark-mode .freshcare-user-dashboard .fcu-sidebar,
body.dark-mode .freshcare-user-dashboard .fcu-panel,
body.dark-mode .freshcare-user-dashboard .fcu-stat-card,
body.dark-mode .freshcare-user-dashboard .fcu-service-card,
body.dark-mode .freshcare-user-dashboard .fcu-notification,
body.dark-mode .freshcare-user-dashboard .fcu-icon-action,
body.dark-mode .freshcare-user-dashboard .fcu-date-box {
    background: #17212b;

    border-color: #273541;
}


body.dark-mode .freshcare-user-dashboard .fcu-topbar h1,
body.dark-mode .freshcare-user-dashboard .fcu-panel-heading h2,
body.dark-mode .freshcare-user-dashboard .fcu-stat-content strong,
body.dark-mode .freshcare-user-dashboard .fcu-profile-info h3,
body.dark-mode .freshcare-user-dashboard .fcu-service-card h3,
body.dark-mode .freshcare-user-dashboard .fcu-saved-address strong,
body.dark-mode .freshcare-user-dashboard .fcu-footer {
    color: #f3f4f6;
}


body.dark-mode .freshcare-user-dashboard .fcu-topbar p,
body.dark-mode .freshcare-user-dashboard .fcu-stat-content span,
body.dark-mode .freshcare-user-dashboard .fcu-stat-content small,
body.dark-mode .freshcare-user-dashboard .fcu-service-card p,
body.dark-mode .freshcare-user-dashboard .fcu-orders-table td,
body.dark-mode .freshcare-user-dashboard .fcu-profile-details span,
body.dark-mode .freshcare-user-dashboard .fcu-footer p {
    color: #94a3b8;
}


body.dark-mode .freshcare-user-dashboard .fcu-profile,
body.dark-mode .freshcare-user-dashboard .fcu-sidebar-bottom,
body.dark-mode .freshcare-user-dashboard .fcu-order-info,
body.dark-mode .freshcare-user-dashboard .fcu-order-footer,
body.dark-mode .freshcare-user-dashboard .fcu-pickup-date,
body.dark-mode .freshcare-user-dashboard .fcu-orders-table td {
    border-color: #273541;
}


body.dark-mode .freshcare-user-dashboard .fcu-help-box,
body.dark-mode .freshcare-user-dashboard .fcu-orders-table th {
    background: #111a23;
}


body.dark-mode .freshcare-user-dashboard .fcu-help-icon,
body.dark-mode .freshcare-user-dashboard .fcu-track-icon {
    background: #17212b;

    border-color: #334453;
}


body.dark-mode .freshcare-user-dashboard .fcu-track-step span,
body.dark-mode .freshcare-user-dashboard .fcu-order-info strong,
body.dark-mode .freshcare-user-dashboard .fcu-order-footer strong,
body.dark-mode .freshcare-user-dashboard .fcu-address strong,
body.dark-mode .freshcare-user-dashboard .fcu-pickup-date > div:last-child strong,
body.dark-mode .freshcare-user-dashboard .fcu-payment-method strong,
body.dark-mode .freshcare-user-dashboard .fcu-profile-details strong {
    color: #dbe4ea;
}


body.dark-mode .freshcare-user-dashboard .fcu-track-line {
    background: #334453;
}


body.dark-mode .freshcare-user-dashboard .fcu-footer {
    background: #111a23;

    border-color: #273541;
}


/* =========================================================
   RTL
========================================================= */

html[dir="rtl"] .fcu-sidebar-link small {
    margin-left: 0;
    margin-right: auto;
}


html[dir="rtl"] .fcu-help-box > i {
    margin-left: 0;
    margin-right: auto;
}


html[dir="rtl"] .fcu-order-footer .fcu-outline-btn {
    margin-left: 0;
    margin-right: auto;
}


html[dir="rtl"] .fcu-service-arrow {
    margin-left: 0;
    margin-right: auto;
}


html[dir="rtl"] .fcu-payment-active {
    margin-left: 0;
    margin-right: auto;
}


html[dir="rtl"] .fcu-footer .container {
    direction: rtl;
}


/* =========================================================
   RESPONSIVE - 1200px
========================================================= */

@media (max-width: 1200px) {

    .fcu-dashboard-container {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 20px;
    }

    .fcu-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fcu-content-grid {
        grid-template-columns: 1fr;
    }

    .fcu-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}


/* =========================================================
   RESPONSIVE - 900px
========================================================= */

@media (max-width: 900px) {

    .fcu-dashboard {
        padding-top: 30px;
    }

    .fcu-dashboard-container {
        width: min(100% - 30px, 760px);

        grid-template-columns: 1fr;
    }

    .fcu-sidebar {
        position: static;

        display: none;
    }

    .fcu-topbar {
        align-items: flex-start;

        flex-direction: column;
    }

    .fcu-top-actions {
        width: 100%;
    }

    .fcu-top-actions .fcu-primary-btn {
        flex: 1;
    }

    .fcu-services-grid {
        grid-template-columns: 1fr;
    }

    .fcu-bottom-grid {
        grid-template-columns: 1fr;
    }

    .fcu-profile-details {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   RESPONSIVE - 600px
========================================================= */

@media (max-width: 600px) {

    .fcu-dashboard {
        padding: 25px 0 45px;
    }

    .fcu-dashboard-container {
        width: calc(100% - 24px);
    }

    .fcu-topbar h1 {
        font-size: 25px;
    }

    .fcu-topbar p {
        font-size: 11px;
        line-height: 1.6;
    }

    .fcu-stats-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .fcu-stat-card {
        padding: 14px;

        gap: 9px;
    }

    .fcu-stat-icon {
        width: 35px;
        height: 35px;

        flex-basis: 35px;

        font-size: 12px;
    }

    .fcu-stat-content strong {
        font-size: 18px;
    }

    .fcu-stat-content span {
        font-size: 8px;
    }

    .fcu-stat-content small {
        font-size: 7px;
    }

    .fcu-panel {
        padding: 17px;
    }

    .fcu-panel-heading h2 {
        font-size: 16px;
    }

    .fcu-order-info {
        grid-template-columns: 1fr;
    }

    .fcu-tracking {
        overflow-x: auto;

        min-width: 580px;
    }

    .fcu-order-panel {
        overflow: hidden;
    }

    .fcu-order-footer {
        flex-wrap: wrap;

        gap: 15px;
    }

    .fcu-order-footer .fcu-outline-btn {
        width: 100%;

        margin-left: 0;
    }

    .fcu-pickup-actions {
        flex-direction: column;
    }

    .fcu-profile-details {
        grid-template-columns: 1fr;
    }

    .fcu-top-actions {
        align-items: stretch;
    }

    .fcu-notification {
        flex: 0 0 42px;
    }

    .fcu-footer .container {
        flex-direction: column;

        text-align: center;
    }

}


/* =========================================================
   RESPONSIVE - 400px
========================================================= */

@media (max-width: 400px) {

    .fcu-stats-grid {
        grid-template-columns: 1fr;
    }

    .fcu-stat-card {
        min-height: 70px;
    }

    .fcu-top-actions {
        flex-wrap: wrap;
    }

    .fcu-top-actions .fcu-primary-btn {
        width: 100%;
    }

}
/* =========================================================
   FRESHCARE COVERAGE PAGE ONLY
========================================================= */

.freshcare-coverage-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.freshcare-coverage-label {
    display: inline-block;
    color: #1596a8;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================================
   HERO
========================================================= */

.freshcare-coverage-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        url("../images/lan-11.png")
        center center / cover no-repeat;
}

.freshcare-coverage-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 31, 37, 0.88),
            rgba(8, 31, 37, 0.55),
            rgba(8, 31, 37, 0.15)
        );
}

.freshcare-coverage-hero .freshcare-coverage-container {
    position: relative;
    z-index: 2;
}

.freshcare-coverage-hero-content {
    max-width: 680px;
    padding: 80px 0;
}

.freshcare-coverage-eyebrow {
    display: inline-block;
    margin-bottom: 18px;

    color: #8de0e7;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    
}

.freshcare-coverage-hero h1 {
    margin: 0;

    color: var(--white);

    font-size: clamp(42px, 6vw, 76px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    
}

.freshcare-coverage-hero p {
    max-width: 550px;
    margin-top: 24px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   INTRO
========================================================= */

.freshcare-coverage-intro {
    padding: 105px 0;
    background: #ffffff;
}

.freshcare-coverage-intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.freshcare-coverage-intro-heading h2 {
    margin-top: 15px;

    color: #17232a;

    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.freshcare-coverage-intro-text {
    padding-top: 15px;
}

.freshcare-coverage-intro-text p {
    margin-bottom: 20px;

    color: #52616a;

    font-size: 15px;
    line-height: 1.9;
    text-align: justify;
}

.freshcare-coverage-intro-text p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.freshcare-section-heading {
    max-width: 650px;
    margin: 0 auto 55px;
    text-align: center;
}

.freshcare-section-heading h2 {
    margin-top: 13px;

    color: #17232a;

    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.1;
    letter-spacing: -1.4px;
}

.freshcare-section-heading p {
    margin-top: 15px;

    color: #75838b;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   SERVICE AREAS
========================================================= */

.freshcare-service-areas {
    padding: 105px 0;
    background: #f7fafb;
}

.freshcare-area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.freshcare-area-card {
    position: relative;

    min-height: 285px;
    padding: 30px;

    background: #ffffff;

    border: 1px solid #e5ecef;
    border-radius: 16px;

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.freshcare-area-card:hover {
    transform: translateY(-7px);

    border-color: rgba(21, 150, 168, 0.35);

    box-shadow:
        0 18px 45px rgba(20, 45, 55, 0.08);
}

.freshcare-area-number {
    position: absolute;
    top: 22px;
    right: 25px;

    color: #e8edef;

    font-size: 34px;
    font-weight: 800;
}

.freshcare-area-icon {
    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    margin-bottom: 27px;

    border-radius: 13px;

    background: #e9f8fa;
    color: #1596a8;

    font-size: 19px;

    transition: 0.3s ease;
}

.freshcare-area-card:hover .freshcare-area-icon {
    background: #1596a8;
    color: #ffffff;
}

.freshcare-area-card h3 {
    margin-bottom: 10px;

    color: #17232a;

    font-size: 20px;
}

.freshcare-area-card p {
    max-width: 290px;

    color: #75838b;

    font-size: 15px;
    line-height: 1.7;
}

.freshcare-area-card a {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 22px;

    color: #1596a8;

    font-size: 15px;
    font-weight: 800;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.freshcare-area-card a i {
    transition: transform 0.25s ease;
}

.freshcare-area-card:hover a i {
    transform: translateX(4px);
}


/* =========================================================
   HOW IT WORKS
========================================================= */

.freshcare-coverage-process {
    padding: 110px 0;
    background: #ffffff;
}

.freshcare-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.freshcare-process-card {
    position: relative;

    padding: 35px 25px;

    background: #f7fafb;

    border-top: 2px solid #1596a8;

    border-radius: 0 0 16px 16px;
}

.freshcare-process-step {
    position: absolute;
    top: 17px;
    right: 20px;

    color: #cdd8dc;

    font-size: 24px;
    font-weight: 800;
}

.freshcare-process-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    margin-bottom: 25px;

    background: #ffffff;

    border-radius: 12px;

    color: #1596a8;

    box-shadow:
        0 8px 20px rgba(20, 45, 55, 0.05);
}

.freshcare-process-card h3 {
    margin-bottom: 10px;

    color: #17232a;

    font-size: 17px;
}

.freshcare-process-card p {
    color: #75838b;

    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}


/* =========================================================
   COVERAGE CHECKER
========================================================= */

.freshcare-coverage-checker {
    padding: 90px 0;

    background: #e9f8fa;
}

.freshcare-checker-box {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;

    padding: 55px 60px;

    background: #ffffff;

    border: 1px solid #dceff1;

    border-radius: 22px;

    box-shadow:
        0 18px 45px rgba(20, 45, 55, 0.08);
}

.freshcare-checker-content h2 {
    margin-top: 13px;

    color: var(--primary);

    font-size: clamp(30px, 4vw, 45px);
    line-height: 1.1;
    letter-spacing: -1.2px;
}

.freshcare-checker-content p {
    max-width: 510px;

    margin-top: 16px;

    color: #75838b;

    font-size: 15px;
    line-height: 1.8;
}

.freshcare-checker-form {
    display: flex;
    gap: 10px;
}

.freshcare-input-wrapper {
    position: relative;
    flex: 1;
}

.freshcare-input-wrapper i {
    position: absolute;

    top: 50%;
    left: 18px;

    transform: translateY(-50%);

    color: #1596a8;

    font-size: 14px;
}

.freshcare-input-wrapper input {
    width: 100%;
    height: 54px;

    padding: 0 18px 0 46px;

    border: 1px solid #e5ecef;

    border-radius: 9px;

    outline: none;

    background: #ffffff;

    color: #17232a;

    font-size: 15px;
}

.freshcare-input-wrapper input:focus {
    border-color: #1596a8;

    box-shadow:
        0 0 0 3px rgba(21, 150, 168, 0.1);
}

.freshcare-checker-form button {
    height: 54px;

    padding: 0 22px;

    border: 0;
    border-radius: 9px;

    background: #1596a8;
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    white-space: nowrap;

    transition: 0.25s ease;
}

.freshcare-checker-form button:hover {
    background: #0d7180;
    transform: translateY(-2px);
}

.freshcare-checker-form button i {
    margin-left: 7px;
}


/* =========================================================
   BENEFITS
========================================================= */

.freshcare-coverage-benefits {
    padding: 110px 0;
    background: #ffffff;
}

.freshcare-benefits-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    align-items: center;
}

.freshcare-benefit-intro h2 {
    max-width: 400px;

    margin-top: 14px;

    color: #17232a;

    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.freshcare-benefit-intro p {
    max-width: 430px;

    margin-top: 18px;

    color: #75838b;

    font-size: 15px;
    line-height: 1.85;
}

.freshcare-benefit-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
}

.freshcare-benefit-item {
    display: flex;

    gap: 15px;

    padding: 24px;

    border: 1px solid #e5ecef;

    border-radius: 14px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.freshcare-benefit-item:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(20, 45, 55, 0.06);
}

.freshcare-benefit-icon {
    width: 43px;
    height: 43px;

    flex: 0 0 43px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    background: #e9f8fa;
    color: #1596a8;

    font-size: 15px;
}

.freshcare-benefit-item h3 {
    margin-bottom: 7px;

    color: #17232a;

    font-size: 15px;
}

.freshcare-benefit-item p {
    color: #75838b;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
   FINAL CTA
========================================================= */

.freshcare-coverage-cta {
    padding: 90px 0;

    background:
        linear-gradient(
            120deg,
            #0d7180,
            #1596a8
        );
}

.freshcare-cta-inner {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.freshcare-cta-inner .freshcare-coverage-label {
    color: #9ce6eb;
}

.freshcare-cta-inner h2 {
    max-width: 600px;

    margin-top: 12px;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 52px);

    line-height: 1.08;
    letter-spacing: -1.5px;
}

.freshcare-cta-inner p {
    max-width: 520px;

    margin-top: 14px;

    color: rgba(255,255,255,0.78);

    font-size: 15px;
    line-height: 1.8;
}

.freshcare-cta-inner > a {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    padding: 16px 24px;

    border-radius: 9px;

    background: #ffffff;
    color: #0d7180;

    font-size: 15px;
    font-weight: 800;

    transition: 0.25s ease;
}

.freshcare-cta-inner > a:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(0,0,0,0.15);
}

.freshcare-cta-inner > a i {
    transition: transform 0.25s ease;
}

.freshcare-cta-inner > a:hover i {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .freshcare-area-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .freshcare-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .freshcare-coverage-intro-grid,
    .freshcare-benefits-grid {
        gap: 55px;
    }

}


/* =========================================================
   TABLET SMALL
========================================================= */

@media (max-width: 900px) {

    .freshcare-coverage-hero {
        min-height: 500px;
    }

    .freshcare-coverage-intro-grid {
        grid-template-columns: 1fr;
    }

    .freshcare-coverage-intro-text {
        padding-top: 0;
    }

    .freshcare-checker-box {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 40px;
    }

    .freshcare-benefits-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .freshcare-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

    .freshcare-coverage-container {
        width: calc(100% - 30px);
    }

    .freshcare-coverage-hero {
        min-height: 470px;

        background-position: center;
    }

    .freshcare-coverage-hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(8, 31, 37, 0.86),
                rgba(8, 31, 37, 0.58)
            );
    }

    .freshcare-coverage-hero-content {
        padding: 60px 0;
    }

    .freshcare-coverage-hero h1 {
        font-size: 43px;
        letter-spacing: -1px;
    }

    .freshcare-coverage-hero p {
        font-size: 14px;
    }

    .freshcare-coverage-intro,
    .freshcare-service-areas,
    .freshcare-coverage-process,
    .freshcare-coverage-benefits {
        padding: 75px 0;
    }

    .freshcare-section-heading {
        margin-bottom: 38px;
    }

    .freshcare-area-grid,
    .freshcare-process-grid {
        grid-template-columns: 1fr;
    }

    .freshcare-area-card {
        min-height: auto;
        padding: 25px;
    }

    .freshcare-checker-box {
        padding: 30px 22px;
        border-radius: 16px;
    }

    .freshcare-checker-form {
        flex-direction: column;
    }

    .freshcare-checker-form button {
        width: 100%;
    }

    .freshcare-benefit-list {
        grid-template-columns: 1fr;
    }

    .freshcare-benefit-item {
        padding: 20px;
    }

    .freshcare-coverage-cta {
        padding: 70px 0;
    }

    .freshcare-cta-inner > a {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

    .freshcare-coverage-hero h1 {
        font-size: 37px;
    }

    .freshcare-coverage-intro-heading h2,
    .freshcare-benefit-intro h2 {
        font-size: 34px;
    }

    .freshcare-section-heading h2 {
        font-size: 32px;
    }

    .freshcare-process-card {
        padding: 28px 22px;
    }

}
/* =========================================================
   FRESHCARE ADMIN DASHBOARD
   ISOLATED ADMIN CSS
   DO NOT REMOVE EXISTING CSS ABOVE
========================================================= */

.fcadmin-body {
    margin: 0;
    padding: 0;
    background: #f5f8f9;
    color: #172326;
    font-family: "Times New Roman", Times, serif;
}

.fcadmin-body *,
.fcadmin-body *::before,
.fcadmin-body *::after {
    box-sizing: border-box;
}

.fcadmin-body a {
    text-decoration: none;
}

.fcadmin-body button,
.fcadmin-body input,
.fcadmin-body select,
.fcadmin-body textarea {
    font-family: inherit;
}

.fcadmin-app {
    min-height: 100vh;
    display: flex;

    --fcadmin-primary: #1596a8;
    --fcadmin-primary-dark: #0d7180;
    --fcadmin-primary-soft: #e8f7f9;

    --fcadmin-bg: #f5f8f9;
    --fcadmin-surface: #ffffff;
    --fcadmin-text: #172326;
    --fcadmin-muted: #718083;
    --fcadmin-light-text: #9aa7a9;
    --fcadmin-border: #e5eaeb;

    --fcadmin-success: #24936a;
    --fcadmin-warning: #d99a25;
    --fcadmin-danger: #d45d5d;

    --fcadmin-sidebar-width: 265px;
    --fcadmin-radius: 18px;
    --fcadmin-shadow: 0 12px 35px rgba(20, 40, 44, 0.07);
}


/* =========================================================
   SIDEBAR
========================================================= */

.fcadmin-sidebar {
    position: fixed;
    top: 0;
    left: 0;

    width: 265px;
    height: 100vh;

    padding: 25px 18px;

    display: flex;
    flex-direction: column;

    background: #ffffff;
    border-right: 1px solid #e5eaeb;

    z-index: 1000;
}

.fcadmin-brand {
    display: flex;
    align-items: center;
    gap: 11px;

    padding: 4px 10px 28px;
}

.fcadmin-brand-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: #1596a8;

    border-radius: 11px;
    font-size: 18px;
}

.fcadmin-brand-text {
    color: #172326;
    font-size: 24px;
    font-weight: 700;
}

.fcadmin-brand-text span {
    color: #1596a8;
}


/* ADMIN PROFILE */

.fcadmin-profile {
    display: flex;
    align-items: center;
    gap: 11px;

    padding: 14px;

    background: #f5f8f9;
    border-radius: 13px;

    margin-bottom: 24px;
}

.fcadmin-profile-avatar {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #ffffff;
    background: #1596a8;

    border-radius: 50%;
    font-size: 16px;
}

.fcadmin-profile strong {
    display: block;

    color: #172326;
    font-size: 14px;
}

.fcadmin-profile span {
    display: block;

    margin-top: 2px;

    color: #718083;
    font-size: 12px;
}


/* SIDEBAR NAV */

.fcadmin-nav {
    flex: 1;
    overflow-y: auto;
}

.fcadmin-nav-title {
    padding: 0 12px;
    margin-bottom: 9px;

    color: #9aa7a9;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.fcadmin-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fcadmin-nav-link {
    min-height: 45px;

    padding: 0 13px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #718083;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.25s ease;
}

.fcadmin-nav-link i {
    width: 18px;

    text-align: center;

    font-size: 15px;
}

.fcadmin-nav-link:hover {
    color: #1596a8;
    background: #e8f7f9;
}

.fcadmin-nav-link.fcadmin-active {
    color: #ffffff;
    background: #1596a8;

    box-shadow: 0 7px 18px rgba(21, 150, 168, 0.18);
}


/* SIDEBAR BOTTOM */

.fcadmin-sidebar-bottom {
    padding-top: 18px;
    margin-top: 15px;

    border-top: 1px solid #e5eaeb;

    display: flex;
    flex-direction: column;
    gap: 5px;
}


/* =========================================================
   MAIN
========================================================= */

.fcadmin-main {
    width: calc(100% - 265px);
    min-height: 100vh;

    margin-left: 265px;
    padding: 0 30px 35px;
}


/* =========================================================
   TOPBAR
========================================================= */

.fcadmin-topbar {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-bottom: 1px solid #e5eaeb;
}

.fcadmin-topbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fcadmin-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    align-items: center;
    justify-content: center;

    color: #172326;
    background: #ffffff;

    border: 1px solid #e5eaeb;
    border-radius: 9px;

    cursor: pointer;
}

.fcadmin-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.fcadmin-topbar-btn {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #718083;
    background: #ffffff;

    border: 1px solid #e5eaeb;
    border-radius: 9px;

    cursor: pointer;

    transition: all 0.25s ease;
}

.fcadmin-topbar-btn:hover {
    color: #1596a8;
    border-color: #1596a8;
}


/* =========================================================
   PAGE HEADER
========================================================= */

.fcadmin-page-heading {
    padding: 30px 0 25px;
}

.fcadmin-page-heading h1 {
    margin: 0 0 5px;

    color: #172326;
    font-size: 30px;
}

.fcadmin-page-heading p {
    margin: 0;

    color: #718083;
    font-size: 14px;
}


/* =========================================================
   WELCOME BANNER
========================================================= */

.fcadmin-welcome {
    position: relative;

    padding: 32px 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    background: linear-gradient(
        135deg,
        #1596a8,
        #0d7180
    );

    border-radius: 20px;

    overflow: hidden;

    margin-bottom: 28px;
}

.fcadmin-welcome::after {
    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    right: -75px;
    top: -110px;

    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
}

.fcadmin-welcome-content {
    position: relative;
    z-index: 2;
}

.fcadmin-welcome-content span {
    color: #d7f6f8;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.fcadmin-welcome-content h2 {
    margin: 8px 0 7px;

    color: #ffffff;
    font-size: 29px;
}

.fcadmin-welcome-content p {
    max-width: 650px;

    margin: 0;

    color: rgba(255,255,255,0.82);

    font-size: 15px;
}

.fcadmin-welcome-action {
    position: relative;
    z-index: 2;
}


/* =========================================================
   BUTTON
========================================================= */

.fcadmin-btn {
    min-height: 44px;

    padding: 0 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    color: #1596a8;
    background: #ffffff;

    border: 1px solid #ffffff;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    transition: all 0.25s ease;
}

.fcadmin-btn:hover {
    color: #ffffff;
    background: transparent;

    transform: translateY(-2px);
}


/* =========================================================
   STAT CARDS
========================================================= */

.fcadmin-stat-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

    margin-bottom: 28px;
}

.fcadmin-stat-card {
    padding: 22px;

    background: #ffffff;

    border: 1px solid #e5eaeb;
    border-radius: 15px;

    box-shadow: 0 7px 25px rgba(20,40,44,0.04);

    transition: all 0.25s ease;
}

.fcadmin-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(20,40,44,0.07);
}

.fcadmin-stat-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
}

.fcadmin-stat-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1596a8;
    background: #e8f7f9;

    border-radius: 10px;
}

.fcadmin-stat-label {
    color: #718083;
    font-size: 15px;
    font-weight: 700;
}

.fcadmin-stat-value {
    margin-top: 13px;

    color: #172326;
    font-size: 27px;
    font-weight: 700;
}

.fcadmin-stat-change {
    margin-top: 5px;

    color: #24936a;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   CONTENT GRID
========================================================= */

.fcadmin-content-grid {
    display: grid;

    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.9fr);

    gap: 22px;

    margin-bottom: 22px;
}

.fcadmin-card {
    background: #ffffff;

    border: 1px solid #e5eaeb;
    border-radius: 17px;

    box-shadow: 0 7px 25px rgba(20,40,44,0.04);

    overflow: hidden;
}

.fcadmin-card-header {
    min-height: 67px;

    padding: 18px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    border-bottom: 1px solid #e5eaeb;
}

.fcadmin-card-header h3 {
    margin: 0;

    color: #172326;
    font-size: 18px;
}

.fcadmin-card-header span {
    color: #718083;
    font-size: 12px;
}


/* =========================================================
   REVENUE CHART
========================================================= */

.fcadmin-chart-wrap {
    padding: 20px;
}

.fcadmin-chart {
    width: 100%;
    height: 290px;
}

.fcadmin-chart svg {
    width: 100%;
    height: 100%;
}

.fcadmin-chart-line {
    fill: none;
    stroke: #1596a8;
    stroke-width: 3;
}

.fcadmin-chart-area {
    fill: rgba(21,150,168,0.10);
}

.fcadmin-chart-dot {
    fill: #1596a8;
}


/* =========================================================
   STATUS
========================================================= */

.fcadmin-status-wrap {
    padding: 25px;
}

.fcadmin-donut {
    width: 175px;
    height: 175px;

    margin: 5px auto 25px;

    position: relative;

    border-radius: 50%;

    background: conic-gradient(
        #1596a8 0 48%,
        #24936a 48% 72%,
        #d99a25 72% 88%,
        #d45d5d 88% 100%
    );

    display: flex;
    align-items: center;
    justify-content: center;
}

.fcadmin-donut::after {
    content: "";

    position: absolute;

    width: 108px;
    height: 108px;

    background: #ffffff;

    border-radius: 50%;
}

.fcadmin-donut-center {
    position: relative;
    z-index: 2;

    text-align: center;
}

.fcadmin-donut-center strong {
    display: block;

    color: #172326;
    font-size: 25px;
}

.fcadmin-donut-center span {
    color: #718083;
    font-size: 11px;
}

.fcadmin-status-list {
    display: flex;
    flex-direction: column;

    gap: 11px;
}

.fcadmin-status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #718083;

    font-size: 13px;
}

.fcadmin-status-label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fcadmin-status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;
}

.fcadmin-status-dot.blue {
    background: #1596a8;
}

.fcadmin-status-dot.green {
    background: #24936a;
}

.fcadmin-status-dot.yellow {
    background: #d99a25;
}

.fcadmin-status-dot.red {
    background: #d45d5d;
}

.fcadmin-status-item strong {
    color: #172326;
}


/* =========================================================
   TABLE
========================================================= */

.fcadmin-table-card {
    margin-bottom: 22px;
}

.fcadmin-table-wrap {
    width: 100%;

    overflow-x: auto;
}

.fcadmin-table {
    width: 100%;

    min-width: 700px;

    border-collapse: collapse;
}

.fcadmin-table th {
    padding: 14px 20px;

    color: #9aa7a9;

    background: #f8fafb;

    font-size: 11px;
    font-weight: 700;

    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.fcadmin-table td {
    padding: 16px 20px;

    color: #718083;

    border-top: 1px solid #edf0f1;

    font-size: 13px;
}

.fcadmin-table td strong {
    color: #172326;
}

.fcadmin-order-user {
    display: flex;
    align-items: center;

    gap: 9px;
}

.fcadmin-order-avatar {
    width: 33px;
    height: 33px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1596a8;
    background: #e8f7f9;

    border-radius: 50%;

    font-size: 12px;
    font-weight: 700;
}

.fcadmin-status-badge {
    display: inline-flex;
    align-items: center;

    padding: 5px 10px;

    border-radius: 20px;

    font-size: 11px;
    font-weight: 700;
}

.fcadmin-status-badge.completed {
    color: #24936a;
    background: #e8f7f1;
}

.fcadmin-status-badge.processing {
    color: #1596a8;
    background: #e8f7f9;
}

.fcadmin-status-badge.pickup {
    color: #d99a25;
    background: #fff6df;
}

.fcadmin-status-badge.cancelled {
    color: #d45d5d;
    background: #fff0f0;
}

.fcadmin-more-btn {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #718083;
    background: transparent;

    border: 1px solid #e5eaeb;
    border-radius: 7px;

    cursor: pointer;

    transition: all 0.2s ease;
}

.fcadmin-more-btn:hover {
    color: #1596a8;
    border-color: #1596a8;
}


/* =========================================================
   LOWER GRID
========================================================= */

.fcadmin-lower-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 22px;

    margin-bottom: 22px;
}

.fcadmin-list {
    padding: 8px 22px 18px;

    display: flex;
    flex-direction: column;
}

.fcadmin-list-item {
    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    border-bottom: 1px solid #edf0f1;
}

.fcadmin-list-item:last-child {
    border-bottom: none;
}

.fcadmin-list-left {
    display: flex;
    align-items: center;
    gap: 11px;
}

.fcadmin-list-icon {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1596a8;
    background: #e8f7f9;

    border-radius: 9px;
}

.fcadmin-list-info strong {
    display: block;

    color: #172326;
    font-size: 13px;
}

.fcadmin-list-info span {
    display: block;

    margin-top: 2px;

    color: #9aa7a9;
    font-size: 11px;
}

.fcadmin-list-value {
    color: #172326;

    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   QUICK CARDS
========================================================= */

.fcadmin-quick-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
    
}
.fcadmin-main {
    width: calc(100% - 265px);
    min-height: 100vh;
    margin-left: 265px;
    padding: 0 50px 35px;
}


.fcadmin-quick-card {
    padding: 22px;

    display: flex;
    align-items: center;

    gap: 14px;

    background: #ffffff;

    border: 1px solid #e5eaeb;
    border-radius: 14px;

    transition: all 0.25s ease;
}

.fcadmin-quick-card:hover {
    transform: translateY(-4px);
    border-color: #1596a8;
    box-shadow: 0 10px 25px rgba(20,40,44,0.06);
}

.fcadmin-quick-icon {
    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1596a8;
    background: #e8f7f9;

    border-radius: 10px;
}

.fcadmin-quick-card strong {
    display: block;

    color: #172326;
    font-size: 14px;
}

.fcadmin-quick-card span {
    display: block;

    margin-top: 3px;

    color: #718083;
    font-size: 11px;
}


/* =========================================================
   FOOTER
========================================================= */

.fcadmin-footer {
    padding: 28px 0 5px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    color: #9aa7a9;

    font-size: 12px;
}

.fcadmin-footer p {
    margin: 0;
}


/* =========================================================
   OVERLAY
========================================================= */

.fcadmin-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.45);

    opacity: 0;
    visibility: hidden;

    transition: all 0.25s ease;

    z-index: 900;
}

.fcadmin-overlay.fcadmin-show {
    opacity: 1;
    visibility: visible;
}


/* =========================================================
   DARK MODE
========================================================= */

.fcadmin-body.fcadmin-dark {
    background: #101819;
    color: #eaf4f4;
}

.fcadmin-body.fcadmin-dark .fcadmin-sidebar,
.fcadmin-body.fcadmin-dark .fcadmin-card,
.fcadmin-body.fcadmin-dark .fcadmin-stat-card,
.fcadmin-body.fcadmin-dark .fcadmin-quick-card,
.fcadmin-body.fcadmin-dark .fcadmin-topbar-btn,
.fcadmin-body.fcadmin-dark .fcadmin-menu-toggle {
    background: #172326;
    border-color: #2a3b3e;
}

.fcadmin-body.fcadmin-dark .fcadmin-brand-text,
.fcadmin-body.fcadmin-dark .fcadmin-profile strong,
.fcadmin-body.fcadmin-dark .fcadmin-page-heading h1,
.fcadmin-body.fcadmin-dark .fcadmin-stat-value,
.fcadmin-body.fcadmin-dark .fcadmin-card-header h3,
.fcadmin-body.fcadmin-dark .fcadmin-list-info strong,
.fcadmin-body.fcadmin-dark .fcadmin-list-value,
.fcadmin-body.fcadmin-dark .fcadmin-table td strong,
.fcadmin-body.fcadmin-dark .fcadmin-donut-center strong,
.fcadmin-body.fcadmin-dark .fcadmin-status-item strong {
    color: #f3f8f8;
}

.fcadmin-body.fcadmin-dark .fcadmin-profile,
.fcadmin-body.fcadmin-dark .fcadmin-table th {
    background: #142022;
}

.fcadmin-body.fcadmin-dark .fcadmin-profile span,
.fcadmin-body.fcadmin-dark .fcadmin-page-heading p,
.fcadmin-body.fcadmin-dark .fcadmin-stat-label,
.fcadmin-body.fcadmin-dark .fcadmin-card-header span,
.fcadmin-body.fcadmin-dark .fcadmin-table td,
.fcadmin-body.fcadmin-dark .fcadmin-status-item,
.fcadmin-body.fcadmin-dark .fcadmin-list-info span,
.fcadmin-body.fcadmin-dark .fcadmin-quick-card span,
.fcadmin-body.fcadmin-dark .fcadmin-footer {
    color: #9fb1b3;
}

.fcadmin-body.fcadmin-dark .fcadmin-nav-link {
    color: #9fb1b3;
}

.fcadmin-body.fcadmin-dark .fcadmin-nav-link:hover {
    color: #58c7d4;
    background: #19343a;
}

.fcadmin-body.fcadmin-dark .fcadmin-topbar {
    border-color: #2a3b3e;
}

.fcadmin-body.fcadmin-dark .fcadmin-table th {
    color: #819395;
}

.fcadmin-body.fcadmin-dark .fcadmin-table td,
.fcadmin-body.fcadmin-dark .fcadmin-list-item,
.fcadmin-body.fcadmin-dark .fcadmin-card-header {
    border-color: #2a3b3e;
}

.fcadmin-body.fcadmin-dark .fcadmin-donut::after {
    background: #172326;
}

.fcadmin-body.fcadmin-dark .fcadmin-donut-center span {
    color: #9fb1b3;
}


/* =========================================================
   RESPONSIVE - 1200px
========================================================= */

@media (max-width: 1200px) {

    .fcadmin-sidebar {
        width: 235px;
    }

    .fcadmin-main {
        width: calc(100% - 235px);
        margin-left: 235px;
    }

    .fcadmin-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fcadmin-content-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   RESPONSIVE - 900px
========================================================= */

@media (max-width: 900px) {

    .fcadmin-sidebar {
        left: -270px;

        width: 265px;

        transition: left 0.3s ease;
    }

    .fcadmin-sidebar.fcadmin-open {
        left: 0;
    }

    .fcadmin-main {
        width: 100%;
        margin-left: 0;

        padding: 0 22px 30px;
    }

    .fcadmin-menu-toggle {
        display: flex;
    }

    .fcadmin-lower-grid {
        grid-template-columns: 1fr;
    }

    .fcadmin-welcome {
        align-items: flex-start;
        flex-direction: column;
    }

    .fcadmin-quick-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   RESPONSIVE - 650px
========================================================= */

@media (max-width: 650px) {

    .fcadmin-main {
        padding: 0 15px 25px;
    }

    .fcadmin-topbar {
        min-height: 70px;
    }

    .fcadmin-page-heading {
        padding: 24px 0 20px;
    }

    .fcadmin-page-heading h1 {
        font-size: 26px;
    }

    .fcadmin-stat-grid {
        grid-template-columns: 1fr;
    }

    .fcadmin-welcome {
        padding: 26px 23px;
        border-radius: 16px;
    }

    .fcadmin-welcome-content h2 {
        font-size: 24px;
    }

    .fcadmin-welcome-action {
        width: 100%;
    }

    .fcadmin-welcome-action .fcadmin-btn {
        width: 100%;
    }

    .fcadmin-card-header {
        padding: 16px;
    }

    .fcadmin-chart-wrap {
        padding: 12px;
    }

    .fcadmin-chart {
        height: 230px;
    }

    .fcadmin-status-wrap {
        padding: 20px;
    }

    .fcadmin-footer {
        flex-direction: column;
        text-align: center;
    }
}


/* =========================================================
   RESPONSIVE - 430px
========================================================= */

@media (max-width: 430px) {

    .fcadmin-brand-text {
        font-size: 21px;
    }

    .fcadmin-profile {
        padding: 11px;
    }

    .fcadmin-stat-card {
        padding: 18px;
    }

    .fcadmin-stat-value {
        font-size: 24px;
    }

    .fcadmin-welcome-content h2 {
        font-size: 22px;
    }

    .fcadmin-topbar-right {
        gap: 6px;
    }

    .fcadmin-topbar-btn {
        width: 36px;
        height: 36px;
    }
}
/* =========================================================
   FRESHCARE ADMIN DASHBOARD
   HTML CLASS COMPATIBILITY FIX
   APPEND ONLY - DO NOT REMOVE EXISTING CSS
========================================================= */

/* =========================
   ADMIN PANELS
========================= */

.fcadmin-panel {
    background: #ffffff;
    border: 1px solid #e5eaeb;
    border-radius: 17px;
    box-shadow: 0 7px 25px rgba(20, 40, 44, 0.04);
    overflow: hidden;
}

.fcadmin-panel-header {
    min-height: 67px;
    padding: 18px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    border-bottom: 1px solid #e5eaeb;
}

.fcadmin-panel-header h3 {
    margin: 0;

    color: #172326;
    font-size: 18px;
    font-weight: 700;
}

.fcadmin-panel-kicker {
    display: block;

    margin-bottom: 5px;

    color: #1596a8;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.3px;
}

/* =========================
   REVENUE PANEL
========================= */

.fcadmin-revenue-panel {
    min-width: 0;
}

.fcadmin-period-select {
    min-height: 36px;

    padding: 0 12px;

    color: #718083;
    background: #ffffff;

    border: 1px solid #e5eaeb;
    border-radius: 8px;

    font-size: 12px;

    outline: none;
}

/* =========================
   CHART
========================= */

.fcadmin-chart {
    position: relative;

    width: 100%;
    height: 290px;

    padding: 20px;
}

.fcadmin-chart-y {
    position: absolute;

    left: 20px;
    top: 20px;
    bottom: 40px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    color: #9aa7a9;
    font-size: 10px;
}

.fcadmin-chart-area {
    position: absolute;

    left: 58px;
    right: 20px;
    top: 20px;
    bottom: 40px;
}

.fcadmin-chart-grid-lines {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fcadmin-chart-grid-lines span {
    width: 100%;
    height: 1px;

    background: #edf0f1;
}

.fcadmin-chart-svg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;
}

.fcadmin-chart-fill {
    fill: rgba(21, 150, 168, 0.10);
}

.fcadmin-chart-line {
    fill: none;

    stroke: #1596a8;
    stroke-width: 3;
}

.fcadmin-chart-x {
    position: absolute;

    left: 0;
    right: 0;
    bottom: -28px;

    display: flex;
    justify-content: space-between;

    color: #9aa7a9;
    font-size: 10px;
}

/* =========================
   STATUS PANEL
========================= */

.fcadmin-status-panel {
    min-width: 0;
}

.fcadmin-donut-wrapper {
    padding: 25px 25px 15px;
}

.fcadmin-donut {
    width: 175px;
    height: 175px;

    margin: 5px auto 0;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: conic-gradient(
        #1596a8 0 48%,
        #24936a 48% 72%,
        #d99a25 72% 88%,
        #d45d5d 88% 100%
    );
}

.fcadmin-donut::after {
    content: "";

    position: absolute;

    width: 108px;
    height: 108px;

    background: #ffffff;

    border-radius: 50%;
}

.fcadmin-donut-center {
    position: relative;

    z-index: 2;

    text-align: center;
}

.fcadmin-donut-center strong {
    display: block;

    color: #172326;
    font-size: 25px;
}

.fcadmin-donut-center span {
    display: block;

    margin-top: 3px;

    color: #718083;
    font-size: 11px;
}

.fcadmin-status-list {
    padding: 0 25px 25px;

    display: flex;
    flex-direction: column;

    gap: 11px;
}

.fcadmin-status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #718083;

    font-size: 13px;
}

.fcadmin-status-item strong {
    color: #172326;
}

.fcadmin-status-dot {
    display: inline-block;

    width: 8px;
    height: 8px;

    margin-right: 8px;

    border-radius: 50%;
}

.fcadmin-status-processing {
    background: #1596a8;
}

.fcadmin-status-cleaning {
    background: #24936a;
}

.fcadmin-status-ready {
    background: #d99a25;
}

.fcadmin-status-delivered {
    background: #d45d5d;
}

/* =========================
   MORE BUTTON
========================= */

.fcadmin-more-btn {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #718083;
    background: transparent;

    border: 1px solid #e5eaeb;
    border-radius: 7px;

    cursor: pointer;
}

.fcadmin-more-btn:hover {
    color: #1596a8;
    border-color: #1596a8;
}

/* =========================
   ORDERS TABLE
========================= */

.fcadmin-orders-panel {
    margin-bottom: 22px;
}

.fcadmin-orders-table {
    width: 100%;

    min-width: 850px;

    border-collapse: collapse;
}

.fcadmin-orders-table th {
    padding: 14px 18px;

    color: #9aa7a9;
    background: #f8fafb;

    font-size: 11px;
    font-weight: 700;

    text-align: left;

    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.fcadmin-orders-table td {
    padding: 16px 18px;

    color: #718083;

    border-top: 1px solid #edf0f1;

    font-size: 13px;
}

.fcadmin-orders-table td strong {
    color: #172326;
}

.fcadmin-customer-cell {
    display: flex;
    align-items: center;

    gap: 9px;
}

.fcadmin-table-avatar {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #1596a8;
    background: #e8f7f9;

    border-radius: 50%;

    font-size: 11px;
    font-weight: 700;
}

.fcadmin-customer-cell > div {
    min-width: 130px;
}

.fcadmin-customer-cell strong {
    display: block;

    margin-bottom: 3px;
}

.fcadmin-customer-cell span:not(.fcadmin-table-avatar) {
    display: block;

    color: #9aa7a9;

    font-size: 11px;
}

.fcadmin-status-badge {
    display: inline-flex;
    align-items: center;

    padding: 5px 10px;

    border-radius: 20px;

    font-size: 11px;
    font-weight: 700;
}

.fcadmin-badge-cleaning {
    color: #1596a8;
    background: #e8f7f9;
}

.fcadmin-badge-ready {
    color: #24936a;
    background: #e8f7f1;
}

.fcadmin-badge-processing {
    color: #d99a25;
    background: #fff6df;
}

.fcadmin-badge-delivered {
    color: #24936a;
    background: #e8f7f1;
}

.fcadmin-table-action {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #718083;
    background: #ffffff;

    border: 1px solid #e5eaeb;
    border-radius: 7px;

    cursor: pointer;
}

.fcadmin-table-action:hover {
    color: #1596a8;
    border-color: #1596a8;
}

/* =========================
   VIEW ALL
========================= */

.fcadmin-view-all {
    color: #1596a8;

    font-size: 12px;
    font-weight: 700;
}

.fcadmin-view-all:hover {
    color: #0d7180;
}

/* =========================
   DARK MODE
========================= */

.fcadmin-body.fcadmin-dark .fcadmin-panel {
    background: #172326;
    border-color: #2a3b3e;
}

.fcadmin-body.fcadmin-dark .fcadmin-panel-header {
    border-color: #2a3b3e;
}

.fcadmin-body.fcadmin-dark .fcadmin-panel-header h3 {
    color: #f3f8f8;
}

.fcadmin-body.fcadmin-dark .fcadmin-period-select {
    color: #c5d3d5;
    background: #172326;
    border-color: #2a3b3e;
}

.fcadmin-body.fcadmin-dark .fcadmin-chart-grid-lines span {
    background: #2a3b3e;
}

.fcadmin-body.fcadmin-dark .fcadmin-donut::after {
    background: #172326;
}

.fcadmin-body.fcadmin-dark .fcadmin-donut-center strong {
    color: #f3f8f8;
}

.fcadmin-body.fcadmin-dark .fcadmin-status-item {
    color: #9fb1b3;
}

.fcadmin-body.fcadmin-dark .fcadmin-status-item strong {
    color: #f3f8f8;
}

.fcadmin-body.fcadmin-dark .fcadmin-orders-table th {
    background: #142022;
    color: #819395;
}

.fcadmin-body.fcadmin-dark .fcadmin-orders-table td {
    color: #9fb1b3;
    border-color: #2a3b3e;
}

.fcadmin-body.fcadmin-dark .fcadmin-orders-table td strong {
    color: #f3f8f8;
}

.fcadmin-body.fcadmin-dark .fcadmin-table-action {
    color: #9fb1b3;
    background: #172326;
    border-color: #2a3b3e;
}

.fcadmin-body.fcadmin-dark .fcadmin-table-avatar {
    background: #19343a;
    color: #58c7d4;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 650px) {

    .fcadmin-panel-header {
        padding: 16px;
    }

    .fcadmin-chart {
        height: 240px;
        padding: 12px;
    }

    .fcadmin-chart-y {
        left: 12px;
    }

    .fcadmin-chart-area {
        left: 45px;
        right: 12px;
    }

    .fcadmin-donut-wrapper {
        padding: 20px 20px 15px;
    }

    .fcadmin-status-list {
        padding: 0 20px 20px;
    }

    .fcadmin-orders-table th,
    .fcadmin-orders-table td {
        padding: 13px 14px;
    }
}
/* =========================================================
   FRESHCARE ADMIN - HTML CLASS FIX
   APPEND ONLY
========================================================= */

/* TOP USER */

.fcadmin-top-user {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.fcadmin-top-avatar {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e8f7f9;
    color: #1596a8;

    border-radius: 50%;

    font-size: 11px;
    font-weight: 700;
}

.fcadmin-top-user-text strong {
    display: block;
    color: #172326;
    font-size: 13px;
}

.fcadmin-top-user-text span {
    display: block;
    margin-top: 2px;
    color: #718083;
    font-size: 11px;
}

.fcadmin-top-user > i {
    color: #718083;
    font-size: 11px;
}


/* PROFILE MINI */

.fcadmin-profile-mini {
    display: flex;
    align-items: center;
    gap: 11px;

    padding: 14px;

    background: #f5f8f9;
    border-radius: 13px;

    margin-bottom: 24px;
}

.fcadmin-profile-info strong {
    display: block;
    color: #172326;
    font-size: 14px;
}

.fcadmin-profile-info span {
    display: block;
    margin-top: 2px;
    color: #718083;
    font-size: 12px;
}

.fcadmin-profile-info span i {
    color: #24936a;
    font-size: 7px;
}


/* NAVIGATION */

.fcadmin-navigation {
    flex: 1;
    overflow-y: auto;
}

.fcadmin-navigation .fcadmin-nav-title {
    padding: 0 12px;
    margin: 0 0 9px;

    color: #9aa7a9;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.fcadmin-navigation .fcadmin-nav-link {
    min-height: 45px;

    padding: 0 13px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: #718083;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.25s ease;
}

.fcadmin-navigation .fcadmin-nav-link:hover {
    color: #1596a8;
    background: #e8f7f9;
}

.fcadmin-navigation .fcadmin-nav-link.fcadmin-active {
    color: #ffffff;
    background: #1596a8;

    box-shadow: 0 7px 18px rgba(21,150,168,0.18);
}

.fcadmin-nav-icon {
    width: 18px;
    text-align: center;
}

.fcadmin-nav-count {
    margin-left: auto;

    min-width: 20px;

    padding: 2px 6px;

    text-align: center;

    color: #1596a8;
    background: #e8f7f9;

    border-radius: 20px;

    font-size: 10px;
}

.fcadmin-nav-link.fcadmin-active .fcadmin-nav-count {
    color: #1596a8;
    background: #ffffff;
}


/* STAT GROWTH */

.fcadmin-stat-growth {
    color: #24936a;
    font-size: 12px;
    font-weight: 700;
}

.fcadmin-stat-pending {
    color: #d99a25;
    font-size: 12px;
    font-weight: 700;
}

.fcadmin-stat-period {
    display: block;

    margin-top: 5px;

    color: #718083;
    font-size: 14px;
}


/* ANALYTICS GRID */

.fcadmin-analytics-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(300px, 0.9fr);

    gap: 22px;

    margin-bottom: 22px;
}


/* CHART */

.fcadmin-chart-area {
    position: relative;
}

.fcadmin-chart-svg {
    display: block;

    width: 100%;
    height: 100%;
}

.fcadmin-chart-fill {
    fill: rgba(21,150,168,0.10);
}

.fcadmin-chart-line {
    fill: none;

    stroke: #1596a8;
    stroke-width: 3;
}


/* DARK MODE */

.fcadmin-body.fcadmin-dark .fcadmin-profile-mini {
    background: #142022;
}

.fcadmin-body.fcadmin-dark .fcadmin-profile-info strong {
    color: #f3f8f8;
}

.fcadmin-body.fcadmin-dark .fcadmin-profile-info span {
    color: #9fb1b3;
}

.fcadmin-body.fcadmin-dark .fcadmin-top-user-text strong {
    color: #f3f8f8;
}

.fcadmin-body.fcadmin-dark .fcadmin-top-user-text span {
    color: #9fb1b3;
}

.fcadmin-body.fcadmin-dark .fcadmin-stat-period {
    color: #9fb1b3;
}

.fcadmin-body.fcadmin-dark .fcadmin-nav-count {
    background: #19343a;
    color: #58c7d4;
}


/* RESPONSIVE */

@media (max-width: 1200px) {
    .fcadmin-analytics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .fcadmin-navigation {
        overflow-y: auto;
    }

    .fcadmin-top-user-text {
        display: none;
    }
}

@media (max-width: 650px) {
    .fcadmin-analytics-grid {
        grid-template-columns: 1fr;
    }

    .fcadmin-top-user {
        gap: 6px;
    }

    .fcadmin-top-avatar {
        width: 35px;
        height: 35px;
    }
}
/* =========================================================
   ADMIN REVENUE GRAPH - FINAL FIX
========================================================= */

.fcadmin-chart {
    position: relative;
    width: 100%;
    height: 290px;
    padding: 0;
    overflow: hidden;
}

.fcadmin-chart-area {
    position: absolute;

    left: 58px;
    right: 20px;
    top: 20px;
    bottom: 40px;

    width: auto;
    height: auto;

    fill: none;
}

.fcadmin-chart-area .fcadmin-chart-svg {
    display: block;

    width: 100%;
    height: 100%;

    overflow: visible;
}

.fcadmin-chart-area .fcadmin-chart-fill {
    fill: rgba(21, 150, 168, 0.12);
    stroke: none;
}

.fcadmin-chart-area .fcadmin-chart-line {
    fill: none;

    stroke: #1596a8;
    stroke-width: 3;

    vector-effect: non-scaling-stroke;
}

.fcadmin-chart-y {
    position: absolute;

    left: 20px;
    top: 20px;
    bottom: 40px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    z-index: 2;

    color: #9aa7a9;
    font-size: 10px;
}

.fcadmin-chart-grid-lines {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    z-index: 0;
}

.fcadmin-chart-grid-lines span {
    display: block;

    width: 100%;
    height: 1px;

    background: #edf0f1;
}

.fcadmin-chart-x {
    position: absolute;

    left: 58px;
    right: 20px;
    bottom: 10px;

    display: flex;
    justify-content: space-between;

    z-index: 3;

    color: #9aa7a9;
    font-size: 10px;
}


/* DARK MODE */

.fcadmin-body.fcadmin-dark .fcadmin-chart-grid-lines span {
    background: #2a3b3e;
}

.fcadmin-body.fcadmin-dark .fcadmin-chart-y,
.fcadmin-body.fcadmin-dark .fcadmin-chart-x {
    color: #819395;
}

.fcadmin-body.fcadmin-dark .fcadmin-chart-fill {
    fill: rgba(56, 184, 200, 0.12);
}


/* MOBILE */

@media (max-width: 650px) {

    .fcadmin-chart {
        height: 240px;
    }

    .fcadmin-chart-area {
        left: 45px;
        right: 12px;
        top: 15px;
        bottom: 35px;
    }

    .fcadmin-chart-y {
        left: 10px;
        top: 15px;
        bottom: 35px;
    }

    .fcadmin-chart-x {
        left: 45px;
        right: 12px;
        bottom: 8px;
    }
}
/* =========================================================
   SERVICES HERO - CENTER CONTENT
========================================================= */

.fcx-services-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fcx-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fcx-hero-copy {
    width: 100%;
    max-width: 900px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fcx-hero-copy h1 {
    margin-left: auto;
    margin-right: auto;
}

.fcx-hero-copy p {
    margin-left: auto;
    margin-right: auto;
}

.fcx-hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fcx-hero-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
/* =========================================================
   PRICING HERO - CENTER CONTENT
========================================================= */

.pricing-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pricing-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-hero-content {
    width: 100%;
    max-width: 900px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.pricing-hero-content h1 {
    margin-left: auto;
    margin-right: auto;
}

.pricing-hero-content p {
    margin-left: auto;
    margin-right: auto;
}

.pricing-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fcadmin-logout-btn {
        background-color: red;
        border: none;
        color: white;
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 5px;
        padding-right: 5px;
        border-radius: 5px;
}
/* =========================================================
   ADMIN DASHBOARD - INNER PANEL CONTENT SPACING
========================================================= */

.fcadmin-pickup-list {
    padding: 14px 22px 18px;
}

.fcadmin-pickup-item {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.fcadmin-ranking-list {
    padding: 14px 22px 18px;
}

.fcadmin-ranking-item {
    padding: 10px 0;
}
/* =========================================================
   TOP CUSTOMERS - INNER PANEL CONTENT SPACING
========================================================= */

.fcadmin-customer-ranking {
    padding: 14px 22px 18px;
}

.fcadmin-ranking-item {
    padding: 10px 0;
}
/* =========================================================
   COMMON 1024px RESPONSIVE
========================================================= */

@media (max-width: 1024px) {

    /* ---------- COMMON CONTAINER ---------- */
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }

    /* ---------- COMMON SECTION ---------- */
    section {
        width: 100%;
    }

    /* ---------- COMMON GRIDS ---------- */
    .grid,
    .row,
    [class*="grid"] {
        max-width: 100%;
    }

    /* ---------- COMMON IMAGES ---------- */
    img {
        max-width: 100%;
        height: auto;
    }

    /* ---------- COMMON HEADINGS ---------- */
    h1 {
        font-size: clamp(38px, 5vw, 58px);
    }

    h2 {
        font-size: clamp(30px, 4vw, 44px);
    }

    h3 {
        font-size: clamp(22px, 3vw, 30px);
    }

    /* ---------- COMMON BUTTONS ---------- */
    .btn {
        max-width: 100%;
    }

    /* ---------- COMMON FLEX CONTENT ---------- */
    .hero-banner-content,
    .fcx-hero-copy,
    .pricing-hero-content {
        max-width: 850px;
        width: 100%;
    }

    /* ---------- COMMON CARDS ---------- */
    .card,
    [class*="card"] {
        max-width: 100%;
    }

}
@media (max-width: 1024px) {

    .container {
        width: calc(100% - 40px);
    }

    /* MOBILE / TABLET NAV */
    .menu-toggle {
        display: flex;
    }

    .nav-wrapper {
        position: absolute;
        top: 70px;
        left: 20px;
        right: 20px;

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 0;
        padding: 15px;

        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 12px;
        box-shadow: var(--shadow);
    }

    .navbar.menu-open .nav-wrapper {
        display: flex;
    }

    .nav-menu {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        min-height: 45px;
    }

    .nav-item.active > .nav-link::after {
        display: none;
    }

    /* DROPDOWN */
    .dropdown-menu {
        position: static;
        display: none;

        width: 100%;
        margin: 3px 0 5px;
        padding: 5px;

        border: none;
        box-shadow: none;

        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active:hover .dropdown-menu {
        display: block;
    }

    /* NAV ACTIONS */
    .nav-actions {
        width: 100%;
        padding-top: 15px;
        margin-top: 10px;

        border-top: 1px solid var(--border);

        justify-content: flex-start;
        flex-wrap: wrap;
    }
}
/* =========================================================
   NAVBAR MENU - OPEN PROPERLY AT 1024px
========================================================= */

@media (max-width: 1024px) {

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        position: relative;
        z-index: 10001;
    }

    .nav-wrapper {
        position: absolute !important;

        top: 100% !important;
        left: 20px !important;
        right: 20px !important;

        width: auto !important;

        display: none !important;

        flex-direction: column !important;
        align-items: stretch !important;

        padding: 15px !important;

        background: var(--white) !important;

        border: 1px solid var(--border) !important;
        border-radius: 12px !important;

        box-shadow: var(--shadow) !important;

        z-index: 10000 !important;

        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }

    /* MENU OPEN */
    .navbar.menu-open .nav-wrapper {
        display: flex !important;
    }

    /* MAIN NAVIGATION */
    .nav-menu {
        width: 100% !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: stretch !important;

        gap: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        list-style: none;
    }

    .nav-item {
        width: 100% !important;
    }

    .nav-link {
        width: 100% !important;

        min-height: 45px;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        padding: 11px 5px !important;
    }

    /* REMOVE DESKTOP ACTIVE LINE */
    .nav-item.active > .nav-link::after {
        display: none !important;
    }

    /* DROPDOWN */
    .dropdown-menu {
        position: static !important;

        width: 100% !important;

        display: none !important;

        margin: 3px 0 6px !important;
        padding: 5px !important;

        background: transparent !important;

        border: none !important;
        box-shadow: none !important;

        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    /* DROPDOWN OPEN */
    .nav-item.dropdown.active .dropdown-menu {
        display: block !important;
    }

    /* DON'T OPEN ON HOVER */
    .nav-item.dropdown:hover .dropdown-menu {
        display: none !important;
    }

    .nav-item.dropdown.active:hover .dropdown-menu {
        display: block !important;
    }

    /* NAV ACTIONS */
    .nav-actions {
        width: 100% !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        flex-wrap: wrap !important;
        gap: 8px !important;

        margin-top: 10px !important;
        padding-top: 15px !important;

        border-top: 1px solid var(--border) !important;
    }

}
/* =========================================================
   FRESHCARE SERVICE DETAILS PAGE
   ISOLATED STYLES
   APPEND ONLY - DO NOT REMOVE EXISTING CSS
========================================================= */


/* =========================================================
   HERO
========================================================= */

.freshcare-service-details-page .fcsd-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.freshcare-service-details-page .fcsd-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.freshcare-service-details-page .fcsd-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(5, 25, 30, 0.88),
            rgba(5, 25, 30, 0.62),
            rgba(5, 25, 30, 0.20)
        );
}

.freshcare-service-details-page .fcsd-hero .container {
    position: relative;
    z-index: 2;
}

.freshcare-service-details-page .fcsd-hero-content {
    max-width: 720px;
    padding: 100px 0;
}

.freshcare-service-details-page .fcsd-hero-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: #a8edf3;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.freshcare-service-details-page .fcsd-hero-content h1 {
    margin-bottom: 22px;
    color: #ffffff;
    font-size: 64px;
    line-height: 1.05;
}

.freshcare-service-details-page .fcsd-hero-content h1 em {
    color: #8ee1e8;
    font-style: normal;
}

.freshcare-service-details-page .fcsd-hero-content > p {
    max-width: 650px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.88);
    font-size: 17px;
    line-height: 1.8;
}

.freshcare-service-details-page .fcsd-btn {
    min-height: 50px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.freshcare-service-details-page .fcsd-btn-primary {
    color: #ffffff;
    background: var(--primary);
}

.freshcare-service-details-page .fcsd-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


/* =========================================================
   SERVICE SECTION
========================================================= */

.freshcare-service-details-page .fcsd-services-section {
    padding: 100px 0;
    background: var(--background-soft);
}

.freshcare-service-details-page .fcsd-section-heading {
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.freshcare-service-details-page .fcsd-section-heading > span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.freshcare-service-details-page .fcsd-section-heading h2 {
    margin-bottom: 18px;
    font-size: 45px;
}

.freshcare-service-details-page .fcsd-section-heading h2 em {
    color: var(--primary);
    font-style: normal;
}

.freshcare-service-details-page .fcsd-section-heading p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   BIG SERVICE BOX
========================================================= */

.freshcare-service-details-page .fcsd-service-box {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
    margin-bottom: 55px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow-small);
    transition: all 0.35s ease;
    scroll-margin-top: 100px;
}

.freshcare-service-details-page .fcsd-service-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}


/* =========================================================
   REVERSE BOX
========================================================= */

.freshcare-service-details-page .fcsd-service-reverse {
    grid-template-columns: 1.05fr 0.95fr;
}

.freshcare-service-details-page .fcsd-service-reverse .fcsd-service-image {
    order: 2;
}

.freshcare-service-details-page .fcsd-service-reverse .fcsd-service-content {
    order: 1;
}


/* =========================================================
   SERVICE IMAGE
========================================================= */

.freshcare-service-details-page .fcsd-service-image {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.freshcare-service-details-page .fcsd-service-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.freshcare-service-details-page .fcsd-service-box:hover .fcsd-service-image img {
    transform: scale(1.04);
}

.freshcare-service-details-page .fcsd-service-number {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(21, 150, 168, 0.92);
    border-radius: 50%;
    font-size: 17px;
    font-weight: 700;
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.freshcare-service-details-page .fcsd-service-content {
    padding: 55px 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.freshcare-service-details-page .fcsd-service-label {
    display: inline-block;
    margin-bottom: 13px;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.freshcare-service-details-page .fcsd-service-content h2 {
    margin-bottom: 20px;
    color: var(--black);
    font-size: 40px;
}

.freshcare-service-details-page .fcsd-service-content > p {
    margin-bottom: 17px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.85;
    text-align: justify;
}


/* =========================================================
   SERVICE LIST
========================================================= */

.freshcare-service-details-page .fcsd-service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px 20px;
    margin: 12px 0 28px;
}

.freshcare-service-details-page .fcsd-service-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
}

.freshcare-service-details-page .fcsd-service-list i {
    color: var(--primary);
    font-size: 13px;
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.freshcare-service-details-page .fcsd-contact-btn {
    width: fit-content;
    min-height: 47px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: #ffffff;
    background: var(--primary);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.freshcare-service-details-page .fcsd-contact-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.freshcare-service-details-page .fcsd-contact-btn i {
    transition: transform 0.3s ease;
}

.freshcare-service-details-page .fcsd-contact-btn:hover i {
    transform: translateX(4px);
}


/* =========================================================
   OFFERS
========================================================= */

.freshcare-service-details-page .fcsd-offer-section {
    padding: 35px 0 85px;
    background: var(--background);
}

.freshcare-service-details-page .fcsd-offer-second {
    padding-top: 0;
    padding-bottom: 100px;
}

.freshcare-service-details-page .fcsd-offer-box {
    position: relative;
    min-height: 330px;
    padding: 60px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.freshcare-service-details-page .fcsd-offer-box::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -80px;
    top: -130px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
}

.freshcare-service-details-page .fcsd-offer-box::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -80px;
    bottom: -100px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
}

.freshcare-service-details-page .fcsd-offer-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.freshcare-service-details-page .fcsd-offer-content > span {
    display: inline-block;
    margin-bottom: 13px;
    color: #c8f5f8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.freshcare-service-details-page .fcsd-offer-content h2 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 40px;
    line-height: 1.15;
}

.freshcare-service-details-page .fcsd-offer-content h2 em {
    color: #a8edf3;
    font-style: normal;
}

.freshcare-service-details-page .fcsd-offer-content p {
    max-width: 650px;
    margin-bottom: 25px;
    color: rgba(255,255,255,0.88);
    line-height: 1.8;
}

.freshcare-service-details-page .fcsd-offer-btn {
    min-height: 46px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--primary-dark);
    background: #ffffff;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.freshcare-service-details-page .fcsd-offer-btn:hover {
    transform: translateY(-2px);
}

.freshcare-service-details-page .fcsd-offer-icon {
    position: relative;
    z-index: 2;
    width: 125px;
    height: 125px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    font-size: 48px;
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark-mode.freshcare-service-details-page
.fcsd-services-section {
    background: #101b1f;
}

body.dark-mode.freshcare-service-details-page
.fcsd-service-box {
    background: #16252a;
    border-color: #294047;
}

body.dark-mode.freshcare-service-details-page
.fcsd-service-content h2 {
    color: #ffffff;
}

body.dark-mode.freshcare-service-details-page
.fcsd-section-heading h2 {
    color: #ffffff;
}

body.dark-mode.freshcare-service-details-page
.fcsd-section-heading p,
body.dark-mode.freshcare-service-details-page
.fcsd-service-content > p {
    color: #aebbc0;
}

body.dark-mode.freshcare-service-details-page
.fcsd-service-list li {
    color: #d7e0e3;
}

body.dark-mode.freshcare-service-details-page
.fcsd-offer-section {
    background: #0d171a;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 992px) {

    .freshcare-service-details-page .fcsd-hero {
        min-height: 520px;
    }

    .freshcare-service-details-page .fcsd-hero-content {
        padding: 80px 0;
    }

    .freshcare-service-details-page .fcsd-hero-content h1 {
        font-size: 52px;
    }

    .freshcare-service-details-page .fcsd-section-heading h2 {
        font-size: 38px;
    }

    .freshcare-service-details-page .fcsd-service-box,
    .freshcare-service-details-page .fcsd-service-reverse {
        grid-template-columns: 1fr;
    }

    .freshcare-service-details-page .fcsd-service-reverse .fcsd-service-image {
        order: 1;
    }

    .freshcare-service-details-page .fcsd-service-reverse .fcsd-service-content {
        order: 2;
    }

    .freshcare-service-details-page .fcsd-service-image,
    .freshcare-service-details-page .fcsd-service-image img {
        min-height: 420px;
        height: 420px;
    }

    .freshcare-service-details-page .fcsd-service-content {
        padding: 45px;
    }

    .freshcare-service-details-page .fcsd-offer-box {
        padding: 50px;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 768px) {

    .freshcare-service-details-page .fcsd-hero {
        min-height: 500px;
    }

    .freshcare-service-details-page .fcsd-hero-content {
        padding: 70px 0;
    }

    .freshcare-service-details-page .fcsd-hero-content h1 {
        font-size: 42px;
    }

    .freshcare-service-details-page .fcsd-hero-content > p {
        font-size: 15px;
    }

    .freshcare-service-details-page .fcsd-services-section {
        padding: 70px 0;
    }

    .freshcare-service-details-page .fcsd-section-heading {
        margin-bottom: 45px;
    }

    .freshcare-service-details-page .fcsd-section-heading h2 {
        font-size: 32px;
    }

    .freshcare-service-details-page .fcsd-service-box {
        margin-bottom: 35px;
        border-radius: 15px;
    }

    .freshcare-service-details-page .fcsd-service-image,
    .freshcare-service-details-page .fcsd-service-image img {
        min-height: 300px;
        height: 300px;
    }

    .freshcare-service-details-page .fcsd-service-content {
        padding: 32px 25px;
    }

    .freshcare-service-details-page .fcsd-service-content h2 {
        font-size: 30px;
    }

    .freshcare-service-details-page .fcsd-service-content > p {
        font-size: 14px;
        text-align: left;
    }

    .freshcare-service-details-page .fcsd-service-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .freshcare-service-details-page .fcsd-offer-section {
        padding: 20px 0 55px;
    }

    .freshcare-service-details-page .fcsd-offer-second {
        padding-top: 0;
        padding-bottom: 65px;
    }

    .freshcare-service-details-page .fcsd-offer-box {
        min-height: auto;
        padding: 38px 28px;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        border-radius: 15px;
    }

    .freshcare-service-details-page .fcsd-offer-content h2 {
        font-size: 30px;
    }

    .freshcare-service-details-page .fcsd-offer-icon {
        width: 85px;
        height: 85px;
        font-size: 32px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .freshcare-service-details-page .fcsd-hero-content h1 {
        font-size: 35px;
    }

    .freshcare-service-details-page .fcsd-hero-content > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .freshcare-service-details-page .fcsd-section-heading h2 {
        font-size: 28px;
    }

    .freshcare-service-details-page .fcsd-service-image,
    .freshcare-service-details-page .fcsd-service-image img {
        min-height: 260px;
        height: 260px;
    }

    .freshcare-service-details-page .fcsd-service-content {
        padding: 28px 20px;
    }

    .freshcare-service-details-page .fcsd-service-content h2 {
        font-size: 27px;
    }

    .freshcare-service-details-page .fcsd-offer-box {
        padding: 32px 22px;
    }

    .freshcare-service-details-page .fcsd-offer-content h2 {
        font-size: 27px;
    }

}
/* =========================================================
   SERVICE DETAILS - IMAGE SIZE + BANNER CENTER
========================================================= */

/* ---------- SERVICE DETAIL IMAGES ---------- */

.freshcare-service-details-page .fcsd-service-image {
    width: 100%;
    max-width: 420px;
    height: 280px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 14px;
}

.freshcare-service-details-page .fcsd-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ---------- BANNER CONTENT CENTER ---------- */

.freshcare-service-details-page .fcsd-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.freshcare-service-details-page .fcsd-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 850px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}


/* Banner overlay */

.freshcare-service-details-page .fcsd-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 1;
}


/* ---------- TABLET ---------- */

@media (max-width: 991px) {

    .freshcare-service-details-page .fcsd-service-image {
        max-width: 380px;
        height: 250px;
    }

    .freshcare-service-details-page .fcsd-hero {
        min-height: 360px;
    }
}


/* ---------- MOBILE ---------- */

@media (max-width: 576px) {

    .freshcare-service-details-page .fcsd-service-image {
        max-width: 100%;
        height: 220px;
    }

    .freshcare-service-details-page .fcsd-hero {
        min-height: 300px;
    }

    .freshcare-service-details-page .fcsd-hero-content {
        padding: 20px;
    }
}
/* =========================================================
   FRESHCARE 404 PAGE
   ISOLATED 404 PAGE CSS
   APPEND ONLY - DO NOT REMOVE EXISTING CSS
========================================================= */

.freshcare-404-page .fc404-section {
    min-height: 70vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 100px 20px;

    background:
        radial-gradient(
            circle at top right,
            rgba(21, 150, 168, 0.10),
            transparent 35%
        ),
        var(--background);
}


.freshcare-404-page .fc404-content {
    width: 100%;
    max-width: 720px;

    margin: 0 auto;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* ---------- ICON ---------- */

.freshcare-404-page .fc404-icon {
    width: 90px;
    height: 90px;

    margin-bottom: 22px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-light);
    color: var(--primary);

    font-size: 38px;

    box-shadow: var(--shadow-small);
}


/* ---------- 404 NUMBER ---------- */

.freshcare-404-page .fc404-number {
    display: block;

    font-size: clamp(90px, 15vw, 170px);

    line-height: 0.9;

    font-weight: 800;

    letter-spacing: -6px;

    color: var(--primary);

    margin-bottom: 20px;
}


/* ---------- HEADING ---------- */

.freshcare-404-page .fc404-content h1 {
    margin: 0 0 18px;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 700;

    color: var(--black);
}


/* ---------- DESCRIPTION ---------- */

.freshcare-404-page .fc404-content p {
    max-width: 600px;

    margin: 0 auto;

    font-size: 17px;

    line-height: 1.8;

    color: var(--text-light);
}


/* ---------- BUTTONS ---------- */

.freshcare-404-page .fc404-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-top: 32px;

    flex-wrap: wrap;
}


.freshcare-404-page .fc404-actions .btn {
    min-height: 50px;

    padding: 13px 24px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;
}


/* ---------- OUTLINE BUTTON ---------- */

.freshcare-404-page .fc404-outline-btn {
    background: transparent;

    color: var(--primary);

    border: 1px solid var(--primary);

    transition: all 0.3s ease;
}


.freshcare-404-page .fc404-outline-btn:hover {
    background: var(--primary);

    color: var(--white);

    transform: translateY(-2px);
}


/* =========================================================
   DARK MODE
========================================================= */

body.dark-mode.freshcare-404-page .fc404-section {
    background:
        radial-gradient(
            circle at top right,
            rgba(21, 150, 168, 0.14),
            transparent 35%
        ),
        var(--background);
}


body.dark-mode.freshcare-404-page .fc404-content h1 {
    color: var(--white);
}


body.dark-mode.freshcare-404-page .fc404-content p {
    color: var(--text-light);
}


body.dark-mode.freshcare-404-page .fc404-icon {
    background: rgba(21, 150, 168, 0.15);

    color: var(--primary);
}


body.dark-mode.freshcare-404-page .fc404-outline-btn {
    color: var(--primary);

    border-color: var(--primary);
}


body.dark-mode.freshcare-404-page .fc404-outline-btn:hover {
    color: var(--white);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .freshcare-404-page .fc404-section {
        min-height: 65vh;

        padding: 80px 20px;
    }


    .freshcare-404-page .fc404-number {
        font-size: clamp(90px, 18vw, 150px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .freshcare-404-page .fc404-section {
        min-height: 65vh;

        padding: 70px 18px;
    }


    .freshcare-404-page .fc404-icon {
        width: 72px;
        height: 72px;

        font-size: 30px;

        margin-bottom: 18px;
    }


    .freshcare-404-page .fc404-number {
        font-size: 95px;

        letter-spacing: -4px;

        margin-bottom: 18px;
    }


    .freshcare-404-page .fc404-content h1 {
        font-size: 30px;
    }


    .freshcare-404-page .fc404-content p {
        font-size: 15px;

        line-height: 1.7;
    }


    .freshcare-404-page .fc404-actions {
        width: 100%;

        flex-direction: column;

        gap: 12px;
    }


    .freshcare-404-page .fc404-actions .btn {
        width: 100%;

        max-width: 280px;
    }

}
/* =========================================================
   ABOUT PAGE - REDUCE HERO BANNER HEIGHT
========================================================= */

.fresh-about-hero {
    position: relative !important;
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    overflow: hidden !important;
}

.fresh-about-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.fresh-about-hero-inner {
    height: 100% !important;
}


/* Tablet */
@media (max-width: 1024px) {
    .fresh-about-hero {
        height: 340px !important;
        min-height: 340px !important;
        max-height: 340px !important;
    }
}


/* Mobile */
@media (max-width: 768px) {
    .fresh-about-hero {
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
    }
}
/* =========================================================
   SERVICES BANNER HEIGHT
   ========================================================= */

.fcx-services-hero {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    overflow: hidden !important;
}

.fcx-hero-media,
.fcx-hero-media img {
    width: 100% !important;
    height: 100% !important;
}

.fcx-hero-media img {
    object-fit: cover !important;
}


/* TABLET */
@media (max-width: 1024px) {
    .fcx-services-hero {
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;
    }
}


/* MOBILE */
@media (max-width: 768px) {
    .fcx-services-hero {
        height: 320px !important;
        min-height: 320px !important;
        max-height: 320px !important;
    }
}
/* =========================================================
   PRICING BANNER HEIGHT
   ========================================================= */

.pricing-hero {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    overflow: hidden !important;
}


/* TABLET */
@media (max-width: 1024px) {
    .pricing-hero {
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;
    }
}


/* MOBILE */
@media (max-width: 768px) {
    .pricing-hero {
        height: 320px !important;
        min-height: 320px !important;
        max-height: 320px !important;
    }
}
/* =========================================================
   HOW IT WORKS BANNER HEIGHT
   ========================================================= */

.how-work-hero {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    overflow: hidden !important;
}


/* TABLET */
@media (max-width: 1024px) {
    .how-work-hero {
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;
    }
}


/* MOBILE */
@media (max-width: 768px) {
    .how-work-hero {
        height: 320px !important;
        min-height: 320px !important;
        max-height: 320px !important;
    }
}
/* =========================================================
   CONTACT PAGE BANNER HEIGHT
   ========================================================= */

.hero-banner {
    height: 500px !important;
    min-height: 500px !important;
    max-height: 500px !important;
    overflow: hidden !important;
}

/* TABLET */
@media (max-width: 1024px) {
    .hero-banner {
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-banner {
        height: 320px !important;
        min-height: 320px !important;
        max-height: 320px !important;
    }
}
/* =========================================================
   PRICING SEARCH & FILTER CENTER
========================================================= */

/* SEARCH BOX */
.pricing-search-box {
    max-width: 900px;
    margin: 0 auto 25px;
}

/* FILTER TABS */
.price-filter-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 40px;
}

/* FILTER BUTTONS */
.price-filter {
    min-width: 90px;
    text-align: center;
}
/* =========================================================
   CENTER ALIGN - OUR JOURNEY
========================================================= */

.fresh-section-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.fresh-section-heading p {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   CENTER ALIGN - THE FRESHCARE EXPERIENCE
========================================================= */

.fresh-experience-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
/* =========================================================
   COVERAGE HERO TEXT - CENTER ONLY
========================================================= */

.freshcare-coverage-hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.freshcare-coverage-container {
    height: 100%;
}

.freshcare-coverage-hero {
    position: relative;
}

.freshcare-coverage-hero .freshcare-coverage-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.freshcare-coverage-hero-content h1 {
    text-align: center;
}
/* =========================================================
   HOME PAGE HERO BANNER - BIG
========================================================= */

.hero-banner {
    height: 650px !important;
    min-height: 650px !important;
    max-height: 650px !important;
    overflow: hidden !important;
}

.hero-banner-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}


/* TABLET */
@media (max-width: 1024px) {
    .hero-banner {
        height: 550px !important;
        min-height: 550px !important;
        max-height: 550px !important;
    }
}


/* MOBILE */
@media (max-width: 768px) {
    .hero-banner {
        height: 450px !important;
        min-height: 450px !important;
        max-height: 450px !important;
    }
}
/* =========================================================
   HOME 2 - EXPLORE CARE OUTLINE BUTTON
========================================================= */

.home2-main-hero .btn-outline-light {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 13px 28px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.home2-main-hero .btn-outline-light:hover {
    background: #ffffff;
    color: #222222;
}
/* =========================================================
   UNIQUE PRICING FAQ
========================================================= */

.pricing-faq {
    position: relative;
    padding: 100px 0;
    background: #f7f9f8;
    overflow: hidden;
}

/* Subtle decorative circle */
.pricing-faq::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(29, 59, 50, 0.08);
    border-radius: 50%;
    top: -120px;
    left: -120px;
}

.pricing-faq::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(29, 59, 50, 0.07);
    border-radius: 50%;
    bottom: -100px;
    right: -80px;
}


/* FAQ Heading */
.pricing-faq .section-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 55px;
}

.pricing-faq .section-heading h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
}

.pricing-faq .section-heading h2 span {
    display: inline-block;
}


/* FAQ List */
.pricing-faq-list {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}


/* Individual FAQ */
.pricing-faq-list details {
    position: relative;
    background: #ffffff;
    border: 1px solid #e5e9e7;
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.35s ease;
}


/* Left Accent Line */
.pricing-faq-list details::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: #1d3b32;
    transition: height 0.35s ease;
}

.pricing-faq-list details[open]::before {
    height: 100%;
}


/* Question */
.pricing-faq-list summary {
    list-style: none;
    cursor: pointer;
    padding: 23px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2925;
    transition: all 0.3s ease;
}

.pricing-faq-list summary::-webkit-details-marker {
    display: none;
}


/* Plus Icon Box */
.pricing-faq-list summary > span {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f3;
    color: #1d3b32;
    transition: all 0.35s ease;
}

.pricing-faq-list summary > span i {
    font-size: 13px;
    transition: transform 0.35s ease;
}


/* Open State */
.pricing-faq-list details[open] {
    border-color: rgba(29, 59, 50, 0.22);
    box-shadow: 0 15px 35px rgba(29, 59, 50, 0.08);
    transform: translateY(-2px);
}

.pricing-faq-list details[open] summary {
    color: #1d3b32;
}

.pricing-faq-list details[open] summary > span {
    background: #1d3b32;
    color: #ffffff;
}

.pricing-faq-list details[open] summary > span i {
    transform: rotate(45deg);
}


/* Answer */
.pricing-faq-list details p {
    margin: 0;
    padding: 0 75px 25px 25px;
    color: #66716c;
    font-size: 15px;
    line-height: 1.8;
}


/* Hover */
.pricing-faq-list details:hover {
    border-color: rgba(29, 59, 50, 0.18);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .pricing-faq {
        padding: 75px 0;
    }

    .pricing-faq .section-heading {
        margin-bottom: 40px;
    }

    .pricing-faq .section-heading h2 {
        font-size: 32px;
    }

    .pricing-faq-list summary {
        padding: 19px 18px;
        font-size: 15px;
    }

    .pricing-faq-list summary > span {
        flex: 0 0 34px;
        width: 34px;
        height: 34px;
    }

    .pricing-faq-list details p {
        padding: 0 18px 22px;
        font-size: 14px;
    }
}
 
        /* Keep the website navbar full width above the admin area */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 9999;
        }

        .fcadmin-app {
            position: relative;
            min-height: calc(100vh - 82px);
        }

        .fcadmin-sidebar {
            top: 82px !important;
            height: calc(100vh - 82px) !important;
        }

        .fcadmin-main {
            min-height: calc(100vh - 82px);
        }

        @media (max-width: 900px) {
            .fcadmin-sidebar {
                top: 82px !important;
                height: calc(100vh - 82px) !important;
            }
        }
        /* Remember Me + Forgot Password */
.fresh-auth-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: nowrap;
}

.fresh-auth-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.fresh-auth-options label span {
    white-space: nowrap;
}

.fresh-auth-options a {
    white-space: nowrap;
}
    /* =========================================================
   LOGIN FORM CENTER ALIGN
========================================================= */

.fresh-auth-form .fresh-auth-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.fresh-auth-form .fresh-auth-heading {
    text-align: center;
}

.fresh-auth-form .fresh-auth-heading small,
.fresh-auth-form .fresh-auth-heading h1,
.fresh-auth-form .fresh-auth-heading p {
    text-align: center;
}

.fresh-auth-form .fresh-auth-heading p {
    margin-left: auto;
    margin-right: auto;
}
/* =========================================================
   LOGIN FIELD VALIDATION
========================================================= */

.fresh-field-error {
    display: none;
    color: #d93025;
    font-size: 12px;
    margin-top: 6px;
    line-height: 1.4;
}

.fresh-field-error.show {
    display: block;
}
/* =========================================================
   LOGIN LEFT CONTENT - CENTER
========================================================= */

.fresh-auth-visual {
    position: relative;
}

.fresh-auth-visual-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 600px;
    text-align: center;
}

.fresh-auth-visual-content span,
.fresh-auth-visual-content h2,
.fresh-auth-visual-content p {
    text-align: center;
}

.fresh-auth-visual-content h2 {
    margin-left: auto;
    margin-right: auto;
}

.fresh-auth-visual-content p {
    margin-left: auto;
    margin-right: auto;
}
/* =========================================================
   REGISTER LEFT CONTENT - CENTER
========================================================= */

.fresh-auth-visual {
    position: relative;
}

.fresh-auth-visual-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    max-width: 600px;
    text-align: center;
}

.fresh-auth-visual-content span,
.fresh-auth-visual-content h1,
.fresh-auth-visual-content p {
    text-align: center;
}

.fresh-auth-visual-content h1,
.fresh-auth-visual-content p {
    margin-left: auto;
    margin-right: auto;
}
/* =========================================================
   REGISTER LOGO + HEADING CENTER
========================================================= */

.fresh-auth-form-area > .fresh-auth-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.fresh-auth-form-area > .fresh-auth-heading {
    text-align: center;
}

.fresh-auth-form-area > .fresh-auth-heading span,
.fresh-auth-form-area > .fresh-auth-heading h2,
.fresh-auth-form-area > .fresh-auth-heading p {
    text-align: center;
}

.fresh-auth-form-area > .fresh-auth-heading p {
    margin-left: auto;
    margin-right: auto;
}
/* =========================================================
   REGISTER FIELD VALIDATION
========================================================= */

.fresh-field-error {
    display: none;
    color: #d93025;
    font-size: 12px;
    margin-top: 6px;
    line-height: 1.4;
}

.fresh-field-error.show {
    display: block;
}
/* =========================================================
   SIDEBAR TOP ALIGNMENT
========================================================= */

.fcu-dashboard-container {
    align-items: start !important;
}

.fcu-sidebar {
    transform: translateY(-45px) !important;
}
/* =========================================================
   ADMIN SIDEBAR TOP ALIGNMENT
========================================================= */

.fcadmin-sidebar {
    transform: translateY(-45px) !important;
}
