/*
  Theme Name: hdz Karma Thai Massage
  Author: Emerson Israel Sanchez Hernandez
  Author URI: https://github.com/EmersonHdz
  Description: Sitio web Karma Thai Massage profesional
  Version: 1.0
*/


/* ========================================
   Base
======================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

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


/* ========================================
   Layout
======================================== */

.container {
    width: min(1200px, 90%);
    margin: 0 auto;
}


/* ========================================
   Header
======================================== */

.site-header {
    position: relative;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    z-index: 1000;
}

.site-header__inner {
    min-height: 80px;

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


/* ========================================
   Logo
======================================== */

.site-logo {
    display: inline-flex;
    align-items: center;
}

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

@media (max-width: 768px) {

    .site-logo img {
        width: 150px;
    }

}


/* ========================================
   Desktop Navigation
======================================== */

.site-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 28px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.primary-menu li {
    margin: 0;
}

.primary-menu a {
    position: relative;

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

    transition: color 0.2s ease;
}

.primary-menu a:hover {
    color: #777;
}


/* ========================================
   Book Button
======================================== */

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

    padding: 12px 22px;

    border-radius: 4px;

    background: #222;
    color: #fff;

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

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

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


/* ========================================
   Mobile Menu Button
======================================== */

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;
    background: transparent;

    cursor: pointer;

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

    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    background: #222;

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


/* ========================================
   Responsive Navigation
======================================== */

@media (max-width: 768px) {

    .site-header__inner {
        min-height: 70px;
    }


    /* Show hamburger */

    .mobile-menu-toggle {
        display: flex;
    }


    /* Hide desktop navigation */

    .site-navigation {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 20px;

        background: #ffffff;

        border-top: 1px solid #eeeeee;
        border-bottom: 1px solid #eeeeee;
    }


    /* Open menu */

    .site-navigation.is-open {
        display: flex;
    }


    /* Menu items */

    .primary-menu {
        flex-direction: column;
        align-items: stretch;

        gap: 0;
    }

    .primary-menu li {
        border-bottom: 1px solid #eeeeee;
    }

    .primary-menu a {
        display: block;

        padding: 16px 0;

        font-size: 16px;
    }


    /* Book button */

    .header-book-button {
        margin-top: 20px;

        width: 100%;

        padding: 14px;
    }


    /* Hamburger animation */

    .mobile-menu-toggle.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

}

/* ========================================
   Hero Section
======================================== */

.hero-section {
    position: relative;

    width: 100%;

    min-height: 600px;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* ========================================
   Background Image
======================================== */

.hero-section__background {
    position: absolute;

    inset: 0;

    z-index: 0;
}

.hero-section__background img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* ========================================
   Overlay
======================================== */

.hero-section__overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(20, 31, 31, 0.82) 0%,
            rgba(20, 31, 31, 0.68) 35%,
            rgba(20, 31, 31, 0.20) 65%,
            rgba(20, 31, 31, 0.05) 100%
        );
}


/* ========================================
   Hero Container
======================================== */

.hero-section__container {
    position: relative;

    z-index: 2;

    width: min(1200px, 90%);

    margin: 0 auto;

    display: flex;
    align-items: center;

    min-height: 600px;
}


/* ========================================
   Hero Content
======================================== */

.hero-section__content {
    width: 100%;
    max-width: 560px;

    padding: 60px 0;
}


/* ========================================
   Eyebrow
======================================== */

.hero-section__eyebrow {
    position: relative;

    display: inline-block;

    margin-bottom: 24px;

    padding-left: 52px;

    color: #62d0d0;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.hero-section__eyebrow::before {
    content: "";

    position: absolute;

    top: 50%;
    left: 0;

    width: 38px;
    height: 1px;

    background: #62d0d0;

    transform: translateY(-50%);
}


/* ========================================
   Hero Title
======================================== */

.hero-section__title {
    margin: 0;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(48px, 5vw, 72px);

    font-weight: 400;

    line-height: 1.04;

    letter-spacing: -2px;
}

.hero-section__title span {
    display: block;

    color: #5ac6c8;
}


/* ========================================
   Description
======================================== */

.hero-section__description {
    max-width: 480px;

    margin: 28px 0 0;

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

    font-size: 17px;

    line-height: 1.75;
}


/* ========================================
   CTA
======================================== */

