/* =========================
   Components
========================== */
 
/* =========================
   Hero Section
========================== */

.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;

    background: var(--color-dark);
}


/* =========================
   Hero Background
========================== */

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* =========================
   Hero Overlay
========================== */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;

    background:
        linear-gradient(
            90deg,
            rgba(20, 31, 17, 0.92) 0%,
            rgba(20, 31, 17, 0.78) 38%,
            rgba(20, 31, 17, 0.38) 68%,
            rgba(20, 31, 17, 0.12) 100%
        );
}


/* =========================
   Hero Container
========================== */

.hero-container {
    display: flex;
    align-items: center;
    min-height: 680px;
}


/* =========================
   Hero Content
========================== */

.hero-content {
    width: 100%;
    max-width: 650px;
    padding-block: 80px;
    color: var(--color-white);
}


/* =========================
   Hero Badge
========================== */

.hero-badge {
    display: inline-flex;
    align-items: center;

    margin-bottom: 20px;
    padding: 7px 14px;

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-pill);

    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(8px);

    color: #fff;
    font-size: 14px;
    font-weight: 600;
}


/* =========================
   Hero Title
========================== */

.hero-title {
    max-width: 650px;
    margin-bottom: 22px;

    color: var(--color-white);
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -1px;
}

.hero-title span {
    display: block;
    margin-top: 5px;

    color: var(--color-accent);
}


/* =========================
   Hero Text
========================== */

.hero-text {
    max-width: 590px;
    margin-bottom: 26px;

    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================
   Hero Offer
========================== */

.hero-offer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;

    margin-bottom: 28px;
}

.offer-label {
    padding: 5px 11px;

    border-radius: var(--radius-sm);

    background: var(--color-accent);
    color: var(--color-dark);

    font-size: 13px;
    font-weight: 700;
}

.hero-offer strong {
    color: var(--color-white);
    font-size: 25px;
    font-weight: 800;
}

.offer-unit {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}


/* =========================
   Hero Actions
========================== */

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 25px;
}

.hero-actions .btn-primary {
    padding-inline: 25px;
}

.hero-actions .btn-primary span {
    font-size: 20px;
    line-height: 1;
    transition: transform var(--transition);
}

.hero-actions .btn-primary:hover span {
    transform: translateX(3px);
}


/* =========================
   Hero Trust
========================== */

.hero-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;

    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}


/* =========================
   Hero Responsive
========================== */

@media (max-width: 900px) {

    .hero,
    .hero-container {
        min-height: 620px;
    }

    .hero-content {
        max-width: 600px;
        padding-block: 70px;
    }

    .hero-title {
        font-size: clamp(38px, 7vw, 54px);
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(20, 31, 17, 0.90),
                rgba(20, 31, 17, 0.55)
            );
    }
}


@media (max-width: 600px) {

    .hero,
    .hero-container {
        min-height: 680px;
    }

    .hero-bg-image {
        object-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(20, 31, 17, 0.60) 0%,
                rgba(20, 31, 17, 0.82) 55%,
                rgba(20, 31, 17, 0.94) 100%
            );
    }

    .hero-content {
        max-width: 100%;
        padding-block: 55px;
    }

    .hero-badge {
        margin-bottom: 16px;
        font-size: 13px;
    }

    .hero-title {
        margin-bottom: 18px;

        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .hero-text {
        margin-bottom: 22px;
        font-size: 15px;
        line-height: 1.75;
    }

    .hero-offer {
        margin-bottom: 24px;
    }

    .hero-offer strong {
        font-size: 22px;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1;
        min-width: 150px;
    }

    .hero-trust {
        gap: 8px 14px;
        font-size: 12px;
    }
}


@media (max-width: 380px) {

    .hero,
    .hero-container {
        min-height: 700px;
    }

    .hero-content {
        padding-block: 45px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
    }
} 
 
 
/* =========================
   Trust / Quick Highlights
========================== */

