:root {
    --color-white: #ffffff;
    --color-bg-alt: #f4efe9;
    --color-gray: #6e6a66;
    --color-gray-light: #d8d3cd;
    --color-brown: #5c3a21;
    --color-orange: #d9791f;
    --color-black: #201a15;
    --color-navy: #191d2b;
}

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

html {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Lexend', sans-serif;
    background: var(--color-white);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.reveal {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: transform, opacity;
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-up {
    transform: translateY(40px);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal-stagger.is-visible:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal-stagger.is-visible:nth-child(3) {
    transition-delay: 0.2s;
}

.reveal-stagger.is-visible:nth-child(4) {
    transition-delay: 0.3s;
}

.reveal-stagger.is-visible:nth-child(5) {
    transition-delay: 0.4s;
}

.reveal-stagger.is-visible:nth-child(6) {
    transition-delay: 0.5s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-light);
    padding: 0.65rem 0;
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.topbar.scrolled {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

main {
    padding-top: var(--topbar-height, 68px);
}

body:has(.hero) main {
    padding-top: 0;
}

body:has(.hero) .topbar:not(.scrolled) {
    background: transparent;
    border-bottom-color: transparent;
}

body:has(.hero) .topbar:not(.scrolled) .topbar-logo {
    color: var(--color-white);
}

body:has(.hero) .topbar:not(.scrolled) .topbar-tagline {
    color: rgba(255, 255, 255, 0.85);
    border-left-color: rgba(255, 255, 255, 0.3);
}

body:has(.hero) .topbar:not(.scrolled) .topbar-icons a {
    background: rgba(255, 255, 255, 0.18);
    color: var(--color-white);
}

body:has(.hero) .topbar:not(.scrolled) .menu-toggle {
    background-color: rgba(255, 255, 255, 0.18);
    color: var(--color-white);
}

body:has(.hero) .topbar:not(.scrolled) .topbar-phone {
    background-color: rgba(255, 255, 255, 0.18);
    color: var(--color-white);
}

body:has(.hero) .topbar:not(.scrolled) .topbar-account {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-white);
}

.topbar .container {
    max-width: 1320px;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: nowrap;
}

.topbar-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-shrink: 0;
}

.topbar-logo {
    display: inline-flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-brown);
    text-decoration: none;
}

.topbar-logo-img {
    height: 64px;
    width: auto;
    display: none;
}

.topbar-logo-top {
    display: block;
    height: 88px;
}

.topbar.scrolled .topbar-logo-top {
    display: none;
}

.topbar.scrolled .topbar-logo-scrolled {
    display: block;
}

.topbar-tagline {
    color: var(--color-gray);
    font-size: 0.8rem;
    border-left: 1px solid var(--color-gray-light);
    padding-left: 1rem;
}

.topbar-icons {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.topbar-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    color: var(--color-gray);
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1;
    flex-shrink: 0;
}

.topbar-icons a:hover {
    background: var(--color-brown);
    color: var(--color-white);
}

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background-color: var(--color-bg-alt);
    background-image: linear-gradient(var(--color-orange), var(--color-orange));
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 0% 100%;
    border: none;
    color: var(--color-black);
    padding: 0.35rem 0.35rem 0.35rem 1.1rem;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-size 0.35s ease, color 0.35s ease;
}

.menu-toggle:hover {
    background-size: 100% 100%;
    color: var(--color-white);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-black);
    flex-shrink: 0;
}

.hamburger-icon span {
    display: block;
    width: 13px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
}

.menu-toggle:hover .hamburger-icon,
.menu-toggle[aria-expanded="true"] .hamburger-icon {
    background: var(--color-orange);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(32, 26, 21, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 40;
}

.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.menu-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 380px;
    max-width: 88vw;
    background: var(--color-white);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 50;
    display: flex;
    flex-direction: column;
    padding: 2rem 2rem 2.5rem;
}

.menu-drawer.open {
    transform: translateX(0);
}

.menu-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.menu-drawer-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-brown);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    border: none;
    color: var(--color-black);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.menu-close:hover {
    background: var(--color-brown);
    color: var(--color-white);
}

