@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/* RESET & BASE */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

button {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: 0.3s ease-in-out;
    text-transform: uppercase;
    font-family: "Poppins";
}


/* HEADER & NAVIGATION */

.header {
    background-color: #ffffff !important;
    padding: 0 35px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0 30px;
}

.header.scrolled .navbar {
    padding: 8px 15px;
}

.header.scrolled .navbar img {
    height: 50px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.navbar img {
    height: 65px;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 50px;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: hsl(0, 27%, 8%);
    font-family: "Poppins";
    font-size: 16px;
}

nav a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
}

.btn-contact {
    background: hsl(0, 27%, 8%);
    color: hsl(0, 0%, 100%);
    padding: 8px 26px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    font-family: "Poppins";
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-contact:hover {
    background: hsl(0, 33%, 65%);
    box-shadow: 0 10px 28px rgba(196, 138, 138, 0.35);
}

.hamburger {
    display: none;
}

/* Mobile-only nav item (Contact in hamburger menu) */
.mobile-only {
    display: none;
}

/* discount belt */
.discount {
    height: 40px;
    background-color: rgb(211, 71, 71);
    display: flex;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
}

.discount-track {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marquee 25s linear infinite;
    will-change: transform;
}

.discount-track h5 {
    font-family: 'Times New Roman', Times, serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
    color: hsl(0, 0%, 100%);
    white-space: nowrap;
    padding: 0 30px;
    flex-shrink: 0;
} 

.discount-track .sep {
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
    padding: 0 10px;
    user-select: none;
}

@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .discount {
        height: 36px;
    }

    .discount-track h5 {
        font-size: 12px;
        padding: 0 20px;
        letter-spacing: 1.5px;
    }
}

/* HERO */