.trust-section {
    position: relative;
    padding: 28px 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 13px;

    min-height: 65px;
    padding: 8px 24px;

    border-right: 1px solid var(--color-border);
}

.trust-item:first-child {
    padding-left: 0;
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--color-primary-light);
    color: var(--color-primary);

    font-size: 19px;
}

.trust-content strong {
    display: block;

    margin-bottom: 2px;

    color: var(--color-dark);
    font-size: 14px;
    font-weight: 700;
}

.trust-content span {
    display: block;

    color: var(--color-muted);
    font-size: 12px;
}


/* =========================
   Trust Responsive
========================== */

@media (max-width: 900px) {

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .trust-item {
        padding: 14px 20px;
        border-bottom: 1px solid var(--color-border);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        border-bottom: 0;
    }

    .trust-item:first-child {
        padding-left: 20px;
    }
}


@media (max-width: 600px) {

    .trust-section {
        padding: 10px 0;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item {
        min-height: 72px;
        gap: 10px;
        padding: 12px 10px;
    }

    .trust-item:first-child {
        padding-left: 10px;
    }

    .trust-icon {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .trust-content strong {
        font-size: 12px;
    }

    .trust-content span {
        font-size: 10px;
        line-height: 1.4;
    }
} 
 
 
 
/* =========================
   Product / Offer Section
========================== */

.product-section {
    padding: 100px 0;
    background: var(--color-cream);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}


/* =========================
   Product Visual
========================== */

.product-visual {
    position: relative;
}

.product-image-wrap {
    position: relative;
    overflow: hidden;

    aspect-ratio: 1 / 1;

    border-radius: var(--radius-lg);

    background: var(--color-primary-light);
    box-shadow: var(--shadow-lg);
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-tag {
    position: absolute;
    right: 24px;
    bottom: 24px;

    padding: 9px 15px;

    border-radius: var(--radius-pill);

    background: var(--color-white);
    color: var(--color-primary-dark);

    font-size: 13px;
    font-weight: 700;

    box-shadow: var(--shadow-md);
}


/* =========================
   Product Info
========================== */

.product-info {
    max-width: 560px;
}

.section-label {
    display: inline-block;

    margin-bottom: 13px;

    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
}

.product-title {
    margin-bottom: 20px;

    color: var(--color-dark);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.25;
}

.product-title span {
    display: block;
    color: var(--color-primary);
}

.product-description {
    margin-bottom: 27px;

    color: var(--color-text);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================
   Product Features
========================== */

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;

    margin-bottom: 30px;
}

.product-feature {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--color-dark);
    font-size: 14px;
    font-weight: 600;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 22px;
    height: 22px;

    border-radius: 50%;

    background: var(--color-primary);
    color: var(--color-white);

    font-size: 12px;
    font-weight: 700;
}


/* =========================
   Product Price
========================== */

.product-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 9px;

    margin-bottom: 25px;
}

.price-old {
    color: var(--color-muted);
    font-size: 16px;
    text-decoration: line-through;
}

.product-price strong {
    color: var(--color-primary-dark);
    font-size: 34px;
    font-weight: 800;
}

.price-unit {
    color: var(--color-muted);
    font-size: 14px;
}


/* =========================
   Product Actions
========================== */

.product-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.product-actions .btn {
    padding-inline: 25px;
}

.product-actions small {
    color: var(--color-muted);
    font-size: 12px;
}


/* =========================
   Product Responsive
========================== */

@media (max-width: 900px) {

    .product-section {
        padding: 75px 0;
    }

    .product-grid {
        gap: 50px;
    }

    .product-title {
        font-size: 36px;
    }
}


@media (max-width: 700px) {

    .product-section {
        padding: 60px 0;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-visual {
        max-width: 520px;
        width: 100%;
        margin-inline: auto;
    }

    .product-info {
        max-width: 100%;
    }

    .product-title {
        font-size: 32px;
    }

    .product-description {
        font-size: 15px;
    }
}


@media (max-width: 480px) {

    .product-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .product-price strong {
        font-size: 30px;
    }

    .product-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }

    .product-actions small {
        padding-left: 3px;
    }

    .product-tag {
        right: 15px;
        bottom: 15px;
        font-size: 12px;
    }
} 

 
/* =========================
   Why Choose Shammam
========================== */

.why-section {
    padding: 100px 0;
    background: var(--color-white);
}


/* =========================
   Section Heading
========================== */

.section-heading {
    max-width: 680px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading .section-label {
    margin-bottom: 12px;
}

.section-heading h2 {
    margin-bottom: 17px;

    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.3;
}

.section-heading h2 span {
    color: var(--color-primary);
}

.section-heading p {
    max-width: 600px;
    margin-inline: auto;

    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   Why Grid
========================== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}


/* =========================
   Why Card
========================== */

.why-card {
    padding: 30px 24px;

    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);

    background: var(--color-light);

    text-align: center;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);

    border-color: rgba(79, 125, 50, 0.25);

    box-shadow: var(--shadow-md);
}