.menu-drawer-links {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.menu-drawer-links a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1rem 0.1rem;
    border-bottom: 1px solid var(--color-gray-light);
    transition: color 0.15s ease, padding-left 0.15s ease;
}

.menu-drawer-links a:hover {
    color: var(--color-orange);
    padding-left: 0.5rem;
}

.menu-drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 1.75rem;
}

.menu-drawer-footer a {
    color: var(--color-gray);
    text-decoration: none;
    font-size: 0.9rem;
}

.menu-drawer-footer a:hover {
    color: var(--color-brown);
}

body.menu-open {
    overflow: hidden;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.topbar-phone {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-black);
    text-decoration: none;
    background-color: var(--color-bg-alt);
    background-image: linear-gradient(var(--color-orange), var(--color-orange));
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 0% 100%;
    padding: 0.35rem 0.35rem 0.35rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: background-size 0.35s ease, color 0.35s ease;
}

.topbar-phone:hover {
    background-size: 100% 100%;
    color: var(--color-white);
}

.topbar-help {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.topbar-account {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-black);
    text-decoration: none;
    background-color: var(--color-white);
    background-image: linear-gradient(var(--color-orange), var(--color-orange));
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 0% 100%;
    border: 1px solid var(--color-gray-light);
    padding: 0.35rem 0.4rem 0.35rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: background-size 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.topbar-account-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-black);
    color: var(--color-white);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.topbar-account:hover {
    background-size: 100% 100%;
    border-color: var(--color-orange);
    color: var(--color-white);
}

.hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 4rem 1.5rem 3rem;
    color: var(--color-white);
    background: var(--color-black);
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 15%, rgba(217, 121, 31, 0.35), transparent 45%),
        linear-gradient(160deg, rgba(32, 26, 21, 0.9) 0%, rgba(32, 26, 21, 0.6) 45%, rgba(32, 26, 21, 0.88) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    padding-top: 4.5rem;
}

.hero-slider {
    position: relative;
}

.hero-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    margin: 0;
    opacity: 0;
    animation: heroSlideFade 0.5s ease forwards;
}

@keyframes heroSlideFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide.active {
    display: flex;
}

.hero-title {
    line-height: 1.2;
}

.hero-title-accent {
    display: block;
    font-size: 120px;
    font-weight: 800;
    color: var(--color-orange);
}

.hero-title-main {
    display: block;
    margin-top: 0.4rem;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.3;
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot.active {
    background: var(--color-orange);
    transform: scale(1.2);
}

.hero-cta {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-gray-light);
}

@media (max-width: 720px) {
    .topbar-tagline {
        display: none;
    }

    .topbar-phone {
        display: none;
    }

    .topbar-account {
        display: none;
    }

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

    .hero-title-accent {
        font-size: 2.3rem;
    }

    .hero-title-main {
        font-size: 1.4rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--color-orange);
    background-image: linear-gradient(var(--color-brown), var(--color-brown));
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 0% 100%;
    color: var(--color-white);
    padding: 0.4rem 0.4rem 0.4rem 1.5rem;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    transition: padding 0.3s ease, background-size 0.35s ease;
}

.btn:hover {
    background-size: 100% 100%;
    padding-right: 1.3rem;
}

.btn::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--color-brown);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 14px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover::after {
    background: var(--color-orange);
    transform: translateX(18px);
}

.section {
    padding: 4rem 1.5rem;
}

.services-page-hero {
    padding: 11rem 1.5rem 3rem;
    text-align: center;
    background:
        linear-gradient(rgba(25, 29, 43, 0.6), rgba(25, 29, 43, 0.6)),
        url('../img/15364601_5585459.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-page-hero-title {
    color: var(--color-white);
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.8);
}

.services-page-hero .hero-stats {
    margin-top: 6rem;
}

