/* =========================
   CLEANPRO HOME SERVICES
   Designed by SENTI LAB
========================= */

:root {
    --primary: #0f766e;
    --primary-dark: #0b5f59;
    --primary-light: #dff7f3;
    --secondary: #f59e0b;
    --secondary-light: #fff5dc;

    --dark: #102a2e;
    --text: #506368;
    --muted: #7c8d91;

    --white: #ffffff;
    --off-white: #f8fbfb;
    --light: #eef5f4;
    --border: #dfe9e7;

    --success: #16a34a;
    --danger: #dc2626;

    --shadow-sm: 0 8px 24px rgba(15, 56, 54, 0.08);
    --shadow-md: 0 18px 45px rgba(15, 56, 54, 0.12);
    --shadow-lg: 0 28px 70px rgba(15, 56, 54, 0.18);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;

    --container: 1180px;

    --font-body: "DM Sans", sans-serif;
    --font-heading: "Manrope", sans-serif;
}


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

input,
select,
textarea {
    width: 100%;
}

textarea {
    resize: vertical;
}

section {
    position: relative;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}


/* =========================
   TYPOGRAPHY
========================= */

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--dark);
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 7vw, 5.7rem);
    letter-spacing: -0.06em;
}

h2 {
    font-size: clamp(2.2rem, 5vw, 3.7rem);
    letter-spacing: -0.04em;
}

h3 {
    font-size: 1.2rem;
}

p {
    color: var(--text);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2 {
    margin: 14px 0 18px;
}

.section-heading p {
    max-width: 650px;
    margin-inline: auto;
    font-size: 1.05rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
}

.light-label {
    color: #b6f0e8;
}

.light-label::before {
    background: #b6f0e8;
}


/* =========================
   BUTTONS
========================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 12px 25px rgba(15, 118, 110, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    box-shadow: 0 16px 35px rgba(15, 118, 110, 0.28);
}

.btn-outline {
    color: var(--dark);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.75);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-light {
    background: var(--white);
    color: var(--primary-dark);
}

.btn-light:hover {
    box-shadow: var(--shadow-md);
}

.btn-large {
    min-height: 56px;
    padding: 0 28px;
}


/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(223, 233, 231, 0.75);
    transition:
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 35px rgba(20, 58, 55, 0.08);
}

.nav-container {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.logo-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--white);
    background: linear-gradient(145deg, var(--primary), #1aa89d);
    box-shadow: 0 10px 24px rgba(15, 118, 110, 0.22);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.04em;
}

.logo-text span {
    color: var(--primary);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.nav-link {
    position: relative;
    color: #536669;
    font-size: 0.94rem;
    font-weight: 700;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    margin: auto;
    border-radius: 99px;
    background: var(--primary);
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-book-btn {
    min-height: 44px;
    padding-inline: 19px;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    color: var(--dark);
    background: var(--light);
    font-size: 1.2rem;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;
    padding-top: 165px;
    padding-bottom: 60px;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 10%, rgba(15, 118, 110, 0.12), transparent 26%),
        radial-gradient(circle at 94% 25%, rgba(245, 158, 11, 0.12), transparent 25%),
        linear-gradient(180deg, #f8fdfc 0%, #ffffff 100%);
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(5px);
}

.hero-decoration-one {
    width: 320px;
    height: 320px;
    top: 80px;
    left: -190px;
    border: 1px solid rgba(15, 118, 110, 0.14);
}

.hero-decoration-two {
    width: 440px;
    height: 440px;
    right: -230px;
    bottom: 20px;
    border: 1px solid rgba(245, 158, 11, 0.18);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 75px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 26px;
    padding: 8px 13px 8px 8px;
    border: 1px solid #d8ebe8;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-dark);
    font-size: 0.86rem;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.badge-icon {
    width: 29px;
    height: 29px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero-description {
    max-width: 660px;
    margin: 26px 0 32px;
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 17px;
    margin-top: 40px;
}

.customer-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-left: -10px;
    border: 3px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-two {
    background: #476d75;
}

.avatar-three {
    background: #d18b3f;
}

.avatar-four {
    color: var(--dark);
    background: #e4efed;
}

.stars {
    display: flex;
    gap: 3px;
    color: var(--secondary);
    font-size: 0.78rem;
}

.trust-content p {
    margin-top: 3px;
    font-size: 0.85rem;
}

.trust-content strong {
    color: var(--dark);
}

.hero-visual {
    position: relative;
    min-height: 625px;
}

.hero-image-wrapper {
    position: absolute;
    inset: 0 0 0 35px;
    overflow: hidden;
    border-radius: 220px 220px 40px 40px;
    box-shadow: var(--shadow-lg);
}

.hero-image {
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 55%, rgba(2, 44, 42, 0.32)),
        linear-gradient(120deg, rgba(15, 118, 110, 0.08), transparent 45%);
}

.floating-card {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-md);
}

.floating-card strong,
.floating-card span {
    display: block;
}

.floating-card strong {
    color: var(--dark);
    font-size: 0.86rem;
}

.floating-card span {
    color: var(--muted);
    font-size: 0.74rem;
}

.status-icon,
.rating-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 13px;
}

.status-icon {
    color: var(--success);
    background: #dcfce7;
}

.rating-icon {
    color: var(--secondary);
    background: var(--secondary-light);
}

.service-status-card {
    left: -18px;
    bottom: 100px;
}

.rating-card {
    right: -30px;
    top: 105px;
}

.hero-features {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 65px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-md);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 24px 22px;
    border-right: 1px solid var(--border);
}

.hero-feature:last-child {
    border-right: none;
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 13px;
    color: var(--primary);
    background: var(--primary-light);
}

.hero-feature h3 {
    font-size: 0.94rem;
}

.hero-feature p {
    margin-top: 2px;
    font-size: 0.78rem;
    line-height: 1.45;
}


/* =========================
   SERVICES
========================= */

.services {
    background: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 8px 26px rgba(22, 69, 65, 0.05);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(15, 118, 110, 0.32);
    box-shadow: var(--shadow-md);
}

.service-icon {
    height: 115px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.13), transparent),
        var(--primary-light);
    font-size: 2.25rem;
}