/* =========================
   Why Icon
========================== */

.why-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: var(--color-primary-light);

    font-size: 25px;
}


/* =========================
   Why Content
========================== */

.why-card h3 {
    margin-bottom: 10px;

    color: var(--color-dark);
    font-size: 17px;
}

.why-card p {
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.75;
}


/* =========================
   Why Responsive
========================== */

@media (max-width: 900px) {

    .why-section {
        padding: 75px 0;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}


@media (max-width: 600px) {

    .why-section {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .why-card {
        padding: 24px 15px;
    }

    .why-icon {
        width: 50px;
        height: 50px;

        margin-bottom: 15px;

        font-size: 22px;
    }

    .why-card h3 {
        font-size: 14px;
    }

    .why-card p {
        font-size: 11px;
        line-height: 1.65;
    }
} 

 
/* =========================
   Growing Guide
========================== */

.growing-section {
    padding: 100px 0;
    background: var(--color-primary-light);
}


/* =========================
   Growing Steps
========================== */

.growing-steps {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


/* Connecting Line */

.growing-steps::before {
    content: "";

    position: absolute;
    top: 30px;
    left: 12%;
    right: 12%;

    height: 1px;

    background: rgba(79, 125, 50, 0.25);

    z-index: 0;
}


/* =========================
   Step
========================== */

.growing-step {
    position: relative;
    z-index: 1;

    padding: 20px 20px 25px;

    text-align: center;
}


/* =========================
   Step Number
========================== */

.step-number {
    position: absolute;
    top: 0;
    right: 12px;

    color: rgba(79, 125, 50, 0.14);

    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}


/* =========================
   Step Icon
========================== */

.step-icon {
    position: relative;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border: 5px solid var(--color-primary-light);
    border-radius: 50%;

    background: var(--color-white);

    box-shadow: var(--shadow-sm);

    font-size: 25px;
}


/* =========================
   Step Content
========================== */

.growing-step h3 {
    margin-bottom: 9px;

    color: var(--color-dark);
    font-size: 17px;
}

.growing-step p {
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.75;
}


/* =========================
   Growing Responsive
========================== */

@media (max-width: 900px) {

    .growing-section {
        padding: 75px 0;
    }

    .growing-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .growing-steps::before {
        display: none;
    }

    .growing-step {
        padding: 20px 15px;
    }
}


@media (max-width: 600px) {

    .growing-section {
        padding: 60px 0;
    }

    .growing-steps {
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }

    .growing-step {
        padding: 18px 10px 22px;
    }

    .step-number {
        right: 5px;
        font-size: 32px;
    }

    .step-icon {
        width: 52px;
        height: 52px;

        margin-bottom: 15px;

        font-size: 21px;
    }

    .growing-step h3 {
        font-size: 14px;
    }

    .growing-step p {
        font-size: 11px;
        line-height: 1.65;
    }
} 

 
/* =========================
   Shammam Gallery
========================== */

.gallery-section {
    padding: 100px 0;
    background: var(--color-white);
}


/* =========================
   Gallery Grid
========================== */

.gallery-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 14px;
}


/* =========================
   Gallery Items
========================== */

.gallery-main,
.gallery-item {
    position: relative;
    overflow: hidden;

    border-radius: var(--radius-md);
    background: var(--color-primary-light);
}

.gallery-main {
    grid-row: 1 / 3;
}

.gallery-main img,
.gallery-item img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* =========================
   Hover
========================== */

.gallery-main:hover img,
.gallery-item:hover img {
    transform: scale(1.05);
}


/* =========================
   Tablet
========================== */

@media (max-width: 900px) {

    .gallery-section {
        padding: 75px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 200px 200px;
    }

    .gallery-main {
        grid-column: 1 / 3;
        grid-row: auto;
    }
}


/* =========================
   Mobile
========================== */

@media (max-width: 600px) {

    .gallery-section {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 150px 150px;
        gap: 8px;
    }

    .gallery-main {
        grid-column: 1 / 3;
    }

    .gallery-main,
    .gallery-item {
        border-radius: 10px;
    }
} 

 
/* =========================
   Order CTA
========================== */

.order-cta {
    padding: 100px 0;
    background: var(--color-cream);
}

.order-cta-box {
    position: relative;
    overflow: hidden;

    padding: 75px 60px;

    border-radius: var(--radius-lg);

    background: var(--color-primary-dark);

    text-align: center;
}


/* =========================
   Decorative Circles
========================== */

.order-cta-box::before,
.order-cta-box::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.order-cta-box::before {
    top: -120px;
    left: -80px;
}

.order-cta-box::after {
    right: -80px;
    bottom: -120px;
}


/* =========================
   CTA Content
========================== */

.order-cta-content {
    position: relative;
    z-index: 1;

    max-width: 700px;
    margin-inline: auto;
}

.order-cta-label {
    display: inline-block;

    margin-bottom: 16px;

    color: var(--color-accent);

    font-size: 14px;
    font-weight: 700;
}

.order-cta h2 {
    margin-bottom: 18px;

    color: var(--color-white);

    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.3;
}

.order-cta h2 span {
    color: var(--color-accent);
}

.order-cta p {
    max-width: 560px;
    margin: 0 auto 28px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   CTA Actions
========================== */

.order-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-bottom: 20px;
}

.btn-order {
    background: var(--color-accent);
    color: var(--color-dark);
}

.btn-order:hover {
    background: var(--color-white);
    color: var(--color-dark);
}

.btn-order span {
    font-size: 20px;

    transition: transform var(--transition);
}

.btn-order:hover span {
    transform: translateX(3px);
}

.btn-call {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--color-white);
}

.btn-call:hover {
    background: var(--color-white);
    color: var(--color-dark);
}


/* =========================
   CTA Note
========================== */

.order-cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 12px;
}