.about-page-hero {
    padding: 11rem 1.5rem 3rem;
    text-align: center;
    background:
        linear-gradient(rgba(25, 29, 43, 0.55), rgba(25, 29, 43, 0.55)),
        url('../img/hero1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-page-hero-title {
    color: var(--color-white);
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.about-page-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 1rem auto 0;
}

.about-page-hero .hero-stats {
    margin-top: 6rem;
}

.page-title-accent {
    display: inline-block;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 0.05em 0.4em;
    border-radius: 8px;
}

.services-page-hero .container,
.services-page-cta .container,
.services-page-grid-container,
.about-page-hero .container,
.commitment-section .container,
.about-hero .container,
.about-values .container,
.services-page-testimonial .container,
.about-faq-container {
    max-width: 1440px;
}

.services-page-intro {
    text-align: center;
}

.services-page-intro p {
    color: var(--color-gray);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-page-cta {
    text-align: center;
}

.services-page-cta p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.services-page-testimonial {
    background: var(--color-bg-alt);
}

.commitment-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.commitment-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.commitment-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1.25rem 1.5rem 4rem;
    border-radius: 999px;
    color: var(--color-white);
}

.commitment-row-1 {
    background: linear-gradient(120deg, var(--color-brown), #7a4a2a);
}

.commitment-row-2 {
    background: linear-gradient(120deg, var(--color-navy), #2c3350);
}

.commitment-row-3 {
    background: linear-gradient(120deg, var(--color-orange), #b5620f);
}

.commitment-row-4 {
    background: linear-gradient(120deg, #7a3f12, #a1541c);
}

.commitment-number {
    position: absolute;
    left: -1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-white);
    color: var(--color-brown);
    font-size: 1.3rem;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(32, 26, 21, 0.25);
    flex-shrink: 0;
}

.commitment-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.commitment-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

.commitment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--color-white);
    box-shadow: 0 6px 16px rgba(32, 26, 21, 0.25);
    font-size: 2rem;
    flex-shrink: 0;
    margin-left: auto;
}

.commitment-row-1 .commitment-icon {
    color: var(--color-brown);
}

.commitment-row-2 .commitment-icon {
    color: var(--color-navy);
}

.commitment-row-3 .commitment-icon {
    color: var(--color-orange);
}

.commitment-row-4 .commitment-icon {
    color: #7a3f12;
}

@media (max-width: 700px) {
    .commitment-row {
        padding: 2rem 1.5rem;
        border-radius: 24px;
        flex-wrap: wrap;
    }

    .commitment-number {
        position: static;
        margin-bottom: 0.75rem;
    }
}

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

.services-quote-icon {
    font-size: 28px;
    color: var(--color-orange);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.services-quote-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-brown);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.services-quote-author {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-black);
}

.services-quote-author span {
    font-weight: 400;
    color: var(--color-gray);
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-hero-grid p {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-hero-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.about-stats {
    background: var(--color-bg-alt);
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.about-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-brown);
}

.about-stat-label {
    font-size: 0.9rem;
    color: var(--color-gray);
}

.about-values h2 {
    text-align: center;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.about-value {
    text-align: center;
    padding: 2rem 1.5rem;
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
}

.about-value i {
    font-size: 26px;
    color: var(--color-orange);
    margin-bottom: 1rem;
}

.about-value h3 {
    color: var(--color-brown);
    margin-bottom: 0.5rem;
}

.about-value p {
    color: var(--color-gray);
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
    }

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

    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

.section h1,
.section h2 {
    color: var(--color-brown);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.services-section {
    padding: 4.5rem 1.5rem;
    background: var(--color-white);
}

.services-section .container {
    max-width: 1440px;
}

.services-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-brown);
    white-space: nowrap;
    margin: 0 auto 3rem;
}

.services-title-accent {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    gap: 0.3rem;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 0.05em 0.4em;
    border-radius: 8px;
}

.services-title-accent i {
    font-size: 0.6em;
}

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

.service-card {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--color-gray-light);
    box-shadow: none;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 16px 24px -12px rgba(32, 26, 21, 0.38);
}

.service-card-media {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.service-card-overlay {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(to top,
        rgba(244, 239, 233, 0.92) 0%,
        rgba(244, 239, 233, 0.6) 40%,
        rgba(244, 239, 233, 0) 70%);
}

.service-card-shade {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(32, 26, 21, 0);
    transition: background-color 0.3s ease;
}

.service-card:hover .service-card-shade {
    background: rgba(32, 26, 21, 0.06);
}

.service-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.9rem;
    padding: 1.75rem;
}

.service-badge {
    align-self: flex-start;
    background: var(--color-orange);
    color: var(--color-white);
    font-weight: 500;
    font-size: 15px;
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
}

.service-desc {
    color: var(--color-black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.service-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    font-size: 12px;
    color: var(--color-gray);
}

.service-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.service-meta i {
    color: var(--color-orange);
}

.service-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.service-cta-text {
    color: var(--color-black);
    text-decoration: underline;
    font-size: 14px;
    font-weight: 400;
}

.service-cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-orange);
    color: var(--color-white);
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card:hover .service-cta-arrow {
    transform: translateX(8px) scale(1.15);
    background: var(--color-brown);
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-title {
        font-size: 32px;
        white-space: normal;
    }

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

.method-section {
    position: relative;
    background:
        linear-gradient(rgba(25, 29, 43, 0.6), rgba(25, 29, 43, 0.6)),
        url('../img/bg ast.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 1.5rem 5rem;
}

.method-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: block;
}

.method-wave-bottom {
    top: auto;
    bottom: 0;
}

.method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    max-width: 1440px;
}

.method-title {
    color: var(--color-white);
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.method-badge {
    display: inline-block;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 0.05em 0.4em;
    border-radius: 8px;
}

.method-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

.method-text strong {
    color: var(--color-white);
    font-weight: 700;
}

.method-cta {
    margin-top: 0.75rem;
}

.method-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

@media (max-width: 900px) {
    .method-grid {
        grid-template-columns: 1fr;
    }

    .method-image {
        order: -1;
    }
}

@media (max-width: 600px) {
    .method-title {
        font-size: 28px;
    }
}

.how-section {
    position: relative;
    padding: 2rem 1.5rem 5rem;
    background:
        linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.55) 120px, rgba(255, 255, 255, 0.55) 100%),
        url('../img/5778320.jpg');
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    text-align: center;
}

