:root {
    --c-dark: #15151a;
    --c-dark-2: #1d1d24;
    --c-red: #e51f27;
    --c-red-dark: #c4171e;
    --c-light: #f7f7f9;
    --c-white: #ffffff;
    --c-text-muted: #8b8b93;
    --c-border: #2a2a31;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow-soft: 0 20px 45px -20px rgba(0, 0, 0, .25);
    --font-head: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: #333;
    overflow-x: hidden;
    background: var(--c-white);
}

/* html,
body {
    overflow-x: hidden;
    max-width: 100%;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    font-weight: 700;
    color: #17171c;
    margin: 0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

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

.text-accent {
    color: var(--c-red) !important;
}

.eyebrow {
    color: var(--c-red);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.88rem;
    margin-bottom: .6rem;
}

.eyebrow-light {
    color: #ffd6d6;
}

.section-heading h2 {
    font-size: 2.1rem;
    line-height: 1.3;
}

.section-heading {
    margin-bottom: 1rem;
}

.btn-accent,
.btn-book-now {
    background: var(--c-red);
    border: 1px solid var(--c-red);
    color: #fff;
    font-weight: 600;
    transition: all var(--transition);
}

.btn-book-now {
    font-size: 14px !important;
}

.btn-accent:hover,
.btn-book-now:hover {
    background: var(--c-red-dark);
    border-color: var(--c-red-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(229, 31, 39, .55);
}

.btn-light:hover {
    transform: translateY(-2px);
}

/* =====================================================
     SCROLL REVEAL ANIMATION (driven by main.js)
     ===================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1);
}

.reveal-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

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

    .floaty {
        animation: none !important;
    }
}

/* =====================================================
     HEADER / NAVBAR
     ===================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

#mainNavbar {
    background: var(--c-dark);
    padding: 5px 0;
    transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}

#mainNavbar.scrolled {
    padding: 10px 0;
    background: rgba(21, 21, 26, .97);
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, .5);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
}

.brand-logo {
    width: 100px;
    height: auto;
    display: block;
    object-fit: contain;
}

.brand-icon {
    color: var(--c-red);
    font-size: 1.4rem;
}

.main-nav .nav-link {
    color: #d8d8dd;
    font-weight: 500;
    padding: .5rem 1.2rem !important;
    position: relative;
}

.nav-link.dropdown-toggle::after {
    margin-left: 0.655em !important;
}

.main-nav .nav-link.active,
.main-nav .nav-link:hover {
    color: #fff;
}

.main-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0;
    height: 2px;
    background: var(--c-red);
    border-radius: 2px;
}

.main-nav .dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    padding: .5rem;
}

.main-nav .dropdown-item {
    border-radius: 6px;
    padding: .5rem .9rem;
}

.main-nav .dropdown-item:hover {
    background: var(--c-red);
    color: #fff;
}

.icon-link {
    color: #fff;
    font-size: 1.1rem;
}

.icon-link:hover {
    color: var(--c-red);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--c-red);
    color: #fff;
    font-size: .65rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-modal-content {
    border-radius: var(--radius-md);
    border: none;
}

/* =====================================================
     HERO
     ===================================================== */
.hero-section {
    background: radial-gradient(circle at 80% 20%, #1e1e26 0%, var(--c-dark) 60%);
    padding: 70px 0 20px 0;
    position: relative;
    overflow: hidden;
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .5;
    pointer-events: none;
}

.hero-text {
    position: relative;
    z-index: 2;
    padding: 30px 0 60px;
}

.hero-title {
    color: #fff;
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-desc {
    color: #b4b4bc;
    max-width: 460px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-image-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-image {
    border-radius: var(--radius-lg);
}

.floaty {
    animation: floaty 4.5s ease-in-out infinite;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

.booking-bar {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 25px 60px -20px rgba(0, 0, 0, .35);
    padding: 26px 30px;
    transform: translateY(40%);
    position: relative;
    z-index: 3;
}

.booking-label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    color: #9a9aa2;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}

.booking-input {
    border: none;
    border-bottom: 2px solid #eee;
    border-radius: 0;
    padding-left: 0;
    font-weight: 600;
}

.booking-input:focus {
    box-shadow: none;
    border-color: var(--c-red);
}

.booking-submit {
    height: 46px;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.3rem;
    }

    .booking-bar {
        transform: translateY(20px);
        margin-bottom: 20px;
    }
}

/* =====================================================
     FEATURES
     ===================================================== */
.features-section {
    padding: 130px 0 70px;
    background: var(--c-light);
}

@media (max-width: 991.98px) {
    .features-section {
        padding-top: 60px;
    }
}

.feature-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 40px 26px;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 55px -20px rgba(229, 31, 39, .25);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--c-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}

.feature-card h5 {
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--c-text-muted);
    font-size: .92rem;
}

.stats-row {
    margin-top: 20px;
}

.stat-box {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 26px 10px;
    box-shadow: 0 10px 30px -20px rgba(0, 0, 0, .15);
}

.stat-box h3 {
    display: inline-block;
    font-size: 2.1rem;
    color: var(--c-dark);
}

.stat-box span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--c-dark);
}