.order-cta-note span {
    color: rgba(255, 255, 255, 0.3);
}


/* =========================
   Responsive
========================== */

@media (max-width: 900px) {

    .order-cta {
        padding: 75px 0;
    }

    .order-cta-box {
        padding: 60px 35px;
    }
}


@media (max-width: 600px) {

    .order-cta {
        padding: 60px 0;
    }

    .order-cta-box {
        padding: 50px 20px;
        border-radius: var(--radius-md);
    }

    .order-cta h2 {
        font-size: 30px;
    }

    .order-cta p {
        font-size: 14px;
    }

    .order-cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .order-cta-actions .btn {
        width: 100%;
    }

    .order-cta-note {
        gap: 5px 8px;
        font-size: 11px;
    }
} 


  
/* =========================
   FAQ Section
========================== */

.faq-section {
    padding: 100px 0;
    background: var(--color-cream);
}


/* =========================
   FAQ Heading
========================== */

.faq-section .section-heading {
    margin-bottom: 50px;
}


/* =========================
   FAQ List
========================== */

.faq-list {
    width: 100%;
    max-width: 820px;
    margin-inline: auto;

    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* =========================
   FAQ Item
========================== */

.faq-item {
    overflow: hidden;

    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);

    background: var(--color-white);

    transition:
        border-color var(--transition),
        box-shadow var(--transition);
}