.service-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 27px;
}

.service-tag {
    width: fit-content;
    display: inline-flex;
    margin-bottom: 15px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #8a5a00;
    background: var(--secondary-light);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-tag.neutral {
    color: var(--primary-dark);
    background: var(--primary-light);
}

.service-card h3 {
    margin-bottom: 11px;
    font-size: 1.26rem;
}

.service-card p {
    font-size: 0.94rem;
}

.service-list {
    display: grid;
    gap: 9px;
    margin: 20px 0 26px;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #5e6f72;
    font-size: 0.86rem;
}

.service-list i {
    margin-top: 5px;
    color: var(--primary);
    font-size: 0.72rem;
}

.service-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}

.service-price span,
.service-price strong {
    display: block;
}

.service-price span {
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 0.72rem;
}

.service-price strong {
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 1.28rem;
}

.service-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 800;
    font-size: 0.86rem;
}

.service-book-btn i {
    transition: transform 0.25s ease;
}

.service-book-btn:hover i {
    transform: translateX(4px);
}


/* =========================
   PROCESS
========================= */

.process {
    overflow: hidden;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 24px;
}

.process-card {
    position: relative;
    min-height: 285px;
    padding: 36px 30px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.process-number {
    position: absolute;
    top: 16px;
    right: 20px;
    color: rgba(15, 118, 110, 0.1);
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1;
}

.process-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    border-radius: 20px;
    color: var(--primary);
    background: var(--primary-light);
    font-size: 1.5rem;
}

.process-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.process-card p {
    font-size: 0.94rem;
}

.process-arrow {
    color: #b8c9c6;
    font-size: 1.4rem;
}


/* =========================
   ABOUT
========================= */

.about {
    background: var(--off-white);
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 0.96fr 1.04fr;
    align-items: center;
    gap: 85px;
}

.about-visual {
    position: relative;
    min-height: 610px;
}

.about-main-image {
    position: absolute;
    inset: 0 95px 30px 0;
    overflow: hidden;
    border-radius: 35px 110px 35px 35px;
    box-shadow: var(--shadow-lg);
}

.about-main-image img,
.about-small-image img {
    height: 100%;
    object-fit: cover;
}

.about-small-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 245px;
    height: 245px;
    overflow: hidden;
    border: 9px solid var(--off-white);
    border-radius: 34px;
    box-shadow: var(--shadow-md);
}

.experience-card {
    position: absolute;
    left: -22px;
    bottom: 55px;
    width: 170px;
    padding: 24px;
    border-radius: 22px;
    color: var(--white);
    background: var(--primary);
    box-shadow: var(--shadow-md);
}

.experience-card strong,
.experience-card span {
    display: block;
}

.experience-card strong {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    line-height: 1;
}

.experience-card span {
    margin-top: 8px;
    color: #d9f7f2;
    font-size: 0.82rem;
    line-height: 1.4;
}