.how-section .container {
    max-width: 1440px;
}

.how-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-brown);
    max-width: 700px;
    margin: 0 auto 0.75rem;
    line-height: 1.25;
}

.how-title-accent {
    display: inline-block;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 0.1em 0.4em;
    border-radius: 10px;
}

.how-subtitle {
    color: var(--color-gray);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 3rem;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    text-align: left;
}

.how-step {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: 16px;
    padding: 2rem;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.how-step:hover {
    border-color: var(--color-orange);
    box-shadow: 0 10px 20px -12px rgba(32, 26, 21, 0.2);
}

.how-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin-bottom: 1.25rem;
    background: var(--color-bg-alt);
    color: var(--color-brown);
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
}

.how-step-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-orange);
    font-size: 22px;
}

.how-step-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-brown);
    margin-bottom: 0.5rem;
}

.how-step-text {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .how-title {
        font-size: 26px;
    }

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

.app-section {
    position: relative;
    padding: 6rem 1.5rem;
    background: var(--color-white);
    overflow: hidden;
}

.app-section-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--color-bg-alt);
    z-index: 0;
}

.app-section-shape-1 {
    width: 260px;
    height: 260px;
    top: -80px;
    left: -80px;
}

.app-section-shape-2 {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: 15%;
}

.app-section-shape-3 {
    width: 140px;
    height: 140px;
    top: 20%;
    right: 5%;
    background: rgba(217, 121, 31, 0.08);
}

.app-grid {
    position: relative;
    z-index: 1;
}

.app-section .container {
    max-width: 1440px;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.app-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 1.25rem;
}

.app-title-accent {
    display: inline-block;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 0.05em 0.4em;
    border-radius: 8px;
}

.app-subtitle {
    font-size: 15px;
    color: var(--color-gray);
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 1.5rem;
}

.app-whatsapp {
    font-size: 16px;
    color: var(--color-brown);
    line-height: 1.5;
    max-width: 480px;
    margin-bottom: 2rem;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-bg-alt);
    border-radius: 12px;
    padding: 1rem 1.25rem;
}

.app-feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-orange);
    font-size: 16px;
}

.app-feature p {
    font-size: 14px;
    color: var(--color-black);
    line-height: 1.45;
}