.stat-box p {
    color: var(--c-text-muted);
    font-size: .85rem;
    margin-top: 4px;
}

/* =====================================================
     ABOUT
     ===================================================== */
.about-section {
    padding: 90px 0;
    background: #fff;
}

.about-image-wrap {
    position: relative;
}

/* .about-image-wrap::before {
    content: "";
    position: absolute;
    top: -18px;
    left: -18px;
    width: 70px;
    height: 70px;
    border: 6px solid var(--c-red);
    border-radius: 12px;
    z-index: -1;
} */

.section-title {
    font-size: 2rem;
    margin-bottom: 18px;
    line-height: 1.3;
}

.text-muted-2 {
    color: var(--c-text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #444;
    margin-bottom: 12px;
    font-weight: 500;
}

.check-list i {
    color: var(--c-red);
    margin-top: 3px;
}

.call-us {
    display: flex;
    align-items: center;
    gap: 12px;
}

.call-us i {
    width: 46px;
    height: 46px;
    background: var(--c-light);
    color: var(--c-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.call-us small {
    display: block;
    color: var(--c-text-muted);
    font-size: .78rem;
}

.call-us strong {
    color: var(--c-red);
    font-size: 1.05rem;
}

/* =====================================================
     SERVICES
     ===================================================== */
.services-section {
    padding: 90px 0;
    background: var(--c-light);
}

.service-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition);
    height: 100%;
}

.service-img {
    overflow: hidden;
}

.service-img img {
    transition: transform .4s var(--transition);
    width: 100%;
}

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

.service-body {
    padding: 24px;
}

.service-body h5 {
    margin-bottom: 10px;
}

.service-body p {
    color: var(--c-text-muted);
    font-size: .9rem;
    margin-bottom: 14px;
}

.read-more {
    color: var(--c-red);
    font-weight: 600;
    font-size: .9rem;
}

.read-more i {
    transition: transform var(--transition);
    display: inline-block;
}

.read-more:hover i {
    transform: translateX(4px);
}

.read-more:hover {
    color: var(--c-red-dark);
}

.services-carousel-wrap {
    position: relative;
    padding: 0 50px;
}

.services-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

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

.services-track {
    scrollbar-width: none;
}

.service-card-wrap {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
}

.services-carousel-wrap .carousel-control-prev,
.services-carousel-wrap .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    opacity: 1;
}

.services-carousel-wrap .carousel-control-prev {
    left: 0;
}

.services-carousel-wrap .carousel-control-next {
    right: 0;
}

@media (max-width: 991.98px) {
    .service-card-wrap {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 575.98px) {
    .service-card-wrap {
        flex: 0 0 85%;
    }

    .services-carousel-wrap {
        padding: 0 40px;
    }
}

.carousel-arrow {
    width: 44px;
    height: 44px;
    background: #fff;
    color: var(--c-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: background var(--transition), color var(--transition);
}

.carousel-arrow:hover {
    background: var(--c-red);
    color: #fff;
}


/* =====================================================
     VIDEO
     ===================================================== */
.video-section {
    padding: 90px 0;
    background: var(--c-dark);
}

.video-section h2,
.video-section .eyebrow {
    color: #fff;
}

.video-section .eyebrow {
    color: var(--c-red);
}

.video-thumb {
    position: relative;
    margin-top: 40px;
    cursor: pointer;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    background: var(--c-red);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0 0 0 rgba(229, 31, 39, .6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 31, 39, .55);
    }

    70% {
        box-shadow: 0 0 0 26px rgba(229, 31, 39, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(229, 31, 39, 0);
    }
}

/* =====================================================
     PRICING
     ===================================================== */
.pricing-section {
    padding: 90px 0;
    background: #fff;
}

.price-card {
    background: var(--c-light);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    height: 100%;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
}

.price-card-featured {
    background: var(--c-dark);
    color: #fff;
    transform: scale(1.04);
}

.price-card-featured:hover {
    transform: scale(1.04) translateY(-8px);
}

.price-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--c-red);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.price-amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--c-red);
    margin-bottom: 4px;
}

.price-card-featured .price-amount {
    color: #fff;
}

.price-name {
    font-weight: 600;
    color: var(--c-text-muted);
    margin-bottom: 24px;
}

.price-card-featured .price-name {
    color: #d8d8dd;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    text-align: left;
}

.price-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px dashed #e2e2e6;
    font-weight: 500;
}

.price-card-featured .price-list li {
    border-bottom-color: rgba(255, 255, 255, .12);
}

.price-list li.disabled {
    color: #b7b7bd;
}

.price-list li i.text-accent {
    color: var(--c-red);
}

.price-card-featured .price-list li i:not(.text-accent) {
    color: var(--c-red);
}