.about-content h2 {
    margin: 15px 0 20px;
}

.about-description {
    font-size: 1.02rem;
}

.about-benefits {
    display: grid;
    gap: 24px;
    margin: 34px 0;
}

.about-benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-check {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    color: var(--white);
    background: var(--primary);
    font-size: 0.75rem;
}

.about-benefit h3 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.about-benefit p {
    font-size: 0.89rem;
}


/* =========================
   BOOKING
========================= */

.booking {
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(circle at 10% 12%, rgba(255, 255, 255, 0.12), transparent 28%),
        linear-gradient(135deg, #0a5752, #0f766e);
}

.booking::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -230px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.booking-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: center;
    gap: 70px;
}

.booking-content h2 {
    margin: 15px 0 20px;
    color: var(--white);
}

.booking-content > p {
    color: #cae7e3;
}

.booking-contact-list {
    display: grid;
    gap: 22px;
    margin-top: 38px;
}

.booking-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.booking-contact-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 15px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.booking-contact-item span,
.booking-contact-item strong,
.booking-contact-item a {
    display: block;
}

.booking-contact-item span {
    color: #acd8d2;
    font-size: 0.78rem;
}

.booking-contact-item strong,
.booking-contact-item a {
    color: var(--white);
    font-size: 0.95rem;
}

.booking-form-wrapper {
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 28px;
    color: var(--text);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.form-heading {
    margin-bottom: 25px;
}

.form-heading h3 {
    font-size: 1.45rem;
}

.form-heading p {
    margin-top: 4px;
    font-size: 0.9rem;
}

.booking-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: grid;
    gap: 7px;
}

.form-group label {
    color: var(--dark);
    font-size: 0.81rem;
    font-weight: 800;
}

.form-group label span {
    color: var(--danger);
}

.input-wrapper {
    position: relative;
}

.input-wrapper > i {
    position: absolute;
    top: 50%;
    left: 15px;
    z-index: 2;
    transform: translateY(-50%);
    color: #8ca09e;
    font-size: 0.86rem;
    pointer-events: none;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    min-height: 49px;
    padding: 0 15px 0 43px;
    border: 1px solid var(--border);
    border-radius: 12px;
    outline: none;
    color: var(--dark);
    background: #fbfdfd;
    font-size: 0.87rem;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.input-wrapper textarea {
    min-height: 112px;
    padding-top: 13px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: #9daead;
}

.textarea-wrapper > i {
    top: 17px;
    transform: none;
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.select-wrapper::after {
    content: "\f078";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #8ca09e;
    font-family: "Font Awesome 6 Free";
    font-size: 0.72rem;
    font-weight: 900;
    pointer-events: none;
}

.booking-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 3px;
    padding: 17px 18px;
    border: 1px solid #d2e9e6;
    border-radius: 14px;
    background: var(--primary-light);
}

.booking-summary span,
.booking-summary small {
    display: block;
}

.booking-summary span {
    color: var(--dark);
    font-size: 0.86rem;
    font-weight: 800;
}

.booking-summary small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.7rem;
}

.booking-summary strong {
    flex-shrink: 0;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-size: 1.3rem;
}

.submit-booking-btn {
    width: 100%;
    min-height: 54px;
    margin-top: 2px;
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 0.73rem;
    text-align: center;
}

.form-note i {
    color: var(--primary);
}


/* =========================
   REVIEWS
========================= */

.reviews {
    background: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
}

.featured-review {
    border-color: rgba(15, 118, 110, 0.26);
    background:
        linear-gradient(180deg, rgba(223, 247, 243, 0.55), transparent),
        var(--white);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.review-person {
    display: flex;
    align-items: center;
    gap: 13px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 15px;
    color: var(--white);
    background: linear-gradient(145deg, var(--primary), #1da89d);
    font-weight: 800;
}

.review-person h3 {
    font-size: 0.95rem;
}

.review-person span {
    color: var(--muted);
    font-size: 0.72rem;
}

.quote-icon {
    color: #d9e9e7;
    font-size: 1.55rem;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin: 22px 0 15px;
    color: var(--secondary);
    font-size: 0.78rem;
}

.review-card > p {
    font-size: 0.92rem;
}

.verified-review {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 20px;
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 800;
}


/* =========================
   FAQ
========================= */

.faq {
    background: var(--off-white);
}

.faq-container {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: start;
    gap: 75px;
}

.faq-heading {
    position: sticky;
    top: 120px;
}

.faq-heading h2 {
    margin: 15px 0 18px;
}

.faq-heading p {
    margin-bottom: 28px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.faq-item.active {
    border-color: rgba(15, 118, 110, 0.28);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 18px 22px;
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 800;
    text-align: left;
}

.faq-question i {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    color: var(--primary);
    background: var(--primary-light);
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background 0.25s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--white);
    background: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 220px;
}

.faq-answer p {
    padding: 0 22px 23px;
    font-size: 0.9rem;
}


/* =========================
   CTA
========================= */

.cta-section {
    padding: 0 0 100px;
    background: var(--off-white);
}

.cta-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 52px 58px;
    overflow: hidden;
    border-radius: 28px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 30%, rgba(255, 255, 255, 0.13), transparent 28%),
        linear-gradient(135deg, #0c655f, #0d8076);
    box-shadow: var(--shadow-md);
}

.cta-card::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -105px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.cta-content > span {
    color: #b9ede6;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cta-content h2 {
    margin: 9px 0;
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 3rem);
}