.app-download-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 0.75rem;
}

.app-stores {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: #25d366;
    color: var(--color-white);
    font-weight: 600;
    font-size: 14px;
    padding: 0.75rem 1.1rem;
    border-radius: 10px;
    text-decoration: none;
}

.whatsapp-cta i {
    font-size: 20px;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--color-black);
    color: var(--color-white);
    padding: 0.55rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 20px;
}

.store-badge span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-badge small {
    font-size: 10px;
    opacity: 0.8;
}

.store-badge strong {
    font-size: 14px;
    font-weight: 600;
}

.app-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 680px;
}

.app-blob {
    position: absolute;
    border-radius: 50%;
    background: var(--color-bg-alt);
}

.app-blob-1 {
    width: 220px;
    height: 220px;
    top: 0;
    left: 5%;
}

.app-blob-2 {
    width: 180px;
    height: 180px;
    top: 10%;
    right: 0;
}

.app-blob-3 {
    width: 200px;
    height: 200px;
    bottom: 5%;
    left: 0;
}

.app-blob-4 {
    width: 160px;
    height: 160px;
    bottom: 0;
    right: 10%;
}

.phone-frame {
    position: relative;
    z-index: 1;
    width: min(340px, 80vw);
    aspect-ratio: 340 / 680;
    height: auto;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(32, 26, 21, 0.4);
}

.phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .app-grid {
        grid-template-columns: 1fr;
    }

    .app-visual {
        order: -1;
        min-height: 460px;
    }
}

.blog-section {
    position: relative;
    padding: 6rem 1.5rem;
    background:
        linear-gradient(rgba(25, 29, 43, 0.75), rgba(25, 29, 43, 0.75)),
        url('../img/bg ast.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.blog-wave {
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px;
    display: block;
    z-index: 0;
}

.blog-wave-top {
    top: 0;
}

.blog-wave-bottom {
    bottom: 0;
}

.blog-shape {
    position: absolute;
    left: 5%;
    width: 260px;
    height: 130px;
    border-radius: 22px;
    border: 1px solid var(--color-gray-light);
    background: var(--color-white);
    opacity: 0.6;
    z-index: 0;
}

.blog-shape-top {
    top: -60px;
    transform: rotate(-6deg);
}

.blog-shape-bottom {
    left: auto;
    right: 8%;
    bottom: -60px;
    transform: rotate(6deg);
}

.blog-container {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    text-align: center;
}

.blog-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.blog-title-accent {
    display: inline-block;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 0.05em 0.4em;
    border-radius: 8px;
}

.blog-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
    margin-bottom: 2.5rem;
}

.blog-grid .service-card {
    border-color: transparent;
}


@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.faq-section {
    padding: 6rem 1.5rem;
    background:
        linear-gradient(to bottom, #ffffff 0%, rgba(255, 255, 255, 0.6) 120px, rgba(255, 255, 255, 0.6) 100%),
        url('../img/15364601_5585459.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    max-width: 1300px;
}

.faq-image img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-brown);
    margin-bottom: 0.75rem;
}

.faq-title-accent {
    display: inline-block;
    background: var(--color-orange);
    color: var(--color-white);
    padding: 0.05em 0.4em;
    border-radius: 8px;
}

.faq-subtitle {
    color: var(--color-gray);
    font-size: 16px;
    margin-bottom: 2.5rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.faq-item {
    background: var(--color-bg-alt);
    border: 1px solid transparent;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover,
.faq-item.is-open {
    background: var(--color-white);
    border-color: var(--color-orange);
    box-shadow: 0 12px 20px -12px rgba(32, 26, 21, 0.25);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-question-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-brown);
}

.faq-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-orange);
    color: var(--color-white);
    font-size: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-item.is-open .faq-icon {
    transform: rotate(135deg);
    background: var(--color-brown);
}

.faq-answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.6;
    padding-top: 0.9rem;
}

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-image {
        order: -1;
    }

    .faq-image img {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 600px) {
    .faq-title {
        font-size: 28px;
    }
}