.plan-desc{
    color: inherit;
    padding: 0;
    margin: 0 0 26px;
    text-align: left;
}

/* =====================================================
     WORKSHOP / BEFORE-AFTER
     ===================================================== */
.workshop-section {
    padding: 90px 0;
    background: var(--c-light);
}

.workshop-feature {
    display: flex;
    gap: 18px;
    margin-top: 26px;
}

.workshop-icon {
    min-width: 56px;
    height: 56px;
    background: var(--c-red);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.workshop-feature h6 {
    margin-bottom: 6px;
}

.workshop-feature p {
    color: var(--c-text-muted);
    font-size: .9rem;
    line-height: 1.7;
}

.ba-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 3/1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    user-select: none;
}

.ba-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-after {
    position: absolute;
    inset: 0;
}

.ba-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-after {
    position: absolute;
    inset: 0;
}

.ba-before {
    position: absolute;
    inset: 0;
    clip-path: inset(0 50% 0 0);
    /* initial 50/50 split */
}

.ba-before img {
    width: 100%;
    height: 100%;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 44px;
    margin-left: -22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: ew-resize;
}

.ba-handle::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    transform: translateX(-50%);
}

.ba-handle i {
    position: relative;
    z-index: 2;
    width: 42px;
    height: 42px;
    background: #fff;
    color: var(--c-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

/* =====================================================
     NEWSLETTER
     ===================================================== */
.newsletter-section {
    padding: 0 0 90px;
    margin-top: -1px;
}

.newsletter-box {
    background: linear-gradient(120deg, var(--c-red) 0%, var(--c-red-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 46px 44px;
    position: relative;
    overflow: hidden;
}

.newsletter-box::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.newsletter-box h3 {
    color: #fff;
    font-size: 1.7rem;
}

.newsletter-form .form-control {
    border: none;
    height: 52px;
    border-radius: 8px;
}

.newsletter-form .btn {
    height: 52px;
    font-weight: 700;
    border-radius: 8px;
}

/* =====================================================
     TESTIMONIALS
     ===================================================== */
.testimonial-section {
    padding: 90px 0;
    background: var(--c-dark);
}

.testimonial-section h2,
.testimonial-section .eyebrow {
    color: #fff;
}

.testimonial-section .eyebrow {
    color: var(--c-red);
}

.testimonial-card {
    background: var(--c-dark-2);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-md);
    padding: 32px;
    height: 100%;
}

.testimonial-card p {
    color: #c6c6cd;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: #fff;
}

.testimonial-author small {
    color: var(--c-text-muted);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #45454f;
    padding: 0;
    transition: background var(--transition), width var(--transition);
}

.carousel-dots button.active {
    background: var(--c-red);
    width: 26px;
    border-radius: 6px;
}

/* =====================================================
     BLOG
     ===================================================== */
.blog-section {
    padding: 90px 0;
    background: #fff;
}

.blog-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-img {
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    transition: transform .6s var(--transition);
}

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-body {
    padding: 24px;
}

.blog-meta {
    color: var(--c-text-muted);
    font-size: .78rem;
    margin-bottom: 12px;
}

.blog-body h5 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-body p {
    color: var(--c-text-muted);
    font-size: .88rem;
    margin-bottom: 14px;
}

/* =====================================================
     FOOTER
     ===================================================== */
.site-footer {
    background: var(--c-dark);
    padding: 80px 0 0;
    position: relative;
}

.footer-top {
    padding-bottom: 50px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-about {
    color: var(--c-text-muted);
    font-size: .9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--c-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.social-links a:hover {
    background: var(--c-red);
    border-color: var(--c-red);
    transform: translateY(-3px);
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 22px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--c-text-muted);
    font-size: .92rem;
}

.footer-links a:hover {
    color: var(--c-red);
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--c-text-muted);
    font-size: .9rem;
    margin-bottom: 14px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--c-red);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid var(--c-border);
    padding: 22px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    color: var(--c-text-muted);
    font-size: .85rem;
}

.footer-legal {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.footer-legal a:hover {
    color: var(--c-red);
}

.back-to-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--c-red);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 26px -8px rgba(229, 31, 39, .6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition);
    z-index: 1040;
}

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

.back-to-top:hover {
    background: var(--c-red-dark);
}

/* =====================================================
     RESPONSIVE ADJUSTMENTS
     ===================================================== */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .section-heading h2,
    .video-section h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-section,
    .services-section,
    .video-section,
    .pricing-section,
    .workshop-section,
    .testimonial-section,
    .blog-section {
        padding: 55px 0;
    }

    .features-section {
        padding-bottom: 40px;
    }

    .newsletter-box {
        padding: 32px 24px;
        text-align: center;
    }

    .newsletter-form {
        margin-top: 16px;
    }

    .price-card-featured {
        transform: none;
    }

    .price-card-featured:hover {
        transform: translateY(-8px);
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding-top: 20px;
    }

    .booking-bar {
        padding: 20px;
    }
}