.cta-content p {
    color: #cfece8;
}

.cta-card .btn {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}


/* =========================
   FOOTER
========================= */

.footer {
    padding-top: 78px;
    color: #b4c7ca;
    background: #092f32;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.9fr 1fr;
    gap: 55px;
    padding-bottom: 60px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-brand > p {
    max-width: 320px;
    margin: 20px 0 24px;
    color: #9eb4b7;
    font-size: 0.91rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    background: var(--primary);
}

.footer-column h3 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: 1rem;
}

.footer-column ul {
    display: grid;
    gap: 11px;
}

.footer-column li,
.footer-column a {
    color: #9fb4b7;
    font-size: 0.86rem;
}

.footer-column a {
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.footer-contact li i {
    width: 18px;
    margin-top: 5px;
    color: #52c5ba;
}

.footer-bottom {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
    color: #87a0a3;
    font-size: 0.79rem;
}

.sentilab-credit a {
    color: #70d6cc;
    font-weight: 800;
}


/* =========================
   MODAL
========================= */

.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition:
        visibility 0.25s ease,
        opacity 0.25s ease;
}

.modal.show {
    visibility: visible;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 27, 28, 0.7);
    backdrop-filter: blur(7px);
}

.modal-content {
    position: relative;
    z-index: 2;
    width: min(100%, 490px);
    padding: 40px;
    border-radius: 26px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transform: translateY(22px) scale(0.96);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 17px;
    right: 17px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--dark);
    background: var(--light);
}

.modal-success-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    color: var(--white);
    background: var(--success);
    box-shadow: 0 14px 30px rgba(22, 163, 74, 0.22);
    font-size: 1.65rem;
}

.modal-label {
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.modal-content h2 {
    margin: 9px 0 12px;
    font-size: 1.75rem;
}

.modal-content > p {
    font-size: 0.9rem;
}

.modal-booking-details {
    display: grid;
    gap: 12px;
    margin: 25px 0;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--off-white);
    text-align: left;
}

.modal-booking-details > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.modal-booking-details span {
    color: var(--muted);
    font-size: 0.75rem;
}

.modal-booking-details strong {
    color: var(--dark);
    font-size: 0.79rem;
    text-align: right;
}

.modal-button {
    width: 100%;
}


/* =========================
   BACK TO TOP
========================= */

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--white);
    background: var(--primary);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease,
        background 0.25s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
}


/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #edf4f3;
}