.hero {
    background-color: #FCE9E1;
    width: 100%;
    height: 110vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px 55px;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-text {
    width: 55%;
    position: absolute;
    top: 110px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 70px;
    font-family: "Playfair Display";
    /*margin-bottom: 20px;*/
}

.hero-content p {
    margin-bottom: 25px;
    font-family: "Poppins";
    font-weight: 400;
    color: hsl(0, 0%, 20%);
    line-height: 30px;
}

.hero img {
    position: absolute;
    height: 100%;
    right: 2%;
    top: 0;/*
    border: 2px solid red;*/
}

.btn-book {
    background: hsl(0, 27%, 8%);
    color: hsl(0, 0%, 100%);
    border: none;
    cursor: pointer;
    padding: 15px 25px;
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-family: "Poppins";
    transition: 0.3s ease;
    text-decoration: none;
    max-width: 245px;
}

.btn-book:hover {
    background: hsl(0, 33%, 65%);
    box-shadow: 0 10px 28px rgba(196, 138, 138, 0.35);
}


/* ABOUT */

.about {
    padding: 120px 130px;
    background: hsl(0, 0%, 100%);
}

.about-wrapper {
    display: flex;
    gap: 120px;
    width: 100%;
}

.about-image {
    position: relative;
    width: 40%;
}

.about-image img {
    width: 100%;
    display: block;
    border: 8px solid hsl(0, 0%, 100%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

/* Pink offset square behind image */
.image-bg {
    position: absolute;
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 10px solid #FCEBE5;
    top: 30px;
    left: 30px;
    z-index: 1;
}

.about-text {
    width: 51%;
    margin-top: 30px;
}

.about-text h2 {
    font-size: 40px;
    color: hsl(0, 27%, 8%);
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-family: "Playfair Display";
    font-weight: 500;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: hsl(0, 0%, 20%);
    font-family: "Poppins";
    font-size: 16px;
    width: 90%;
}

.about-text a {
    color: hsl(0, 27%, 8%);
    cursor: pointer;
    text-decoration: underline;
}

.learn-more-btn {
    padding: 8px 26px;
    background-color: hsl(0, 27%, 8%);
    color: hsl(0, 0%, 100%);
    border: none;
    font-size: 15px;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.learn-more-btn:hover {
    cursor: pointer;
    background: #C48A8A;
}

.learn-more-btn .arrow {
    font-size: 12px;
}


/* WHY CHOOSE US */

.choose-us {
    display: none;
    flex-direction: column;
    align-items: center;
    margin-top: 120px;
}

.choose-us h2 {
    font-size: 40px;
    font-weight: 500;
    font-family: "Playfair Display";
    margin-bottom: 25px;
    color: hsl(0, 27%, 8%);
}

.choose-us p {
    width: 65%;
    font-family: "Poppins";
    font-size: 17px;
    text-align: center;
    line-height: 25px;
    color: hsl(0, 0%, 40%);
    margin-bottom: 40px;
}

.choose-us .container {
    padding: 10px;
    display: flex;
    gap: 35px;
    width: 100%;
    margin-bottom: 20px;
}

.choose-us .card {
    width: 25%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: hsl(0, 70%, 96%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
}

.choose-us img {
    width: 80px;
    margin-bottom: 10px;
}

.choose-us h4 {
    font-size: 20px;
    font-family: "Poppins";
    font-weight: 450;
}

.choose-us .card p {
    font-size: 14px;
    width: 100%;
    text-align: center;
    margin-top: 5px;
    color: hsl(0, 0%, 25%);
}


/* SERVICES */

.services {
    padding: 80px 120px;
    background-color: #FCEBE5;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-size: 40px;
    font-weight: 500;
    font-family: "Playfair Display";
    color: hsl(0, 27%, 8%);
}

.btn-services {
    background: hsl(0, 27%, 8%);
    color: hsl(0, 0%, 100%);
    border: none;
    padding: 15px 25px;
    font-size: 15px;
    text-decoration: none;
    font-family: "Poppins";
    transition: 0.3s ease-in-out;
    text-transform: uppercase;
}

.btn-services:hover {
    background: hsl(0, 33%, 65%);
    box-shadow: 0 10px 28px rgba(196, 138, 138, 0.35);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 30px;
}

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card {
    background: transparent;
    overflow: hidden;
    transition: 0.3s ease;
}

.service-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
}

.card-content p {
    font-size: 20px;
    font-weight: 400;
    font-family: "Poppins";
    text-transform: uppercase;
}

.card-content span {
    border: 1px solid hsl(0, 27%, 8%);
    padding: 8px 10px;
    font-size: 14px;
}

.card-content span:hover {
    color: hsl(0, 0%, 100%);
    background-color: hsl(0, 27%, 8%);
}


/* GALLERY */

.gallery {
    padding: 60px 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: hsl(0, 0%, 100%);
}

.gallery-header {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}

.gallery-header h3 {
    width: 40%;
    font-size: 40px;
    font-family: "Playfair Display";
    font-weight: 500;
    line-height: 55px;
    color: hsl(0, 27%, 8%);
}

.gallery-header p {
    width: 45%;
    font-family: "Poppins";
    font-size: 17px;
    margin-left: auto;
    line-height: 25px;
    color: hsl(0, 0%, 40%);
}

.grid {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.left-cards,
.right-cards {
    width: 100%;
}

.grid .card {
    text-decoration: none;
    color: hsl(0, 0%, 0%);
    font-family: "Poppins";
}

.card-info {
    transition: 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-info:hover {
    transform: translateY(-5px);
}

.left-cards .card:nth-child(1) img {
    width: 100%;
    aspect-ratio: 5 / 4;
}

.left-cards .card:nth-child(2) img {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 20px;
}

.right-cards .card:nth-child(1) img {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.right-cards .card:nth-child(2) img {
    width: 100%;
    aspect-ratio: 5 / 4;
    margin-top: 20px;
}

.card-details {
    display: flex;
    justify-content: space-between;
    padding: 15px 10px;
}

.card-details p {
    font-size: 20px;
    font-weight: 400;
    font-family: "Poppins";
    text-transform: uppercase;
}

.card-details span {
    border: 1px solid #000;
    padding: 5px 10px;
    font-size: 14px;
    background-color: hsl(0, 0%, 0%);
    color: hsl(0, 0%, 100%);
}

.card-details span:hover {
    background-color: hsl(0, 0%, 100%);
    color: hsl(0, 0%, 0%);
}

.btn-gallery {
    background: hsl(0, 27%, 8%);
    color: hsl(0, 0%, 100%);
    border: none;
    padding: 15px 30px;
    font-size: 15px;
    font-family: "Poppins";
    transition: 0.3s ease-in-out;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-gallery:hover {
    background: hsl(0, 33%, 65%);
    box-shadow: 0 10px 28px rgba(196, 138, 138, 0.35);
}


/* REVIEWS */

.reviews {
    background: #FCEBE5;
    padding: 100px 0 80px;
    overflow: hidden;
}

.reviews-header {
    text-align: center;
    padding: 0 60px;
    margin-bottom: 60px;
}

.reviews-header .eyebrow-row {
    margin-bottom: 20px;
}

.reviews .eyebrow-line {
    background: hsl(0, 27%, 8%);
}

.reviews .eyebrow-row p {
    color: hsl(0, 27%, 8%);
}

.reviews-header h2 {
    font-family: "Playfair Display";
    font-size: 46px;
    font-weight: 500;
    color: hsl(0, 27%, 8%);
    margin-bottom: 16px;
    line-height: 1.2;
}

.reviews-sub {
    font-family: "Poppins";
    font-size: 15px;
    color: hsl(0, 0%, 40%);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.75;
}

.reviews-track-wrapper {
    padding: 0 60px;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.review-card {
    flex: 0 0 340px;
    background: #F4D7CE;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: hsl(0, 33%, 65%);
    transition: width 0.4s ease;
}

.review-card:hover::before {
    width: 100%;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(196, 138, 138, 0.3);
}

.review-card.featured {
    background: rgba(196, 138, 138, 0.12);
    border-color: rgba(196, 138, 138, 0.25);
}

.review-card.featured::before {
    width: 100%;
}

.review-stars {
    font-size: 16px;
    color: hsl(0, 0%, 15%);
    letter-spacing: 3px;
}

.review-text {
    font-family: "Poppins";
    font-size: 14px;
    line-height: 1.8;
    color: hsl(0, 0%, 15%);
    flex: 1;
    margin: 0;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid hsl(0, 0%, 50%);
    padding-top: 20px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: hsl(0, 33%, 65%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display";
    font-size: 18px;
    color: hsl(0, 0%, 100%);
    flex-shrink: 0;
}

.reviewer h5 {
    font-family: "Poppins";
    font-size: 13px;
    font-weight: 600;
    color: hsl(0, 0%, 15%);
    margin-bottom: 3px;
}

.reviewer span {
    font-family: "Poppins";
    font-size: 11px;
    color: hsl(0, 0%, 25%);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.reviews-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: none;
    padding: 0;
}

.reviews-dots .dot.active {
    background: #C48A8A;
    transform: scale(1.3);
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.reviews-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid hsl(0, 27%, 8%);
    background: transparent;
    color: hsl(0, 27%, 8%);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
    box-shadow: none;
    border-radius: 0;
}

.reviews-arrow:hover {
    background: hsl(0, 27%, 8%);
    color: #FCEBE5;
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 70px;
    border-top: 1px solid rgba(97, 97, 97, 0.288);
    padding-top: 50px;
    padding-bottom: 10px;
    flex-wrap: wrap;
}

.summary-score {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 50px;
}

.score-number {
    font-family: "Playfair Display";
    font-size: 56px;
    font-weight: 300;
    color: hsl(0, 27%, 8%);
    line-height: 1;
}

.score-stars {
    font-size: 18px;
    color: hsl(0, 27%, 8%);
    letter-spacing: 3px;
    margin-bottom: 4px;
}

.summary-score p,
.summary-stat p {
    font-family: "Poppins";
    font-size: 11px;
    color: hsl(0, 27%, 8%);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
}

.summary-divider {
    width: 1px;
    height: 50px;
    background: rgba(97, 97, 97, 0.288);
    flex-shrink: 0;
}

.summary-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 50px;
}

.summary-stat span {
    font-family: "Playfair Display";
    font-size: 36px;
    font-weight: 400;
    color: hsl(0, 27%, 8%);
    line-height: 1;
}


/* CONTACT */

.contact {
    width: 100%;
}

.contact-container {
    display: flex;
    height: 100%;
}

.contact-left {
    width: 50%;
    background-color:#F4D7CE;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left h1 {
    color: hsl(0, 27%, 8%);
    font-size: 48px;
    font-weight: 500;
    font-family: "Playfair Display";
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
    font-family: "Poppins";
}

.contact-info a {
    text-decoration: none;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.contact-info h4 {
    color: hsl(0, 27%, 8%);
    margin-bottom: 5px;
}

.contact-info p {
    color: #66483b;
    text-decoration: underline;
}

.contact-info img {
    width: 20px;
    height: 20px;
}

.social h4 {
    color: hsl(0, 0%, 0%);
    font-family: "Poppins";
    margin-bottom: 10px;
}

.icons {
    display: flex;
}

.icons img {
    width: 20px;
}

.icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    background-color: #C48A8A;
    color: white;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.3s;
}

.icons a:hover {
    scale: 1.1;
}

.contact-right {
    width: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* FOOTER */

.footer {
    background: hsl(0, 27%, 8%);
    color: hsl(0, 0%, 80%);
    padding: 60px 8% 20px;
    font-family: 'Poppins';
    font-size: 14px;
}

.footer-container {
    display: flex;
    gap: 50px;
}

.col-brand {
    width: 35%;
}

.col-brand .logo img {
    width: 150px;
}

.col-brand p {
    line-height: 1.6;
    font-size: 13px;
    color: hsl(0, 0%, 70%);
}

.col-brand .socials {
    display: flex;
}

.col-brand .socials img {
    width: 25px;
    height: 25px;
    padding: 3px;
    border-radius: 5px;
    background-color: hsl(0, 0%, 100%);
}

.footer-container h3 {
    color: hsl(0, 0%, 100%);
    font-family: "Poppins";
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 19px;
}

.footer-container ul {
    list-style: none;
    padding: 0;
}

.footer-container ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-container ul li a {
    text-decoration: none;
    color: hsl(0, 0%, 70%);
    transition: 0.3s;
}

.footer-container ul li a:hover {
    color: hsl(0, 0%, 100%);
}

.hours span {
    color: hsl(0, 0%, 70%);
}

.socials {
    margin-top: 15px;
}

.socials a {
    margin-right: 10px;
    font-size: 16px;
    color: hsl(0, 0%, 70%);
    transition: 0.3s;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 13px;
}

.footer-bottom .footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links a {
    margin-left: 15px;
    color: hsl(0, 0%, 70%);
    text-decoration: none;
}

.footer-links a:hover {
    color: hsl(0, 0%, 100%);
}


/* WHATSAPP FLOAT */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease-in-out;
    border-radius: 5px;
}

.whatsapp-float img:hover {
    scale: 1.05;
}


/* SCROLL REVEAL ANIMATIONS */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* RESPONSIVE — TABLET (max-width: 1024px) */

@media (max-width: 1024px) {

    .header {
        padding: 0 20px;
    }

    nav ul {
        gap: 30px;
    }

    nav a {
        font-size: 16px;
    }

    .hero {
        padding: 0 40px;
        height: auto;
        min-height: 100vh;
        align-items: center;
    }

    .hero-content {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        padding: 60px 0;
    }

    .hero-text {
        width: 52%;
        position: static;
        top: auto;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero img {
        position: static;
        height: auto;
        width: 45%;
        right: auto;
        top: auto;
        object-fit: contain;
    }

    .about {
        padding: 80px 60px;
    }

    .about-wrapper {
        gap: 60px;
    }

    .about-image {
        width: 45%;
    }

    .about-text {
        width: 50%;
    }

    .about-text h2 {
        font-size: 34px;
    }

    .choose-us .container {
        gap: 20px;
    }

    .choose-us p {
        width: 80%;
    }

    .services {
        padding: 60px 60px;
    }

    .services-grid {
        gap: 30px;
    }

    .gallery {
        padding: 60px 60px;
    }

    .gallery-header h3 {
        font-size: 34px;
        line-height: 46px;
    }

    .contact-left {
        padding: 60px 40px;
    }

    .contact-left h1 {
        font-size: 38px;
    }

    .btn-book {
        width: 250px;
    }

    .footer {
        padding: 50px 5% 20px;
    }
}


/* RESPONSIVE — MOBILE (max-width: 768px) */

@media (max-width: 768px) {

    .header {
        padding: 0 15px;
    }

    .navbar {
        padding: 10px 5px;
    }

    .navbar img {
        height: 50px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: hsl(0, 0%, 100%);
        z-index: 999;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    }

    nav.open ul {
        max-height: 400px;
        opacity: 1;
        padding: 10px 0;
    }

    nav ul li a {
        display: block;
        padding: 14px 25px;
        border-bottom: 1px solid hsl(0, 0%, 93%);
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        padding: 5px;
        box-shadow: none;
    }

    .hamburger span {
        display: block;
        width: 25px;
        height: 2px;
        background-color: hsl(0, 0%, 0%);
        transition: 0.3s ease;
    }

    .header .btn-contact {
        display: none;
    }

    .mobile-only {
        display: block;
    }

    .hero {
        flex-direction: column;
        padding: 10px 20px;
        height: auto;
        min-height: auto;
        text-align: center;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        height: auto;
        position: static;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-text {
        width: 100%;
        position: static;
        top: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero img {
        position: relative;
        height: auto;
        width: 100%;
        right: auto;
        top: auto
    }

    .about {
        padding: 60px 25px;
        margin-bottom: 20px;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .about-image {
        width: 75%;
        margin: 0 auto;
    }

    .about-text {
        width: 100%;
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .about-text p {
        width: 80%;
        font-size: 15px;
        text-align: center;
    }

    .choose-us {
        margin-top: 60px;
    }

    .choose-us h2 {
        font-size: 32px;
        text-align: center;
    }

    .choose-us p {
        width: 100%;
        font-size: 15px;
    }

    .choose-us .container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .choose-us .card {
        width: 90%;
        padding: 20px;
    }

    .services {
        padding: 60px 25px;
    }

    .services-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 35px;
    }

    .services-header h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gallery {
        padding: 60px 25px;
    }

    .gallery-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        margin-bottom: 30px;
    }

    .gallery-header h3 {
        width: 100%;
        font-size: 32px;
        line-height: 44px;
    }

    .gallery-header p {
        width: 100%;
        margin-left: 0;
        font-size: 15px;
    }

    .grid {
        flex-direction: column;
        gap: 0;
    }

    .left-cards,
    .right-cards {
        width: 100%;
    }

    .left-cards .card:nth-child(2) img,
    .right-cards .card:nth-child(2) img {
        margin-top: 20px;
    }

    .reviews-summary {
        gap: 0;
        padding-top: 30px;
        overflow-x: auto;
    }

    .summary-score {
        padding: 0 20px;
    }

    .score-number {
        font-size: 36px;
    }

    .score-stars {
        font-size: 13px;
    }

    .summary-score p,
    .summary-stat p {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .summary-stat {
        padding: 0 16px;
    }

    .summary-stat span {
        font-size: 24px;
    }

    .summary-divider {
        height: 35px;
    }

    .reviews-track-wrapper {
        padding: 0 25px;
    }

    .review-card {
        flex: 0 0 280px;
    }

    .contact {
        padding: 0;
        margin-bottom: 0;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-left {
        width: 100%;
        padding: 60px 25px;
        text-align: center;
        align-items: center;
    }

    .contact-left h1 {
        font-size: 36px;
    }

    .contact-info {
        gap: 30px;
        flex-direction: column;
        justify-content: center;
    }

    .social {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-right {
        width: 100%;
        height: 300px;
    }

    .footer {
        padding: 50px 25px 20px;
    }

    .footer-container {
        flex-direction: column;
        gap: 35px;
    }

    .col-brand {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
}


/* RESPONSIVE — SMALL MOBILE (max-width: 428px) */

@media (max-width: 428px) {

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero img {
        width: 120%;
    }

    .about-text h2,
    .choose-us h2,
    .services-header h2,
    .gallery-header h3,
    .contact-left h1 {
        font-size: 28px;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
}