.testimonials {
    padding: 4.5rem 1.5rem;
    background:
        linear-gradient(rgba(244, 239, 233, 0.6), rgba(244, 239, 233, 0.6)),
        url('../img/bg ast1.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonials .container {
    max-width: 1440px;
}

.testimonials-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.avatar-stack {
    display: flex;
    align-items: center;
}

.avatar-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--color-white);
    object-fit: cover;
    display: block;
    box-shadow: 0 2px 6px rgba(32, 26, 21, 0.15);
}

.avatar-circle + .avatar-circle {
    margin-left: -12px;
}

.testimonials-divider-line {
    width: 1px;
    height: 48px;
    background: var(--color-gray-light);
}

.testimonials-score-image {
    height: 90px;
    width: auto;
}

.testimonials-score-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.testimonials-score-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-black);
}

.testimonials-score-label {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-black);
}

.star-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 0;
    background: #00b67a;
    color: var(--color-white);
    font-size: 0.65rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
}

.testimonials-stars {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.4rem;
}

.testimonials-count {
    color: var(--color-gray);
    font-size: 0.85rem;
    margin-top: 0.4rem;
}

.testimonials-carousel {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    color: var(--color-brown);
    font-size: 1rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.testimonials-arrow:hover {
    background: var(--color-brown);
    color: var(--color-white);
}

.testimonials-track {
    display: flex;
    flex: 1;
    min-width: 0;
    gap: 1.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.25rem 0.25rem 1rem;
    scrollbar-width: none;
}

.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    border-right: 1px solid var(--color-gray-light);
    padding: 0 1.75rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.testimonial-card:last-child {
    border-right: none;
}

.testimonial-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-black);
}

.testimonial-text {
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
}

.testimonial-divider {
    border: none;
    border-top: 1px solid var(--color-gray-light);
    width: 100%;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-who {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-gray);
}

.testimonial-time {
    font-size: 0.78rem;
    color: var(--color-gray);
}

.testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #00b67a;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.testimonials-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.testimonials-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

@media (max-width: 640px) {
    .testimonials-arrow {
        display: none;
    }

    .testimonials-badge {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonials-divider-line {
        display: none;
    }

    .testimonial-card {
        flex-basis: 260px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: start;
    max-width: 1440px;
}

.contact-lead {
    color: var(--color-gray);
    font-size: 15px;
    line-height: 1.6;
    max-width: 420px;
    margin: 1rem 0 2rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
}

.contact-info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-black);
    font-size: 15px;
}

.contact-info-list i {
    width: 20px;
    color: var(--color-orange);
    font-size: 18px;
}

.contact-info-list a {
    color: var(--color-black);
    text-decoration: none;
}

.contact-info-list a:hover {
    color: var(--color-orange);
}

@media (max-width: 800px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-card {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    border: 1px solid var(--color-gray-light);
    border-radius: 22px;
    padding: 2.75rem 5rem;
}

.form-alert {
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.form-alert-success {
    background: #e6f4ea;
    color: #1e4620;
    border: 1px solid #b7dfc0;
}

.form-alert-error {
    background: #fdecea;
    color: #611a15;
    border: 1px solid #f5c6c2;
}

.contact-form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-brown);
}