::-webkit-scrollbar-thumb {
    border: 2px solid #edf4f3;
    border-radius: 999px;
    background: #8fbdb8;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}


/* =========================
   SELECTION
========================= */

::selection {
    color: var(--white);
    background: var(--primary);
}


/* =========================
   RESPONSIVE - LARGE TABLET
========================= */

@media (max-width: 1100px) {

    .navbar {
        gap: 18px;
    }

    .nav-link {
        font-size: 0.87rem;
    }

    .hero-container {
        gap: 45px;
    }

    .hero-visual {
        min-height: 550px;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-feature:nth-child(2) {
        border-right: none;
    }

    .hero-feature:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container {
        gap: 55px;
    }

    .booking-container {
        gap: 45px;
    }

    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: 2 / 4;
    }
}


/* =========================
   RESPONSIVE - TABLET
========================= */

@media (max-width: 900px) {

    .section {
        padding: 90px 0;
    }

    .nav-book-btn {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .navbar {
        position: fixed;
        top: 78px;
        left: 20px;
        right: 20px;
        display: grid;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--border);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-md);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-14px);
        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }

    .navbar.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        padding: 13px 14px;
        border-radius: 11px;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background: var(--primary-light);
    }

    .hero {
        min-height: auto;
        padding-top: 140px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        max-width: 760px;
        text-align: center;
        margin-inline: auto;
    }

    .hero-badge,
    .hero-description {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        width: min(100%, 650px);
        min-height: 620px;
        margin-inline: auto;
    }

    .hero-image-wrapper {
        inset: 0 45px;
    }

    .service-status-card {
        left: 0;
    }

    .rating-card {
        right: 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card {
        min-height: auto;
    }

    .process-arrow {
        transform: rotate(90deg);
        text-align: center;
    }

    .about-container,
    .booking-container,
    .faq-container {
        grid-template-columns: 1fr;
    }

    .about-visual {
        width: min(100%, 650px);
        margin-inline: auto;
    }

    .about-content {
        max-width: 720px;
    }

    .booking-content {
        max-width: 700px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        max-width: 680px;
        width: 100%;
        margin-inline: auto;
    }

    .faq-heading {
        position: static;
        max-width: 650px;
    }

    .cta-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: auto;
    }
}


/* =========================
   RESPONSIVE - MOBILE
========================= */

@media (max-width: 650px) {

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 75px 0;
    }

    .nav-container {
        min-height: 70px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .logo-text {
        font-size: 1.18rem;
    }

    .navbar {
        top: 70px;
        left: 14px;
        right: 14px;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 45px;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 13vw, 4rem);
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        align-items: flex-start;
        flex-direction: column;
        width: fit-content;
        margin-inline: auto;
    }

    .hero-visual {
        min-height: 470px;
    }

    .hero-image-wrapper {
        inset: 0;
        border-radius: 150px 150px 28px 28px;
    }

    .floating-card {
        padding: 12px 14px;
    }

    .floating-card strong {
        font-size: 0.75rem;
    }

    .floating-card span {
        font-size: 0.65rem;
    }

    .status-icon,
    .rating-icon {
        width: 36px;
        height: 36px;
    }

    .service-status-card {
        left: 8px;
        bottom: 35px;
    }

    .rating-card {
        top: 50px;
        right: 8px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .hero-feature {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .hero-feature:nth-child(-n + 2) {
        border-bottom: 1px solid var(--border);
    }

    .hero-feature:last-child {
        border-bottom: none;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-info {
        padding: 23px;
    }

    .service-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .process-grid {
        gap: 15px;
    }

    .about-visual {
        min-height: 470px;
    }

    .about-main-image {
        inset: 0 40px 40px 0;
        border-radius: 28px 75px 28px 28px;
    }

    .about-small-image {
        width: 170px;
        height: 170px;
        border-width: 6px;
    }

    .experience-card {
        left: 5px;
        bottom: 30px;
        width: 145px;
        padding: 18px;
    }

    .experience-card strong {
        font-size: 2rem;
    }

    .booking-form-wrapper {
        padding: 25px 18px;
        border-radius: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-summary {
        align-items: flex-start;
        flex-direction: column;
    }

    .reviews-grid {
        gap: 18px;
    }

    .review-card {
        padding: 24px;
    }

    .faq-container {
        gap: 45px;
    }

    .faq-question {
        min-height: 65px;
        padding: 17px;
        font-size: 0.9rem;
    }

    .faq-answer p {
        padding: 0 17px 20px;
    }

    .cta-section {
        padding-bottom: 70px;
    }

    .cta-card {
        padding: 35px 24px;
        border-radius: 22px;
    }

    .cta-card .btn {
        width: 100%;
    }

    .footer {
        padding-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 22px 0;
    }

    .modal-content {
        padding: 34px 20px 24px;
    }

    .modal-booking-details > div {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .modal-booking-details strong {
        text-align: left;
    }

    .back-to-top {
        right: 14px;
        bottom: 14px;
    }
}


/* =========================
   VERY SMALL DEVICES
========================= */

@media (max-width: 390px) {

    .hero h1 {
        font-size: 2.45rem;
    }

    .hero-badge {
        font-size: 0.72rem;
    }

    .hero-visual {
        min-height: 430px;
    }

    .floating-card {
        max-width: 190px;
    }

    .rating-card {
        top: 25px;
    }

    .service-status-card {
        bottom: 20px;
    }

    .about-visual {
        min-height: 420px;
    }

    .about-small-image {
        width: 145px;
        height: 145px;
    }

    .experience-card {
        width: 130px;
    }
}