.faq-item:hover {
    border-color: rgba(79, 125, 50, 0.30);
}

.faq-item.active {
    border-color: rgba(79, 125, 50, 0.35);
    box-shadow: var(--shadow-sm);
}


/* =========================
   FAQ Question
========================== */

.faq-question {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 20px 22px;

    color: var(--color-dark);

    font-size: 15px;
    font-weight: 700;

    text-align: left;

    cursor: pointer;
}

.faq-question > span:first-child {
    flex: 1;
}


/* =========================
   FAQ Icon
========================== */

.faq-icon {
    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--color-primary-light);
    color: var(--color-primary);

    font-size: 21px;
    font-weight: 400;
    line-height: 1;

    transition:
        background-color var(--transition),
        color var(--transition),
        transform var(--transition);
}

.faq-item.active .faq-icon {
    background: var(--color-primary);
    color: var(--color-white);

    transform: rotate(180deg);
}


/* =========================
   FAQ Answer
========================== */

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition: max-height 0.35s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 22px 21px;

    color: var(--color-muted);

    font-size: 14px;
    line-height: 1.8;
}


/* =========================
   Focus State
========================== */

.faq-question:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
}


/* =========================
   Mobile
========================== */

@media (max-width: 900px) {

    .faq-section {
        padding: 75px 0;
    }

    .faq-section .section-heading {
        margin-bottom: 40px;
    }
}


@media (max-width: 600px) {

    .faq-section {
        padding: 60px 0;
    }

    .faq-section .section-heading {
        margin-bottom: 32px;
    }

    .faq-list {
        gap: 9px;
    }

    .faq-question {
        gap: 12px;
        padding: 17px 15px;

        font-size: 13px;
        line-height: 1.55;
    }

    .faq-icon {
        flex-basis: 28px;

        width: 28px;
        height: 28px;

        font-size: 18px;
    }

    .faq-answer p {
        padding: 0 15px 17px;

        font-size: 12px;
        line-height: 1.75;
    }
} 

  
/* =========================
   Final CTA
========================== */

.final-cta {
    padding: 90px 0;
    background: var(--color-primary-light);
}


/* =========================
   CTA Content
========================== */

.final-cta-content {
    max-width: 700px;
    margin-inline: auto;

    text-align: center;
}

.final-cta-label {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
}


/* =========================
   CTA Heading
========================== */

.final-cta h2 {
    margin-bottom: 16px;

    color: var(--color-dark);
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.3;
}

.final-cta h2 span {
    display: block;
    color: var(--color-primary);
}


/* =========================
   CTA Text
========================== */

.final-cta p {
    max-width: 540px;
    margin: 0 auto 27px;

    color: var(--color-muted);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================
   CTA Button
========================== */

.btn-final {
    padding-inline: 28px;

    background: var(--color-primary);
    color: var(--color-white);
}

.btn-final:hover {
    background: var(--color-primary-dark);
}

.btn-final span {
    font-size: 20px;
    line-height: 1;

    transition: transform var(--transition);
}

.btn-final:hover span {
    transform: translateX(3px);
}


/* =========================
   Responsive
========================== */

@media (max-width: 900px) {

    .final-cta {
        padding: 75px 0;
    }
}


@media (max-width: 600px) {

    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2 {
        font-size: 30px;
    }

    .final-cta p {
        font-size: 14px;
    }

    .btn-final {
        width: 100%;
        max-width: 320px;
    }
} 


/* =========================
   Site Footer
========================== */

.site-footer {
    padding: 55px 0 20px;
    background: var(--color-dark);
}


/* =========================
   Footer Content
========================== */

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding-bottom: 35px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


/* =========================
   Footer Brand
========================== */

.footer-brand {
    max-width: 420px;
}

.footer-brand strong {
    display: block;

    margin-bottom: 8px;

    color: var(--color-white);
    font-size: 20px;
    font-weight: 800;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.7;
}


/* =========================
   Footer Contact
========================== */

.footer-contact {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-contact span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.footer-contact a {
    color: var(--color-accent);
    font-size: 18px;
    font-weight: 700;

    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--color-white);
}


/* =========================
   Footer Bottom
========================== */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding-top: 18px;

    color: rgba(255, 255, 255, 0.40);
    font-size: 11px;
}