.contact-form-subtitle {
    color: var(--color-gray);
    font-size: 14px;
    margin-top: -0.8rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.contact-form-card label,
.booking-wizard label {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    color: var(--color-gray);
    font-weight: 500;
    font-size: 14px;
}

.contact-form-optional {
    font-weight: 400;
    opacity: 0.7;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea,
.booking-wizard input,
.booking-wizard select,
.booking-wizard textarea {
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    color: var(--color-black);
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus,
.booking-wizard input:focus,
.booking-wizard select:focus,
.booking-wizard textarea:focus {
    outline: none;
    border-color: var(--color-orange);
}

.contact-form-checkbox {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0.6rem !important;
    font-size: 13px;
}

.contact-form-checkbox input {
    margin-top: 0.2rem;
}

.contact-form-checkbox a {
    color: var(--color-orange);
}

.contact-form-submit {
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

@media (max-width: 500px) {
    .contact-form-row {
        grid-template-columns: 1fr;
    }
}

.booking-page-hero {
    padding: 6rem 1.5rem 4rem;
    background:
        linear-gradient(rgba(25, 29, 43, 0.6), rgba(25, 29, 43, 0.6)),
        url('../img/hero1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.booking-page-hero .container {
    max-width: 1440px;
}

.booking-page-hero-title {
    color: var(--color-white);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 700px;
}

.booking-page-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    max-width: 560px;
    margin-top: 1rem;
}

.booking-note {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: var(--color-bg-alt);
    border-radius: 14px;
    padding: 1.1rem 1.3rem;
    margin-bottom: 1rem;
}

.booking-note i {
    color: var(--color-orange);
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.booking-note p {
    font-size: 13px;
    color: var(--color-gray);
    line-height: 1.5;
}

.booking-notes {
    max-width: 900px;
    margin: 2.5rem auto 0;
}

.booking-wizard-container {
    max-width: 1000px;
}

.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.booking-progress-step {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    opacity: 0.45;
}

.booking-progress-step.is-active,
.booking-progress-step.is-done {
    opacity: 1;
}

.booking-progress-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    color: var(--color-brown);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.booking-progress-step.is-active .booking-progress-number,
.booking-progress-step.is-done .booking-progress-number {
    background: var(--color-orange);
    color: var(--color-white);
}

.booking-progress-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-brown);
}

.booking-progress-line {
    width: 50px;
    height: 1px;
    background: var(--color-gray-light);
}

.booking-step {
    display: none;
}

.booking-step.is-active {
    display: block;
}

.booking-step h2 {
    color: var(--color-brown);
    margin-bottom: 0.4rem;
}

.booking-step-subtitle {
    color: var(--color-gray);
    font-size: 14px;
    margin-bottom: 2rem;
}

.booking-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.booking-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    padding: 1.5rem 1rem;
    border: 1px solid var(--color-gray-light);
    border-radius: 14px;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.booking-service-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.booking-service-card:has(input:checked) {
    border-color: var(--color-orange);
    background: var(--color-bg-alt);
}

.booking-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    color: var(--color-orange);
    font-size: 1.1rem;
}

.booking-service-card:has(input:checked) .booking-service-icon {
    background: var(--color-orange);
    color: var(--color-white);
}

.booking-service-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-brown);
}

.booking-dates {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.booking-date-pill {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-gray-light);
    border-radius: 14px;
    cursor: pointer;
    background: none;
    font-family: inherit;
}

.booking-date-pill .booking-date-day {
    font-size: 11px;
    color: var(--color-gray);
    text-transform: uppercase;
}

.booking-date-pill .booking-date-num {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-brown);
}

.booking-date-pill.is-selected {
    border-color: var(--color-orange);
    background: var(--color-orange);
}

.booking-date-pill.is-selected .booking-date-day,
.booking-date-pill.is-selected .booking-date-num {
    color: var(--color-white);
}

.booking-times {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.booking-time-slot {
    padding: 0.7rem;
    border: 1px solid var(--color-gray-light);
    border-radius: 10px;
    background: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-brown);
    cursor: pointer;
}

.booking-time-slot.is-selected {
    border-color: var(--color-orange);
    background: var(--color-orange);
    color: var(--color-white);
}

.booking-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    background: var(--color-bg-alt);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 14px;
    color: var(--color-brown);
    font-weight: 600;
}

.booking-summary span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.booking-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}

.booking-confirmation {
    text-align: center;
    padding: 3rem 1.5rem;
}

.booking-confirmation i {
    font-size: 3rem;
    color: #2e9e5b;
    margin-bottom: 1rem;
}

.booking-confirmation h2 {
    color: var(--color-brown);
    margin-bottom: 0.5rem;
}

.booking-confirmation p {
    color: var(--color-gray);
}

@media (max-width: 700px) {
    .booking-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .booking-progress-label {
        display: none;
    }
}

.blog-page-hero {
    padding: 6rem 1.5rem;
    text-align: center;
    background:
        linear-gradient(rgba(25, 29, 43, 0.6), rgba(25, 29, 43, 0.6)),
        url('../img/abstrat.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-page-hero .container {
    max-width: 1440px;
}

.blog-page-hero-title {
    color: var(--color-white);
    font-size: 48px;
    font-weight: 800;
}

.blog-page-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    max-width: 560px;
    margin: 1rem auto 0;
}

