/* =========================================================
   GLOBAL RESET
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
    background: #f8f6f1;
    color: #2f2a22;
    font-size: 17px;
    line-height: 1.8;
    direction: rtl;
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
}

section {
    width: 100%;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;

    min-height: 78px;

    display: flex;
    align-items: center;

    padding: 0 6%;

    background: rgba(47, 42, 34, 0.97);

    color: #ffffff;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    flex-shrink: 0;

    color: #ffffff;

    font-size: 22px;
    font-weight: 700;

    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;

    gap: 28px;

    margin-right: auto;
    margin-left: 35px;
}

.nav a {
    position: relative;

    color: rgba(255, 255, 255, 0.88);

    font-size: 16px;
    font-weight: 500;

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}

.nav a:hover {
    color: #ffffff;
}

.nav a:not(.nav-whatsapp)::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: -6px;
    left: 0;

    height: 1px;

    background: #b49361;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.25s ease;
}

.nav a:not(.nav-whatsapp):hover::after {
    transform: scaleX(1);
}

.nav-whatsapp {
    color: #25d366 !important;
    font-weight: 700 !important;
}

.header-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 22px;

    border-radius: 4px;

    background: #25d366;
    color: #ffffff;

    font-size: 15px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.header-button:hover {
    background: #128c7e;
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 8px;

    border: 0;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 5px;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    background: #ffffff;

    border-radius: 2px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 780px;

    display: flex;
    align-items: center;

    padding: 150px 6% 100px;

    background-image:
        linear-gradient(
            90deg,
            rgba(20, 17, 13, 0.28),
            rgba(20, 17, 13, 0.68)
        ),
        url("images/hero.jpg");

    background-size: cover;
    background-position: center;

    color: #ffffff;
}

.hero-content {
    width: 100%;
    max-width: 760px;

    margin-right: auto;
    margin-left: auto;

    text-align: center;
}

.eyebrow {
    margin-bottom: 18px;

    color: #c6a875;

    font-size: 17px;
    font-weight: 700;

    letter-spacing: 0.3px;
}

.hero h1 {
    margin-bottom: 25px;

    color: #ffffff;

    font-size: clamp(46px, 6vw, 76px);
    font-weight: 700;

    line-height: 1.25;
}

.hero-description {
    max-width: 700px;

    margin: 0 auto 35px;

    color: rgba(255, 255, 255, 0.92);

    font-size: 19px;
    line-height: 2;
}

.hero-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 280px;
    min-height: 62px;

    padding: 12px 28px;

    border-radius: 4px;

    background: #25d366;
    color: #ffffff;

    font-size: 18px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.hero-whatsapp-button:hover {
    background: #128c7e;
    transform: translateY(-2px);
}


/* =========================================================
   FEATURES
========================================================= */

.features {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 1px;

    background: rgba(47, 42, 34, 0.08);
}

.feature {
    min-height: 250px;

    padding: 55px 35px;

    background: #ffffff;

    text-align: center;
}

.feature-number {
    margin-bottom: 18px;

    color: #b49361;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    direction: ltr;
}

.feature h3 {
    margin-bottom: 12px;

    color: #2f2a22;

    font-size: 23px;
    font-weight: 700;
}