/* =========================
   Footer Responsive
========================== */

@media (max-width: 700px) {

    .site-footer {
        padding-top: 45px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;

        padding-bottom: 28px;
    }

    .footer-contact {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;

        padding-top: 16px;
    }
} 

/* =====================================================
   DEMO SIDEBAR
   ===================================================== */

.demo-sidebar {
    position: fixed;
    z-index: 301;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(340px, 88vw);
    padding: 24px;
    overflow-y: auto;
    background: var(--color-white);
    box-shadow: 14px 0 40px rgba(0, 0, 0, 0.12);
    transform: translateX(-105%);
    transition: transform 0.3s ease;
}

.demo-sidebar.is-open {
    transform: translateX(0);
}


/* Sidebar Header */

.demo-sidebar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.demo-sidebar-head strong {
    color: var(--color-dark);
    font-size: 18px;
    font-weight: 700;
}

.demo-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-dark);
    background: var(--color-white);
    font-size: 24px;
    line-height: 1;
    transition: background-color var(--transition), border-color var(--transition);
}

.demo-close:hover {
    background: var(--color-light);
    border-color: var(--color-primary);
}


/* Demo List */

.demo-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 22px;
}

.demo-link {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    transition: background-color var(--transition), color var(--transition), border-color var(--transition);
    background: var(--color-light);
}

.demo-link:hover {
    background: var(--color-light);
    color: var(--color-primary);
}

.demo-link.active {
    border-color: rgba(53, 92, 58, 0.12);
    background: var(--color-light);
    color: var(--color-primary);
    font-weight: 700;
}


/* Active Indicator */

.demo-link.active::before {
    content: "";
    width: 4px;
    height: 18px;
    margin-right: 10px;
    border-radius: 4px;
    background: var(--color-primary);
}


/* Sidebar Overlay */

.demo-overlay {
    position: fixed;
    z-index: 300;
    inset: 0;
    background: rgba(20, 28, 22, 0.38);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.demo-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}


/* Prevent Background Scroll */

body.sidebar-open {
    overflow: hidden;
}


/* Sidebar Responsive */

@media (max-width: 600px) {

    .demo-sidebar {
        width: min(310px, 88vw);
        padding: 20px;
    }

    .demo-sidebar-head {
        padding-bottom: 16px;
    }

    .demo-link {
        min-height: 44px;
    }
}


/* =====================================================
   STICKY SALES BAR
   ===================================================== */

.sticky-nav {
    position: fixed;
    z-index: 200;
    right: 50%;
    bottom: 16px;
    display: flex;
    width: min(100% - 32px, 560px);
    min-height: 58px;
    transform: translateX(50%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: var(--color-dark);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
}


/* Demo Toggle */

.sticky-toggle {
    display: flex;
    flex: 0 0 58px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.sticky-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-white);
    transition: transform 0.25s ease;
}

.sticky-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}


/* WhatsApp CTA */

.whatsapp-button {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 9px;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 600;
    transition: background-color var(--transition);
}

.whatsapp-button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.whatsapp-icon {
    font-size: 18px;
}


/* Sticky Nav Responsive */

@media (max-width: 600px) {

    .sticky-nav {
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
        min-height: 54px;
        border-radius: 14px;
        transform: none;
    }

    .sticky-toggle {
        flex-basis: 54px;
    }

    .whatsapp-button {
        font-size: 14px;
    }
}