.hero-section__button, .reviews-submit__button, .reviews-submit__toggle {
    display: inline-flex;

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

    min-width: 245px;

    margin-top: 32px;

    padding: 15px 18px 15px 25px;

    border-radius: 50px;

    background: #15878a;

    color: #ffffff;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

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

.hero-section__button:hover {
    background: #106f72;

    transform: translateY(-2px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.hero-section__button-arrow {
    display: flex;

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

    width: 34px;
    height: 34px;

    margin-left: 20px;

    border-radius: 50%;

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

    font-size: 20px;

    transition: transform 0.25s ease;
}

.hero-section__button:hover .hero-section__button-arrow {
    transform: translateX(4px);
}


/* ========================================
   Features
======================================== */

.hero-section__features {
    display: flex;

    align-items: center;

    margin-top: 42px;
}

.hero-feature {
    display: flex;

    align-items: center;

    padding-right: 24px;

    margin-right: 24px;

    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-feature:last-child {
    padding-right: 0;

    margin-right: 0;

    border-right: none;
}

.hero-feature__icon {
    display: flex;

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

    width: 26px;
    height: 26px;

    margin-right: 9px;

    color: #62d0d0;

    font-size: 17px;
}

.hero-feature__text {
    color: rgba(255, 255, 255, 0.8);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* ========================================
   Hero Responsive
======================================== */

@media (max-width: 1024px) {

    .hero-section {
        min-height: 560px;
    }

    .hero-section__container {
        min-height: 560px;
    }

    .hero-section__content {
        max-width: 500px;
    }

    .hero-section__title {
        font-size: clamp(44px, 7vw, 62px);
    }

}


@media (max-width: 768px) {

    .hero-section {
        min-height: 650px;

        align-items: flex-end;
    }


    /* Background */

    .hero-section__background img {
        object-position: center;
    }


    /* Overlay */

    .hero-section__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(20, 31, 31, 0.15) 0%,
                rgba(20, 31, 31, 0.35) 30%,
                rgba(20, 31, 31, 0.88) 72%,
                rgba(20, 31, 31, 0.95) 100%
            );
    }


    /* Container */

    .hero-section__container {
        width: 100%;

        min-height: auto;

        padding: 0 25px 45px;
    }


    /* Content */

    .hero-section__content {
        max-width: 100%;

        padding: 0;
    }


    /* Eyebrow */

    .hero-section__eyebrow {
        margin-bottom: 18px;

        padding-left: 42px;

        font-size: 11px;

        letter-spacing: 2px;
    }

    .hero-section__eyebrow::before {
        width: 30px;
    }


    /* Title */

    .hero-section__title {
        font-size: clamp(42px, 12vw, 56px);

        line-height: 1.05;

        letter-spacing: -1.5px;
    }


    /* Description */

    .hero-section__description {
        margin-top: 22px;

        font-size: 15px;

        line-height: 1.7;
    }


    /* Button */

    .hero-section__button {
        width: 100%;

        margin-top: 28px;
    }


    /* Features */

    .hero-section__features {
        margin-top: 35px;

        justify-content: space-between;
    }

    .hero-feature {
        padding-right: 10px;

        margin-right: 10px;
    }

    .hero-feature__icon {
        width: 22px;
        height: 22px;

        margin-right: 6px;

        font-size: 15px;
    }

    .hero-feature__text {
        font-size: 9px;

        letter-spacing: 0.6px;
    }

}


/* ========================================
   About Section
======================================== */

.about-section {
    position: relative;

    padding: 110px 0;

    background: #f8f7f3;

    overflow: hidden;
}


/* ========================================
   Container
======================================== */

.about-section__container {
    display: grid;

    grid-template-columns: 35% 65%;

    align-items: center;

    min-height: 500px;
}


/* ========================================
   Visual Side
======================================== */

.about-section__visual {
    position: relative;

    height: 100%;

    min-height: 430px;

    display: flex;

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

    border-right: 1px solid #ddd9d0;
}


/* ========================================
   Decorative Lotus
======================================== */

.about-section__lotus {
    position: relative;

    width: 180px;
    height: 150px;

    opacity: 0.15;
}

.about-section__lotus span {
    position: absolute;

    left: 50%;
    bottom: 20px;

    width: 70px;
    height: 115px;

    border: 2px solid #168488;

    border-radius: 70% 30% 70% 30%;

    transform-origin: bottom center;

    transform: translateX(-50%) rotate(0deg);
}

.about-section__lotus span:nth-child(1) {
    transform:
        translateX(-50%)
        rotate(-35deg);
}

.about-section__lotus span:nth-child(2) {
    transform:
        translateX(-50%)
        rotate(35deg);
}

.about-section__lotus span:nth-child(3) {
    height: 125px;

    transform:
        translateX(-50%)
        rotate(0deg);
}


/* ========================================
   Number
======================================== */

.about-section__number {
    position: absolute;

    top: 20px;
    left: 0;

    color: #168488;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 14px;

    letter-spacing: 2px;
}


/* ========================================
   Label
======================================== */

.about-section__label {
    position: absolute;

    bottom: 20px;
    left: 0;

    color: #888b87;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

    writing-mode: vertical-rl;

    transform: rotate(180deg);
}


/* ========================================
   Content
======================================== */

.about-section__content {
    max-width: 720px;

    padding-left: 90px;
}


/* ========================================
   Section Eyebrow
======================================== */

.section-eyebrow {
    position: relative;

    display: inline-block;

    padding-left: 45px;

    color: #168488;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;
}

.section-eyebrow::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    width: 30px;
    height: 1px;

    background: #168488;

    transform: translateY(-50%);
}


/* ========================================
   Title
======================================== */

.about-section__title {
    margin: 20px 0 0;

    color: #183f43;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 4vw, 56px);

    font-weight: 400;

    line-height: 1.15;
}


/* ========================================
   Divider
======================================== */

.about-section__divider {
    width: 55px;
    height: 2px;

    margin: 28px 0;

    background: #2bb1b2;
}


/* ========================================
   Text
======================================== */

.about-section__text {
    max-width: 680px;
}

.about-section__text p {
    margin: 0 0 20px;

    color: #656d6b;

    font-size: 16px;

    line-height: 1.85;
}

.about-section__text p:last-child {
    margin-bottom: 0;
}


/* ========================================
   Signature
======================================== */

.about-section__signature {
    display: flex;

    flex-direction: column;

    margin-top: 35px;
}

.about-section__signature span {
    color: #183f43;

    font-family: "Brush Script MT", "Segoe Script", cursive;

    font-size: 30px;
}

.about-section__signature small {
    margin-top: 4px;

    color: #888b87;

    font-size: 11px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

/* ========================================
   About Responsive
======================================== */

@media (max-width: 1024px) {

    .about-section {
        padding: 90px 0;
    }

    .about-section__content {
        padding-left: 60px;
    }

    .about-section__container {
        grid-template-columns: 30% 70%;
    }

}

/* ========================================
   Important Information
======================================== */

.important-notice {
    padding: 35px 0;

    background: #eef7f6;
}

.important-notice__inner {
    display: flex;
    align-items: center;

    gap: 22px;

    max-width: 950px;

    margin: 0 auto;

    padding: 25px 30px;

    border: 1px solid rgba(21, 135, 138, 0.2);

    border-radius: 8px;

    background: #ffffff;
}

.important-notice__icon {
    flex: 0 0 auto;

    width: 42px;
    height: 42px;

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

    border-radius: 50%;

    background: #15878a;
    color: #ffffff;

    font-size: 20px;
    font-weight: 600;
}

.important-notice__content {
    flex: 1;
}

.important-notice__label {
    display: block;

    margin-bottom: 7px;

    color: #15878a;

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

    letter-spacing: 2px;

    text-transform: uppercase;
}

.important-notice__text {
    margin: 0;

    color: #566463;

    font-size: 14px;

    line-height: 1.7;
}

.important-notice__text strong {
    color: #183f43;
}

@media (max-width: 768px) {

    .important-notice {
        padding: 25px 0;
    }

    .important-notice__inner {
        align-items: flex-start;

        gap: 15px;

        padding: 22px 20px;
    }

    .important-notice__icon {
        width: 36px;
        height: 36px;

        font-size: 17px;
    }

    .important-notice__text {
        font-size: 13px;
    }

}


/* ========================================
   Gift Voucher Section
======================================== */

.voucher-section {
    position: relative;

    padding: 110px 0;

    background: #ffffff;

    overflow: hidden;
}


/* ========================================
   Container
======================================== */

.voucher-section__container {
    display: grid;

    grid-template-columns: 48% 52%;

    align-items: center;

    gap: 70px;
}


/* ========================================
   Image
======================================== */

.voucher-section__image {
    position: relative;
}

.voucher-section__image-frame {
    position: relative;

    overflow: hidden;

    border-radius: 4px;

    box-shadow:
        0 20px 50px rgba(24, 63, 67, 0.12);
}

.voucher-section__image-frame::before {
    content: "";

    position: absolute;

    inset: 14px;

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

    z-index: 1;

    pointer-events: none;
}

.voucher-section__image img {
    display: block;

    width: 100%;

    aspect-ratio: 16 / 10;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.voucher-section__image:hover img {
    transform: scale(1.025);
}


/* ========================================
   Content
======================================== */

.voucher-section__content {
    max-width: 600px;
}


/* ========================================
   Title
======================================== */

.voucher-section__title {
    margin: 20px 0 0;

    color: #183f43;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(38px, 4vw, 56px);

    font-weight: 400;

    line-height: 1.12;

    letter-spacing: -1.5px;
}

.voucher-section__title span {
    display: block;

    color: #20a8aa;
}


/* ========================================
   Divider
======================================== */

.voucher-section__divider {
    width: 55px;
    height: 2px;

    margin: 27px 0;

    background: #2bb1b2;
}


/* ========================================
   Introduction
======================================== */

.voucher-section__intro {
    max-width: 540px;

    margin: 0;

    color: #656d6b;

    font-size: 16px;

    line-height: 1.85;
}


/* ========================================
   Benefits
======================================== */

.voucher-section__benefits {
    display: flex;

    flex-direction: column;

    gap: 14px;

    margin-top: 28px;
}

.voucher-benefit {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #4f5d5b;

    font-size: 14px;
}

.voucher-benefit__icon {
    display: flex;

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

    width: 23px;
    height: 23px;

    flex: 0 0 23px;

    border-radius: 50%;

    background: rgba(32, 168, 170, 0.1);

    color: #15878a;

    font-size: 12px;

    font-weight: 700;
}


/* ========================================
   CTA
======================================== */

.voucher-section__button {
    display: inline-flex;

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

    min-width: 235px;

    margin-top: 34px;

    padding: 15px 18px 15px 25px;

    border-radius: 50px;

    background: #15878a;

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

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

.voucher-section__button:hover {
    background: #106f72;

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(21, 135, 138, 0.2);
}

.voucher-section__button-arrow {
    display: flex;

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

    width: 34px;
    height: 34px;

    margin-left: 20px;

    border-radius: 50%;

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

    font-size: 20px;

    transition: transform 0.25s ease;
}

.voucher-section__button:hover
.voucher-section__button-arrow {
    transform: translateX(4px);
}


/* ========================================
   Note
======================================== */

.voucher-section__note {
    margin: 18px 0 0;

    color: #929997;

    font-size: 12px;

    font-style: italic;
}


/* ========================================
   Gift Voucher Responsive
======================================== */

@media (max-width: 1024px) {

    .voucher-section {
        padding: 90px 0;
    }

    .voucher-section__container {
        grid-template-columns: 45% 55%;

        gap: 45px;
    }

    .voucher-section__title {
        font-size: clamp(36px, 5vw, 50px);
    }

}

@media (max-width: 768px) {

    .voucher-section {
        padding: 75px 0;
    }


    .voucher-section__container {
        display: flex;

        flex-direction: column;

        gap: 45px;
    }


    /* Image */

    .voucher-section__image {
        width: 100%;
    }

    .voucher-section__image img {
        aspect-ratio: 4 / 3;
    }


    /* Content */

    .voucher-section__content {
        width: 100%;

        max-width: 100%;
    }


    /* Title */

    .voucher-section__title {
        font-size: clamp(38px, 10vw, 50px);

        line-height: 1.1;
    }


    /* Intro */

    .voucher-section__intro {
        font-size: 15px;

        line-height: 1.8;
    }


    /* Button */

    .voucher-section__button {
        width: 100%;
    }


    /* Benefits */

    .voucher-section__benefits {
        gap: 13px;
    }

}

/*=============================================
   Services Section
   ============================================*/

   /* =========================================================
   SERVICES SECTION
   ========================================================= */

.services-section {
    position: relative;
    padding: 110px 0;
    background: #ffffff;
    overflow: hidden;
}

.services-section__container {
    width: min(1200px, 90%);
    margin: 0 auto;
}


/* ---------------------------------------------------------
   Header
   --------------------------------------------------------- */

.services-section__header {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.services-section__title {
    margin: 12px 0 18px;

    color: #163f3d;

    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.05;
    font-weight: 600;
}

.services-section__title span {
    display: block;
    color: #2c8c87;
}

.services-section__divider {
    width: 55px;
    height: 2px;

    margin: 0 auto 22px;

    background: #2c8c87;
}

.services-section__intro {
    max-width: 620px;

    margin: 0 auto;

    color: #687674;

    font-size: 1rem;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   Services grid
   --------------------------------------------------------- */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}


/* ---------------------------------------------------------
   Service card
   --------------------------------------------------------- */

.service-card {
    position: relative;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e7eceb;

    box-shadow:
        0 12px 35px rgba(22, 63, 61, 0.07);

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

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

    box-shadow:
        0 20px 45px rgba(22, 63, 61, 0.12);
}


/* ---------------------------------------------------------
   Image
   --------------------------------------------------------- */

.service-card__image {
    position: relative;

    display: block;

    width: 100%;

    aspect-ratio: 16 / 10;

    overflow: hidden;

    background: #e9efee;
}

.service-card__image::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(22, 63, 61, 0.25),
        transparent 45%
    );

    opacity: 0;

    transition: opacity 0.3s ease;
}

.service-card:hover .service-card__image::after {
    opacity: 1;
}

.service-card__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.05);
}


/* ---------------------------------------------------------
   Content
   --------------------------------------------------------- */

.service-card__content {
    display: flex;
    flex-direction: column;

    flex: 1;

    padding: 30px 28px 28px;
}

.service-card__title {
    min-height: 25px;
    margin: 0 0 15px;
    color: #163f3d;
    font-size: 1.25rem;
    line-height: 1.35;
    font-weight: 600;
}

/* ---------------------------------------------------------
   Description
   --------------------------------------------------------- */
   .service-card__description{
     margin-bottom: 20px;
   }


/* ---------------------------------------------------------
   Starting price
   --------------------------------------------------------- */

.service-card__starting-price {
    margin-bottom: 20px;

    color: #87928f;

    font-size: 0.8rem;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.service-card__starting-price strong {
    margin-left: 5px;

    color: #2c8c87;

    font-size: 1rem;
    font-weight: 600;
}


/* ---------------------------------------------------------
   Price options
   --------------------------------------------------------- */

.service-card__options {
    display: flex;
    flex-direction: column;

    margin-bottom: 25px;

    border-top: 1px solid #edf1f0;
}

.service-card__option {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 11px 0;

    border-bottom: 1px solid #edf1f0;

    color: #687674;

    font-size: 0.88rem;
}

.service-card__option strong {
    color: #163f3d;

    font-weight: 600;
}


/* ---------------------------------------------------------
   Button
   --------------------------------------------------------- */

.service-card__button {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin-top: auto;
    padding: 14px 17px;

    border: 1px solid #2c8c87;

    background: transparent;

    color: #2c8c87;

    font-size: 0.85rem;
    font-weight: 600;

    text-decoration: none;

    text-transform: uppercase;
    letter-spacing: 0.05em;

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

.service-card__button span:last-child {
    font-size: 1.1rem;

    transition: transform 0.25s ease;
}

.service-card__button:hover {
    background: #2c8c87;
    color: #ffffff;
}

.service-card__button:hover span:last-child {
    transform: translateX(5px);
}


/* ---------------------------------------------------------
   View all button
   --------------------------------------------------------- */

.services-section__footer {
    display: flex;
    justify-content: center;

    margin-top: 50px;
}

.services-section__button {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 15px 26px;

    background: #163f3d;

    color: #ffffff;

    font-size: 0.85rem;
    font-weight: 600;

    text-decoration: none;

    text-transform: uppercase;
    letter-spacing: 0.06em;

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

.services-section__button span:last-child {
    font-size: 1.1rem;

    transition: transform 0.25s ease;
}

.services-section__button:hover {
    background: #2c8c87;

    transform: translateY(-2px);
}

.services-section__button:hover span:last-child {
    transform: translateX(5px);
}


/* =========================================================
   SERVICES RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

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

}


@media (max-width: 650px) {

    .services-section {
        padding: 80px 0;
    }

    .services-section__header {
        margin-bottom: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card__content {
        padding: 26px 24px 24px;
    }

}
/* =========================================================
   REVIEWS SECTION
   ========================================================= */

.reviews-section {
    position: relative;
    padding: 110px 0;
    background: #f8f7f3;
    overflow: hidden;
}

.reviews-section__container {
    width: min(1200px, 90%);
    margin: 0 auto;
}


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

.reviews-section__header {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.reviews-section__title {
    margin: 12px 0 18px;
    color: #163f3d;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.05;
    font-weight: 600;
}

.reviews-section__title span {
    display: block;
    color: #2c8c87;
}

.reviews-section__divider {
    width: 55px;
    height: 2px;
    margin: 0 auto 22px;
    background: #2c8c87;
}

.reviews-section__intro {
    max-width: 600px;
    margin: 0 auto;
    color: #687674;
    font-size: 1rem;
    line-height: 1.8;
}


/* =========================================================
   REVIEWS CAROUSEL
   ========================================================= */

.reviews-carousel {
    position: relative;

    display: flex;
    align-items: center;

    gap: 20px;
}

.reviews-carousel__viewport {
    flex: 1;
    min-width: 0;

    overflow: hidden;
}

.reviews-carousel__track {
    display: flex;
    align-items: flex-start;

    transition: transform 0.5s ease;
}


/* =========================================================
   REVIEW CARD
   ========================================================= */

.review-card {
    flex: 0 0 calc((100% - 48px) / 3);

    height: 430px;

    margin-right: 24px;
    padding: 35px 30px;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;

    background: #ffffff;

    border: 1px solid rgba(44, 140, 135, 0.12);

    box-shadow:
        0 12px 35px rgba(22, 63, 61, 0.07);

    overflow: hidden;
}


/* =========================================================
   REVIEW STARS
   ========================================================= */

.review-card__stars {
    flex-shrink: 0;

    display: flex;
    align-items: center;

    gap: 4px;

    margin-bottom: 20px;

    color: #2c8c87;

    font-size: 0.95rem;
}


/* =========================================================
   REVIEW CONTENT
   ========================================================= */

.review-card__content {
    flex: 1;

    min-height: 0;

    display: flex;
    flex-direction: column;
}


/* =========================================================
   REVIEW TEXT
   ========================================================= */

.review-card__text {
    margin: 0;

    color: #566462;

    font-size: 0.96rem;
    line-height: 1.8;

    display: -webkit-box;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;

    overflow: hidden;
}


/* =========================================================
   READ MORE
   ========================================================= */

.review-card__read-more {
    align-self: flex-start;

    display: inline-flex;
    align-items: center;

    gap: 8px;

    margin-top: 12px;
    padding: 0;

    border: 0;

    background: transparent;

    color: #2c8c87;

    font-family: inherit;

    font-size: 0.86rem;
    font-weight: 600;

    cursor: pointer;

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

.review-card__read-more i {
    font-size: 0.72rem;

    transition:
        transform 0.25s ease;
}

.review-card__read-more:hover {
    color: #163f3d;

    gap: 11px;
}

.review-card__read-more:hover i {
    transform: translateX(2px);
}


/* =========================================================
   REVIEW AUTHOR
   ========================================================= */

.review-card__author {
    flex-shrink: 0;

    display: flex;
    flex-direction: column;

    gap: 5px;

    margin-top: 20px;
    padding-top: 20px;

    border-top: 1px solid #e8eceb;
}

.review-card__author-name {
    color: #163f3d;

    font-size: 0.95rem;
    font-weight: 600;
}

.review-card__author-label {
    color: #8a9694;

    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}


/* =========================================================
   CAROUSEL ARROWS
   ========================================================= */

.reviews-carousel__arrow {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

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

    padding: 0;

    border: 1px solid rgba(44, 140, 135, 0.25);

    border-radius: 50%;

    background: #ffffff;

    color: #2c8c87;

    font-size: 1rem;

    cursor: pointer;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        border-color 0.25s ease;
}

.reviews-carousel__arrow:hover {
    background: #2c8c87;

    border-color: #2c8c87;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   CAROUSEL DOTS
   ========================================================= */

.reviews-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 35px;
}

.reviews-carousel__dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #cbd8d6;

    cursor: pointer;

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

.reviews-carousel__dot.is-active {
    width: 24px;

    border-radius: 10px;

    background: #2c8c87;
}


/* =========================================================
   REVIEW MODAL
   ========================================================= */

.review-modal {
    position: fixed;

    inset: 0;

    z-index: 9999;

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

    padding: 30px;

    visibility: hidden;

    opacity: 0;

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

.review-modal.is-open {
    visibility: visible;

    opacity: 1;
}


/* =========================================================
   MODAL OVERLAY
   ========================================================= */

.review-modal__overlay {
    position: absolute;

    inset: 0;

    background: rgba(22, 63, 61, 0.55);

    backdrop-filter: blur(4px);
}


/* =========================================================
   MODAL DIALOG
   ========================================================= */

.review-modal__dialog {
    position: relative;

    z-index: 1;

    width: 100%;

    max-width: 650px;

    max-height: 85vh;

    padding: 45px;

    box-sizing: border-box;

    overflow-y: auto;

    background: #ffffff;

    border: 1px solid rgba(44, 140, 135, 0.12);

    border-radius: 6px;

    box-shadow:
        0 25px 70px rgba(22, 63, 61, 0.20);

    transform: translateY(20px);

    transition:
        transform 0.25s ease;
}

.review-modal.is-open .review-modal__dialog {
    transform: translateY(0);
}


/* =========================================================
   MODAL CLOSE
   ========================================================= */

.review-modal__close {
    position: absolute;

    top: 18px;
    right: 18px;

    width: 40px;
    height: 40px;

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

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: transparent;

    color: #566462;

    font-size: 1.2rem;

    cursor: pointer;

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

.review-modal__close:hover {
    background: #f1f5f4;

    color: #163f3d;
}


/* =========================================================
   MODAL STARS
   ========================================================= */

.review-modal__stars {
    display: flex;

    gap: 4px;

    margin-bottom: 18px;

    color: #2c8c87;

    font-size: 1rem;
}


/* =========================================================
   MODAL NAME
   ========================================================= */

.review-modal__name {
    color: #163f3d;

    font-size: 1.2rem;

    font-weight: 600;
}


/* =========================================================
   MODAL LABEL
   ========================================================= */

.review-modal__label {
    margin-top: 5px;

    color: #8a9694;

    font-size: 0.75rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}


/* =========================================================
   MODAL DIVIDER
   ========================================================= */

.review-modal__divider {
    width: 100%;

    height: 1px;

    margin: 25px 0;

    background: #e8eceb;
}


/* =========================================================
   MODAL FULL REVIEW
   ========================================================= */

.review-modal__text {
    margin: 0;

    color: #566462;

    font-size: 1rem;

    line-height: 1.85;
}


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

@media (max-width: 1000px) {

    .review-card {
        flex: 0 0 calc((100% - 24px) / 2);

        height: 430px;
    }

}


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

@media (max-width: 700px) {

    .reviews-section {
        padding: 80px 0;
    }


    .reviews-section__header {
        margin-bottom: 40px;
    }


    .reviews-carousel {
        gap: 10px;
    }


    .review-card {
        flex: 0 0 100%;

        height: 400px;

        margin-right: 0;

        padding: 30px 25px;
    }


    .review-card__text {
        -webkit-line-clamp: 5;
    }


    .reviews-carousel__arrow {
        flex: 0 0 42px;

        width: 42px;
        height: 42px;

        font-size: 0.9rem;
    }


    .review-modal {
        padding: 20px;
    }


    .review-modal__dialog {
        max-height: 90vh;

        padding: 40px 25px 30px;
    }

}

/* ========================================
   Leave a Review
======================================== */

.reviews-submit {
    max-width: 760px;
    margin: 70px auto 0;
    text-align: center;
}

.reviews-submit__header {
    margin-bottom: 25px;
}

.reviews-submit__title {
    margin: 0 0 10px;
}

.reviews-submit__intro {
    margin: 0;
}


/* ========================================
   Toggle Button
======================================== */

.reviews-submit__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font: inherit;
}


/* ========================================
   Form Wrapper
======================================== */

.reviews-submit__form-wrapper {
    margin-top: 30px;
    text-align: left;
}

.reviews-submit__form-wrapper[hidden] {
    display: none;
}

/* ========================================
   Form Container (Card moderna)
======================================== */
.reviews-submit__form {
    max-width: 640px;
    margin: 0 auto;
    padding: 40px;
    background: #ffffff;
    border: 1px solid #e2e5e9;
    border-radius: 12px;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.06);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #1a1a1a;
}

/* ========================================
   Header
======================================== */
.reviews-submit__form-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e5e9;
}

.reviews-submit__form-header h4 {
    margin: 0 0 6px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #1a1a1a;
}

.reviews-submit__form-header p {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

/* ========================================
   Fields
======================================== */
.reviews-submit__field {
    margin-bottom: 24px;
}

.reviews-submit__field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.reviews-submit__field input[type="text"],
.reviews-submit__field input[type="email"],
.reviews-submit__field textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    border: 1.5px solid #e2e5e9;
    border-radius: 10px;
    background: #fafbfc;
    font: inherit;
    font-size: 15px;
    color: #1a1a1a;
    transition: border-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-submit__field input::placeholder,
.reviews-submit__field textarea::placeholder {
    color: #9ca3af;
}

.reviews-submit__field input[type="text"]:hover,
.reviews-submit__field input[type="email"]:hover,
.reviews-submit__field textarea:hover {
    border-color: #c9ced4;
}

.reviews-submit__field input[type="text"]:focus,
.reviews-submit__field input[type="email"]:focus,
.reviews-submit__field textarea:focus {
    outline: none;
    border-color: #008080;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.12);
}

.reviews-submit__field textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.5;
}

.reviews-submit__field-note {
    display: block;
    margin-top: 6px;
    font-size: 12.5px;
    color: #6b7280;
}

/* ========================================
   Rating (estrellas modernas)
======================================== */
.reviews-submit__rating {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
    margin-top: 6px;
}

.reviews-submit__rating input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.reviews-submit__rating label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: #d1d5db;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover en cascada (gracias a row-reverse) */
.reviews-submit__rating label:hover,
.reviews-submit__rating label:hover ~ label {
    color: #fbbf24;
}

.reviews-submit__rating label:hover {
    transform: scale(1.15);
}

/* Estrellas seleccionadas */
.reviews-submit__rating input:checked ~ label {
    color: #fbbf24;
}

/* Focus accesible */
.reviews-submit__rating input:focus-visible + label {
    outline: 2px solid #008080;
    outline-offset: 2px;
    border-radius: 6px;
}

/* Texto dinámico del rating */
.reviews-submit__rating-value {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-submit__rating:has(input:checked) + .reviews-submit__rating-value {
    color: #008080;
    font-weight: 600;
}

/* ========================================
   Submit Button
======================================== */
.reviews-submit__actions {
    margin-top: 28px;
}

.reviews-submit__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(180deg, #008080 0%, #006666 100%);
    color: #ffffff;
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 128, 128, 0.3);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-submit__button:hover {
    background: linear-gradient(180deg, #009090 0%, #008080 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.4);
}

.reviews-submit__button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 128, 128, 0.3);
}

.reviews-submit__button:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 4px rgba(0, 128, 128, 0.25),
        0 4px 14px rgba(0, 128, 128, 0.3);
}

.reviews-submit__button i {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.reviews-submit__button:hover i {
    transform: translateX(3px);
}

/* ========================================
   Privacy Note
======================================== */
.reviews-submit__privacy {
    margin: 18px 0 0;
    font-size: 12.5px;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 480px) {
    .reviews-submit__form {
        padding: 24px 20px;
        border-radius: 10px;
    }

    .reviews-submit__form-header h4 {
        font-size: 19px;
    }

    .reviews-submit__rating label {
        width: 34px;
        height: 34px;
        font-size: 26px;
    }
}

/* ========================================
   Success Message
======================================== */

.reviews-submit__success {
    padding: 30px;
    text-align: center;
}

.reviews-submit__success h3 {
    margin-top: 0;
}

.reviews-submit__success p {
    margin-bottom: 0;
}


/* =========================================================
   SINGLE SERVICE PAGE
   ========================================================= */

.service-single {
    background: #ffffff;
}


/* ---------------------------------------------------------
   HERO
   --------------------------------------------------------- */

.service-single__hero {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.service-single__hero-image {
    position: absolute;
    inset: 0;

    z-index: 0;
}

.service-single__hero-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

.service-single__hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(20, 45, 43, 0.82) 0%,
            rgba(20, 45, 43, 0.65) 42%,
            rgba(20, 45, 43, 0.20) 75%,
            rgba(20, 45, 43, 0.05) 100%
        );
}

.service-single__hero-container {
    position: relative;

    z-index: 2;

    width: min(1200px, 90%);

    min-height: 520px;

    margin: 0 auto;

    display: flex;
    align-items: center;
}

.service-single__hero-content {
    max-width: 720px;
}

.service-single__hero-content .section-eyebrow {
    color: #ffffff;

    opacity: 0.85;
}

.service-single__title {
    margin: 16px 0 0;

    color: #ffffff;

    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;

    font-weight: 600;
}


/* ---------------------------------------------------------
   CONTENT SECTION
   --------------------------------------------------------- */

.service-single__content-section {
    padding: 100px 0;
}

.service-single__content-grid {
    width: min(1100px, 90%);

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(320px, 0.8fr);

    gap: 90px;

    align-items: start;
}


/* ---------------------------------------------------------
   DESCRIPTION
   --------------------------------------------------------- */

.service-single__description {
    max-width: 650px;
}

.service-single__description h2 {
    margin: 14px 0 18px;

    color: #163f3d;

    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.15;

    font-weight: 600;
}

.service-single__description p {
    margin: 0 0 20px;

    color: #687674;

    font-size: 1rem;
    line-height: 1.9;
}

.service-single__divider {
    width: 55px;
    height: 2px;

    margin-bottom: 30px;

    background: #2c8c87;
}


/* ---------------------------------------------------------
   PRICING CARD
   --------------------------------------------------------- */

.service-single__pricing {
    position: relative;

    padding: 38px 34px;

    background: #f8f7f3;

    border: 1px solid #e7eceb;

    box-shadow:
        0 15px 40px rgba(22, 63, 61, 0.07);
}

.service-single__pricing h2 {
    margin: 12px 0 28px;

    color: #163f3d;

    font-size: 1.65rem;
    line-height: 1.2;

    font-weight: 600;
}


/* ---------------------------------------------------------
   PRICE OPTIONS
   --------------------------------------------------------- */

.service-single__options {
    margin-bottom: 30px;

    border-top: 1px solid #dfe7e5;
}

.service-single__option {
    display: flex;

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

    gap: 20px;

    padding: 17px 0;

    border-bottom: 1px solid #dfe7e5;

    color: #687674;

    font-size: 0.95rem;
}

.service-single__option strong {
    color: #163f3d;

    font-size: 1rem;
    font-weight: 600;
}


/* ---------------------------------------------------------
   BOOKING BUTTON
   --------------------------------------------------------- */

.service-single__button {
    display: flex;

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

    width: 100%;

    padding: 16px 19px;

    background: #2c8c87;

    color: #ffffff;

    text-decoration: none;

    font-size: 0.82rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.06em;

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

.service-single__button span:last-child {
    font-size: 1.15rem;

    transition: transform 0.25s ease;
}

.service-single__button:hover {
    background: #163f3d;

    transform: translateY(-2px);
}

.service-single__button:hover span:last-child {
    transform: translateX(5px);
}


/* ---------------------------------------------------------
   BACK TO SERVICES
   --------------------------------------------------------- */

.service-single__back {
    padding: 0 0 80px;
}

.service-single__back-link {
    display: inline-flex;

    align-items: center;

    color: #2c8c87;

    font-size: 0.85rem;
    font-weight: 600;

    text-decoration: none;

    text-transform: uppercase;
    letter-spacing: 0.06em;

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

.service-single__back-link:hover {
    color: #163f3d;

    transform: translateX(-4px);
}


/* ---------------------------------------------------------
   NOT FOUND
   --------------------------------------------------------- */

.service-single--not-found {
    padding: 120px 0;

    text-align: center;
}

.service-single--not-found h1 {
    margin-bottom: 15px;

    color: #163f3d;
}

.service-single--not-found p {
    margin-bottom: 30px;

    color: #687674;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 850px) {

    .service-single__hero {
        min-height: 480px;
    }

    .service-single__hero-container {
        min-height: 480px;
    }

    .service-single__content-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .service-single__description {
        max-width: none;
    }

}


@media (max-width: 600px) {

    .service-single__hero {
        min-height: 440px;
    }

    .service-single__hero-container {
        min-height: 440px;
    }

    .service-single__hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(20, 45, 43, 0.30) 0%,
                rgba(20, 45, 43, 0.78) 75%,
                rgba(20, 45, 43, 0.88) 100%
            );
    }

    .service-single__title {
        font-size: 2.5rem;
    }

    .service-single__content-section {
        padding: 75px 0;
    }

    .service-single__content-grid {
        width: 90%;
    }

    .service-single__pricing {
        padding: 30px 24px;
    }

    .service-single__back {
        padding-bottom: 60px;
    }

}



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

.site-footer {
    background: #153b39;
    color: #ffffff;
}


/* Main footer */

.site-footer__container {
    width: min(1200px, 90%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 80px;

    padding: 80px 0 70px;
}


/* Brand */

.site-footer__brand {
    max-width: 360px;
}

.site-footer__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 20px;
    margin-bottom: 24px;

    background: #f8f7f3;
    border-radius: 8px;
}

.site-footer__logo img {
    display: block;
    width: 230px;
    height: auto;
}

.site-footer__description {
    margin: 0;
    max-width: 330px;

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

    font-size: 0.95rem;
    line-height: 1.8;
}


/* Social */

.site-footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.site-footer__social {
    width: 42px;
    height: 42px;

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

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    color: #ffffff;
    text-decoration: none;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.site-footer__social:hover {
    background: #2c8c87;
    border-color: #2c8c87;
    transform: translateY(-3px);
}


/* Columns */

.site-footer__column {
    padding-top: 5px;
}

.site-footer__heading {
    position: relative;

    margin: 0 0 25px;

    color: #ffffff;

    font-size: 0.82rem;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.site-footer__heading::after {
    content: "";

    display: block;

    width: 32px;
    height: 2px;

    margin-top: 12px;

    background: #2c8c87;
}


/* Footer navigation */

.footer-menu {
    display: flex;
    flex-direction: column;

    gap: 13px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-menu li {
    margin: 0;
    padding: 0;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.68);

    font-size: 0.92rem;
    text-decoration: none;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

.footer-menu a:hover {
    color: #ffffff;
    padding-left: 5px;
}


/* Contact */

.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.site-footer__contact-item {
    display: flex;
    align-items: center;
    gap: 14px;

    color: #ffffff;
    text-decoration: none;
}

.site-footer__contact-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

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

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;

    color: #2c8c87;

    font-size: 1rem;
}

.site-footer__contact-item small {
    display: block;

    margin-bottom: 4px;

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

    font-size: 0.72rem;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.site-footer__contact-item strong {
    display: block;

    color: #ffffff;

    font-size: 0.9rem;
    font-weight: 500;
}

a.site-footer__contact-item:hover
.site-footer__contact-icon {
    background: #2c8c87;
    border-color: #2c8c87;
    color: #ffffff;
}


/* Bottom */

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-inner {
    width: min(1200px, 90%);
    min-height: 75px;
    margin: 0 auto;

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

    gap: 30px;
}

.site-footer__copyright, .site-footer__privacy,
.site-footer__credit {
    margin: 0;

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

    font-size: 0.75rem;
    line-height: 1.6;
}

.site-footer__credit a {
    color: rgba(255, 255, 255, 0.7);

    text-decoration: none;

    transition: color 0.25s ease;
}

.site-footer__credit a:hover {
    color: #2c8c87;
}


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

@media (max-width: 850px) {

    .site-footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
        max-width: 500px;
    }

}


@media (max-width: 600px) {

    .site-footer__container {
        grid-template-columns: 1fr;
        gap: 45px;

        padding: 65px 0 55px;
    }

    .site-footer__brand {
        grid-column: auto;
    }

    .site-footer__logo img {
        width: 210px;
    }

    .site-footer__bottom-inner {
        min-height: auto;

        flex-direction: column;
        align-items: flex-start;

        padding: 22px 0;
    }

}