.feature p {
    color: #6d665c;

    font-size: 16px;
    line-height: 1.9;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.trees-section,
.video-section,
.products-section,
.shipping-section,
.reviews-section,
.contact-section {
    padding: 115px 6%;
}

.section-heading {
    max-width: 850px;

    margin: 0 auto 55px;

    text-align: center;
}

.section-heading h2 {
    margin-bottom: 18px;

    color: #2f2a22;

    font-size: 44px;
    font-weight: 700;

    line-height: 1.35;
}

.section-heading p {
    color: #6d665c;

    font-size: 18px;
    line-height: 2;
}


/* =========================================================
   FACTORY VIDEO
========================================================= */

.trees-section {
    background: #f8f6f1;
}

.video-placeholder {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto 45px;

    overflow: hidden;

    background: #1e1b17;

    border-radius: 6px;

    box-shadow:
        0 20px 50px rgba(47, 42, 34, 0.12);
}

.video-placeholder video {
    display: block;

    width: 100%;
    height: auto;

    aspect-ratio: 16 / 9;

    object-fit: cover;

    background: #1e1b17;
}


/* =========================================================
   SELECTION IMAGE
========================================================= */

.video-section {
    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    align-items: center;

    gap: 70px;

    background: #ffffff;
}

.video-content {
    max-width: 600px;
}

.video-eyebrow {
    margin-bottom: 15px;

    color: #b49361;

    font-size: 16px;
    font-weight: 700;
}

.video-content h2 {
    margin-bottom: 20px;

    color: #2f2a22;

    font-size: 43px;
    font-weight: 700;

    line-height: 1.4;
}

.video-content p {
    color: #6d665c;

    font-size: 18px;
    line-height: 2;
}

.selection-image {
    width: 100%;

    overflow: hidden;

    border-radius: 6px;

    background: #eeeae3;

    box-shadow:
        0 20px 50px rgba(47, 42, 34, 0.10);

    cursor: pointer;
}

.selection-image img {
    width: 100%;
    height: auto;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.selection-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    background: #f8f6f1;
}

.product-grid {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

.product-card {
    overflow: hidden;

    background: #ffffff;

    border-radius: 6px;

    box-shadow:
        0 10px 35px rgba(47, 42, 34, 0.07);
}

.product-image {
    width: 100%;

    overflow: hidden;

    cursor: pointer;
}

.product-image img {
    width: 100%;
    height: auto;

    aspect-ratio: 1 / 1;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.product-image:hover img {
    transform: scale(1.035);
}

.section-cta {
    margin-top: 45px;

    text-align: center;
}

.secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 180px;
    min-height: 52px;

    padding: 10px 25px;

    border: 1px solid #2f2a22;
    border-radius: 4px;

    color: #2f2a22;

    font-size: 17px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}

.secondary-cta:hover {
    background: #2f2a22;
    color: #ffffff;
}


/* =========================================================
   SHIPPING
========================================================= */

.shipping-section {
    background: #ffffff;
}

.shipping-content {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 50px;

    align-items: stretch;
}

.shipping-info {
    display: flex;

    flex-direction: column;

    gap: 20px;
}

.shipping-item {
    padding: 35px;

    background: #f8f6f1;

    border: 1px solid rgba(47, 42, 34, 0.06);

    border-radius: 6px;
}

.shipping-number {
    margin-bottom: 14px;

    color: #b49361;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 2px;

    direction: ltr;
}

.shipping-item h3 {
    margin-bottom: 12px;

    color: #2f2a22;

    font-size: 24px;
}

.shipping-item p {
    color: #6d665c;

    font-size: 17px;
    line-height: 2;
}

.shipping-promotion {
    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: #f8f6f1;

    border-radius: 6px;

    box-shadow:
        0 12px 35px rgba(47, 42, 34, 0.07);
}

.shipping-promotion-image {
    width: 100%;

    overflow: hidden;

    cursor: pointer;
}

.shipping-promotion-image img {
    width: 100%;
    height: auto;

    aspect-ratio: 16 / 9;

    object-fit: cover;

    transition: transform 0.45s ease;
}

.shipping-promotion-image:hover img {
    transform: scale(1.025);
}

.shipping-promotion-text {
    padding: 35px;
}

.shipping-promotion-text h3 {
    margin-bottom: 15px;

    color: #2f2a22;

    font-size: 27px;
}

.shipping-promotion-text p {
    margin-bottom: 25px;

    color: #6d665c;

    font-size: 17px;
    line-height: 2;
}

.shipping-promotion-text strong {
    color: #2f2a22;
}

.shipping-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 56px;

    padding: 10px 25px;

    border-radius: 4px;

    background: #25d366;
    color: #ffffff;

    font-size: 17px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.shipping-button:hover {
    background: #128c7e;
    transform: translateY(-1px);
}


/* =========================================================
   CUSTOMER REVIEWS
========================================================= */

.reviews-section {
    background: #f8f6f1;
}

.reviews-container {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.review-card {
    background: #ffffff;

    padding: 30px;

    border-radius: 8px;

    border: 1px solid rgba(47, 42, 34, 0.07);

    box-shadow:
        0 8px 30px rgba(47, 42, 34, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.review-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 35px rgba(47, 42, 34, 0.09);
}

.review-card-top {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 22px;
}

.review-avatar {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2f2a22;
    color: #ffffff;

    border-radius: 50%;

    font-size: 18px;
    font-weight: 700;
}

.review-customer {
    flex: 1;

    min-width: 0;
}

.review-customer h3 {
    margin-bottom: 2px;

    color: #2f2a22;

    font-size: 18px;
    font-weight: 700;
}

.review-customer span {
    color: #8a8276;

    font-size: 14px;
}

.review-stars {
    color: #b49361;

    font-size: 17px;

    letter-spacing: 1px;

    direction: ltr;

    white-space: nowrap;
}

.review-message {
    padding-top: 18px;

    border-top: 1px solid rgba(47, 42, 34, 0.08);
}

.review-message p {
    color: #5f594f;

    font-size: 16px;

    line-height: 2;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: #2f2a22;

    color: #ffffff;
}

.contact-content {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.contact-content h2 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: 44px;
    font-weight: 700;

    line-height: 1.4;
}

.contact-content p {
    margin-bottom: 30px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 18px;
    line-height: 2;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 270px;
    min-height: 66px;

    padding: 12px 30px;

    border-radius: 4px;

    background: #25d366;
    color: #ffffff;

    font-size: 18px;
    font-weight: 700;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.whatsapp-button:hover {
    background: #128c7e;
    transform: translateY(-2px);
}


/* =========================================================
   LIGHTBOX
========================================================= */

.image-lightbox {
    position: fixed;

    inset: 0;

    z-index: 2000;

    display: none;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(20, 17, 13, 0.94);
}

.image-lightbox.active {
    display: flex;
}

.lightbox-image-wrap {
    position: relative;

    max-width: 90vw;
    max-height: 90vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-wrap img {
    display: block;

    max-width: 90vw;
    max-height: 88vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 4px;

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.35);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;

    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.18);

    transform: scale(1.05);
}

.lightbox-close {
    top: 25px;
    left: 25px;

    font-size: 30px;
    line-height: 1;
}

.lightbox-prev {
    right: 25px;
    top: 50%;

    transform: translateY(-50%);

    font-size: 34px;
}

.lightbox-prev:hover {
    transform: translateY(-50%) scale(1.05);
}

.lightbox-next {
    left: 25px;
    top: 50%;

    transform: translateY(-50%);

    font-size: 34px;
}

.lightbox-next:hover {
    transform: translateY(-50%) scale(1.05);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 55px 6% 35px;

    background: #211e19;

    color: rgba(255, 255, 255, 0.72);

    text-align: center;
}

.footer-logo {
    margin-bottom: 20px;

    color: #ffffff;

    font-size: 22px;
    font-weight: 700;
}

.footer-links {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 25px;

    margin-bottom: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;

    transition: color 0.2s ease;
}

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

.footer p {
    color: rgba(255, 255, 255, 0.5);

    font-size: 14px;
}


/* =========================================================
   POLICY PAGES
========================================================= */

.policy-page {
    min-height: 100vh;

    padding: 140px 6% 80px;

    background: #f8f6f1;
}

.policy-container {
    max-width: 900px;

    margin: 0 auto;

    padding: 45px;

    background: #ffffff;

    border-radius: 6px;

    box-shadow:
        0 10px 35px rgba(47, 42, 34, 0.06);
}

.policy-container h1 {
    margin-bottom: 25px;

    color: #2f2a22;

    font-size: 42px;
}

.policy-container h2 {
    margin-top: 35px;
    margin-bottom: 12px;

    color: #2f2a22;

    font-size: 25px;
}

.policy-container p {
    margin-bottom: 15px;

    color: #5f594f;

    font-size: 17px;

    line-height: 2;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .header {
        padding: 0 4%;
    }

    .nav {
        gap: 18px;

        margin-left: 20px;
    }

    .nav a {
        font-size: 15px;
    }

    .header-button {
        padding: 0 16px;

        font-size: 14px;
    }

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

    .video-section {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .video-content {
        max-width: 850px;

        margin: 0 auto;

        text-align: center;
    }

    .shipping-content {
        grid-template-columns: 1fr;
    }

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


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    body {
        font-size: 18px;
    }

    .header {
        min-height: 78px;

        padding: 0 5%;
    }

    .logo {
        font-size: 20px;
    }

    .nav a {
        font-size: 17px;
    }

    .eyebrow {
        font-size: 16px;
    }

    .hero {
        min-height: 720px;

        padding: 135px 6% 80px;

        background-position: center;
    }

    .hero-content {
        max-width: 680px;
    }

    .hero h1 {
        font-size: clamp(35px, 9vw, 45px);
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-whatsapp-button {
        width: 100%;

        max-width: 380px;

        font-size: 18px;
    }

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

    .feature {
        min-height: 220px;

        padding: 40px 25px;
    }

    .feature-number {
        font-size: 15px;
    }

    .feature h3 {
        font-size: 22px;
    }

    .feature p {
        font-size: 16px;
    }

    .trees-section,
    .video-section,
    .products-section,
    .shipping-section,
    .reviews-section,
    .contact-section {
        padding: 80px 6%;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2,
    .video-content h2 {
        font-size: 33px;
    }

    .section-heading p,
    .video-content p {
        font-size: 18px;
    }

    .video-section {
        gap: 35px;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;

        gap: 15px;
    }

    .secondary-cta {
        font-size: 18px;
    }

    .shipping-number {
        font-size: 15px;
    }

    .shipping-item h3 {
        font-size: 23px;
    }

    .shipping-item p {
        font-size: 18px;
    }

    .shipping-promotion-text h3 {
        font-size: 24px;
    }

    .shipping-promotion-text p {
        font-size: 18px;
    }

    .shipping-button {
        width: 100%;

        font-size: 18px;
    }

    .contact-content h2 {
        font-size: 33px;
    }

    .contact-content p {
        font-size: 18px;
    }

    .whatsapp-button {
        width: 100%;

        max-width: 380px;

        font-size: 19px;
    }

    .footer-links {
        gap: 15px 22px;
    }

    .footer-links a {
        font-size: 16px;
    }

    .footer p {
        font-size: 15px;
    }


    /* =====================================================
       CUSTOMER REVIEWS
    ===================================================== */

    .reviews-container {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .review-card {
        padding: 28px;
    }

    .review-card-top {
        display: flex;

        align-items: center;

        gap: 12px;

        margin-bottom: 22px;
    }

    .review-avatar {
        flex-shrink: 0;

        width: 48px;
        height: 48px;

        font-size: 18px;
    }

    .review-customer {
        min-width: 0;

        flex: 1;
    }

    .review-customer h3 {
        font-size: 20px;

        line-height: 1.5;

        white-space: nowrap;
    }

    .review-customer span {
        display: block;

        font-size: 15px;

        line-height: 1.7;

        white-space: nowrap;
    }

    .review-stars {
        flex-shrink: 0;

        font-size: 18px;

        letter-spacing: 0;
    }

    .review-message {
        padding-top: 18px;
    }

    .review-message p {
        font-size: 18px;

        line-height: 2;

        word-break: normal;

        overflow-wrap: break-word;
    }


    /* =====================================================
       LIGHTBOX MOBILE
    ===================================================== */

    .image-lightbox {
        padding: 15px;
    }

    .lightbox-image-wrap,
    .lightbox-image-wrap img {
        max-width: 94vw;
        max-height: 82vh;
    }

    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
    }

    .lightbox-close {
        top: 15px;
        left: 15px;

        font-size: 26px;
    }

    .lightbox-prev {
        right: 12px;
    }

    .lightbox-next {
        left: 12px;
    }
}


/* =========================================================
   MOBILE NAV
========================================================= */

@media (max-width: 768px) {

    .menu-toggle {
        display: flex;

        margin-right: auto;
    }

    .header-button {
        display: none;
    }

    .nav {
        position: absolute;

        top: 78px;
        right: 0;
        left: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        margin: 0;

        background: #2f2a22;

        border-top: 1px solid rgba(255, 255, 255, 0.08);

        box-shadow:
            0 15px 30px rgba(0, 0, 0, 0.12);
    }

    .nav.mobile-open {
        display: flex;
    }

    .nav a {
        width: 100%;

        padding: 15px 6%;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.06);

        text-align: center;
    }

    .nav a:not(.nav-whatsapp)::after {
        display: none;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .header {
        padding: 0 4%;
    }

    .logo {
        font-size: 18px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .eyebrow {
        font-size: 15px;
    }

    .hero {
        min-height: 680px;

        padding-top: 125px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-whatsapp-button {
        font-size: 17px;
    }

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

    .feature {
        min-height: auto;

        padding: 35px 25px;
    }

    .feature h3 {
        font-size: 20px;
    }

    .feature p {
        font-size: 15px;
    }

    .section-heading h2,
    .video-content h2 {
        font-size: 30px;
    }

    .section-heading p,
    .video-content p {
        font-size: 17px;
    }

    .product-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .secondary-cta {
        font-size: 17px;
    }

    .shipping-item {
        padding: 28px 24px;
    }

    .shipping-item h3 {
        font-size: 22px;
    }

    .shipping-item p {
        font-size: 17px;
    }

    .shipping-promotion-text {
        padding: 28px 24px;
    }

    .shipping-promotion-text h3 {
        font-size: 23px;
    }

    .shipping-promotion-text p {
        font-size: 17px;
    }

    .shipping-button {
        font-size: 17px;
    }

    .contact-content h2 {
        font-size: 30px;
    }

    .contact-content p {
        font-size: 17px;
    }

    .whatsapp-button {
        font-size: 18px;
    }

    .footer {
        padding: 45px 5% 30px;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-links {
        flex-direction: column;

        gap: 10px;
    }


    /* =====================================================
       CUSTOMER REVIEWS
    ===================================================== */

    .review-card {
        padding: 25px;
    }

    .review-card-top {
        gap: 10px;
    }

    .review-avatar {
        width: 46px;
        height: 46px;

        font-size: 17px;
    }

    .review-customer h3 {
        font-size: 19px;
    }

    .review-customer span {
        font-size: 14px;
    }

    .review-stars {
        font-size: 16px;
    }

    .review-message p {
        font-size: 17px;

        line-height: 2;
    }

    /* 防止小屏幕评价头部过度挤压 */
    .review-card-top {
        align-items: flex-start;
    }

    .review-stars {
        margin-top: 2px;
    }
}


/* =========================================================
   VERY SMALL SCREENS
========================================================= */

@media (max-width: 360px) {

    .logo {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 29px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-whatsapp-button {
        min-width: 0;

        font-size: 16px;
    }

    .section-heading h2,
    .video-content h2 {
        font-size: 27px;
    }

    .review-card {
        padding: 20px;
    }

    .review-card-top {
        gap: 8px;
    }

    .review-avatar {
        width: 43px;
        height: 43px;

        font-size: 16px;
    }

    .review-customer h3 {
        font-size: 17px;
    }

    .review-customer span {
        font-size: 13px;
    }

    .review-stars {
        font-size: 14px;
    }

    .review-message p {
        font-size: 16px;
    }
}/* =========================================================
   MOBILE FEATURES - COMPACT
========================================================= */

@media (max-width: 768px) {

    .feature {
        min-height: 0;
        padding: 26px 20px 28px;
    }

    .feature-number {
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 1.4;
    }

    .feature h3 {
        margin-bottom: 7px;
        font-size: 21px;
        line-height: 1.5;
    }

    .feature p {
        font-size: 15px;
        line-height: 1.7;
    }
}


/* =========================================================
   SMALL MOBILE FEATURES
========================================================= */

@media (max-width: 480px) {

    .feature {
        min-height: 0;
        padding: 23px 20px 25px;
    }

    .feature-number {
        margin-bottom: 7px;
        font-size: 14px;
    }

    .feature h3 {
        margin-bottom: 6px;
        font-size: 20px;
        line-height: 1.45;
    }

    .feature p {
        font-size: 15px;
        line-height: 1.65;
    }
}