.blog-page-grid-container {
    max-width: 1440px;
}

.blog-page-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
    .blog-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-page-grid {
        grid-template-columns: 1fr;
    }
}

.article-hero {
    padding: 5rem 1.5rem 3rem;
    background:
        linear-gradient(rgba(25, 29, 43, 0.65), rgba(25, 29, 43, 0.65)),
        url('../img/abstrat.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.article-hero-inner {
    max-width: 900px;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 1.5rem;
}

.article-category {
    margin-bottom: 1rem;
}

.article-title {
    color: var(--color-white);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.article-container {
    max-width: 800px;
}

.article-image img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 18px;
    margin-bottom: 2.5rem;
}

.article-body h2 {
    color: var(--color-brown);
    font-size: 1.4rem;
    margin: 2.25rem 0 1rem;
}

.article-body p {
    color: var(--color-black);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.article-cta {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--color-bg-alt);
    border-radius: 18px;
    text-align: center;
}

.article-cta h2 {
    color: var(--color-brown);
    margin-bottom: 0.5rem;
}

.article-cta p {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.article-related {
    background: var(--color-bg-alt);
}

.article-related h2 {
    text-align: center;
    color: var(--color-brown);
    margin-bottom: 2.5rem;
}

.site-footer {
    background: var(--color-black);
    color: var(--color-gray-light);
    padding: 2rem 1.5rem 1rem;
    font-size: 0.92rem;
}

.site-footer .container {
    max-width: 1440px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 1rem;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    display: block;
    margin-bottom: 0.6rem;
}

.footer-tagline {
    color: var(--color-gray-light);
    max-width: 320px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-legal-mini {
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.75;
    color: var(--color-gray);
    font-size: 0.78rem;
    line-height: 1.6;
    max-width: 360px;
}

.footer-col h3 {
    position: relative;
    display: inline-block;
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--color-orange);
}

.footer-col p {
    margin-bottom: 0.65rem;
    line-height: 1.5;
}

.footer-col-links {
    padding-top: 0.2rem;
}

.footer-col-links p {
    margin-bottom: 1rem;
}

.footer-col-links a {
    color: var(--color-white);
    font-weight: 700;
    font-size: 0.95rem;
}

.footer-col a {
    color: var(--color-gray-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--color-orange);
}

.footer-social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.85rem;
    transition: background-color 0.2s ease;
}

.footer-social-icons a:hover {
    background: var(--color-orange);
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.25rem;
}

.footer-bottom {
    padding-top: 0.5rem;
}

.footer-bottom-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    color: var(--color-gray);
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: var(--color-gray);
    font-size: 0.8rem;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--color-orange);
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-middle {
        flex-direction: column;
        align-items: flex-start;
    }
}

.floating-actions {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    z-index: 60;
}

.fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(32, 26, 21, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(32, 26, 21, 0.34);
}

.fab-whatsapp {
    width: 64px;
    height: 64px;
    background: #25d366;
    color: var(--color-white);
    font-size: 1.9rem;
}

.fab-back-top {
    background: var(--color-brown);
    color: var(--color-white);
    font-size: 1.05rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.fab-back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-back-top.is-visible:hover {
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    .floating-actions {
        right: 1rem;
        bottom: 1rem;
        gap: 0.6rem;
    }

    .fab {
        width: 46px;
        height: 46px;
    }

    .fab-whatsapp {
        width: 58px;
        height: 58px;
        font-size: 1.7rem;
    }

    .fab-back-top {
        font-size: 0.95rem;
    }
}

/* ============================================================
   Allineamento a sinistra su mobile/tablet (invece di centrato)
   ============================================================ */
@media (max-width: 900px) {
    .about-value {
        align-items: flex-start;
    }

    .about-values-grid {
        justify-items: start;
    }

    section:has(> .container) {
        padding-left: 0;
        padding-right: 0;
    }

    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .contact-form-card {
        padding: 2rem 1.5rem;
    }
}
