/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

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

:root {
    --primary-dark: #212121;
    --primary-teal: #2F5755;
    --secondary-teal: #5A9690;
    --light-bg: #e6f2f1;
    --white: #ffffff;
    --dark: #432323;
    --gray: #6B6B6B;
    --footer-color: #2F5755;
    --bg-light: #e6f2f1;
    --text-light: #8B8B8B;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--white);
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
    box-sizing: border-box;
}

.text-center {
    text-align: center;
}


/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */

.scroll-progress {
    position: fixed;
    top: 0px;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--secondary-teal);
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 2px 10px rgba(90, 150, 144, 0.5);
}


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

.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 95svh
}

.hero-slideshow {
    width: 100%;
}

.hero-slide {
    width: 100%;
    height: auto;
    /* 🔥 THIS IS THE KEY */
    display: none;
    position: relative;
    top: 5px;
}

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

.hero-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hero-container {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}


.btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-teal);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(47, 87, 85, 0.3);
}

.btn-primary:hover {
    background: var(--secondary-teal);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(47, 87, 85, 0.4);
}

.btn-secondary {
    background-color: #ffffff;
    color: rgb(60, 5, 60);
    border: 2px solid var(--primary-teal);
    box-shadow: 0 10px 30px rgba(47, 87, 85, 0.2);
    transition: all 0.8s ease-in-out;
}

.btn-secondary:hover {
    background-color: rgb(60, 5, 60);
    color: aliceblue;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(47, 87, 85, 0.4);
}

.btn-secondary.auto-effect {
    background-color: rgb(60, 5, 60);
    color: aliceblue;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(47, 87, 85, 0.4);
    transition: all 0.4s ease;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 9px 40px rgba(37, 211, 102, 0.4);
}


/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */


.Momo-Signature-word {
    font-family: "Momo Signature", cursive;
    font-weight: 700;
    font-style: normal;
    font-size: 3rem;
    color: #df2d68;
}

.about-preview {
    padding: 3rem 0;
    background: var(--white);
    position: relative;
}

.about-preview-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--gray);
    font-weight: 400;
}


/* ============================================
   CATEGORIES SECTION
   ============================================ */

.categories {
    padding: 6rem 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--secondary-teal);
    border-radius: 2px;
}

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

.category-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
}

.category-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.category-image {
    width: 100%;
    /* height: 250px; Removed fixed height */
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.category-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.category-card:hover .category-image::before {
    left: 100%;
}

.category-img {
    aspect-ratio: 4 / 5 !important;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.category-image:hover .category-img {
    transform: scale(1.05);
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(47, 87, 85, 0.3);
}

.category-card:hover .category-image {
    transform: scale(1.05);
}

.category-image {
    transition: transform 0.5s ease;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    padding: 1.5rem 1.5rem 0.5rem;
    transition: color 0.3s ease;
}

.category-card:hover .category-title {
    color: var(--primary-teal);
}

.category-desc {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.6;
}

.explore-btn {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.explore-btn.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-choose-us {
    padding: 6rem 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 20px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.feature-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(47, 87, 85, 0.2);
    background: var(--white);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
    color: var(--primary-teal);
}

.feature-icon i {
    font-size: 4rem;
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--gray);
    line-height: 1.6;
}


/* ============================================
   TESTIMONIALS PREVIEW SECTION
   ============================================ */

.testimonials-preview {
    padding: 6rem 0;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
}

.testimonial-card.visible {
    opacity: 1;
    animation: fadeInUp 0.8s ease forwards;
}

.fade-from-left.visible {
    animation: slideInLeft 0.8s ease forwards;
}

.fade-from-right.visible {
    animation: slideInRight 0.8s ease forwards;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(47, 87, 85, 0.3);
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-photo {
    transform: scale(1.1);
}

.testimonial-photo i {
    font-size: 3rem;
    color: var(--primary-teal);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 5px;
    transition: transform 0.3s ease;
}

.testimonial-stars i {
    font-size: 1.2rem;
}

.testimonial-card:hover .testimonial-stars {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-teal);
}


/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta {
    padding: 6rem 0;
    background: var(--primary-teal);
    color: var(--white);
    text-align: center;
    margin-top: 4rem;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.cta-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.cta-buttons.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   Last image SECTION
   ============================================ */

.last-part {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.last-part-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #222;
    font-weight: 700;
    text-align: center;
}

.last-images-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.76rem;
    width: 100%;
    max-width: 100%;
}

.last-image {
    width: calc(25% - 1.125rem);
    /* 4 per row for large screens */
    height: 300px;
    /* adjust height as needed */
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.last-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}


/* Tablets: 3 per row */

@media (max-width: 992px) {
    .last-image {
        width: calc(33.333% - 1rem);
        height: 250px;
    }
}

/* Mobiles: 2 per row */

@media (max-width: 600px) {
    .last-image {
        width: calc(50% - 0.75rem);
        height: 200px;
    }
}


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

.footer {
    background-image: url('../images/background-footer1.png');
    width: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 4rem 0 2rem;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .footer {
        background-position: center center;
        padding: 3rem 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .footer {
        background-size: auto 100%;
        padding: 2.5rem 0 1rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    /* color: var(--white); */
    color: black;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    /* color: rgba(255, 255, 255, 0.8); */
    color: black;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}


.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-info {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer .social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--white);
}

.footer .social-icon i {
    font-size: 1.5rem;
}

.footer .social-icon:hover {
    /* background: var(--secondary-teal); */
    background: white;
    transform: translateY(-5px) scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
}


/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--white);
}

.floating-whatsapp i {
    font-size: 2rem;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}


/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Hero image cross-fade animation */
@keyframes heroSlide {
    0% {
        opacity: 1;
    }

    45% {
        opacity: 1;
    }

    55% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

@keyframes slideInBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }

    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }

    70% {
        transform: scale(0.9) translateY(5px);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 5px 10px rgba(37, 211, 102, 0.3);
    }

    50% {
        box-shadow: 0 7px 13px rgba(37, 211, 102, 0.6), 0 0 14px rgba(37, 211, 102, 0.4);
    }
}


/* Animation Classes */

.fade-in-bottom {
    animation: fadeInBottom 1s ease forwards;
}

.slide-from-left {
    animation: slideInLeft 1s ease 0.3s forwards;
    opacity: 0;
}

.slide-from-right {
    animation: slideInRight 1s ease 0.5s forwards;
    opacity: 0;
}

.slide-from-bottom {
    animation: slideInBottom 1s ease forwards;
    opacity: 0;
}

.fade-in-up {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.zoom-in {
    opacity: 0;
}

.bounce-in {
    animation: bounceIn 0.8s ease forwards;
    opacity: 0;
}

.fade-from-left {
    opacity: 0;
    transform: translateX(-50px);
}

.fade-from-right {
    opacity: 0;
    transform: translateX(50px);
}

.line-reveal {
    opacity: 1;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.pulse-glow {
    animation: pulseGlow 3s ease-in-out infinite;
}


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

@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }

    .hero-container {
        padding: 0 2rem 3rem;
    }
}

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

    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-container {
        padding: 0 1.5rem 3rem;
    }

    .hero {
        height: auto;
    }

    .hero-slide {
        object-fit: cover;
        object-position: center top;
        position: relative;
        top: 21px;
    }

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

    .about-preview,
    .categories,
    .why-choose-us,
    .testimonials-preview,
    .final-cta {
        padding: 1.5rem 0;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }

    .category-title {
        font-size: 1.2rem;
        padding: 1rem 1rem 0.5rem;
    }

    .category-desc {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-container {
        padding: 0 1rem 2.5rem;
    }

    .hero {
        height: 28vh;
    }

    .hero-slide {
        object-fit: cover;
        object-position: center top;
        position: relative;
        top: 32px;
    }

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

    .Momo-Signature-word {
        font-size: 2.2rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .btn-group,
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .category-card,
    .testimonial-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .category-title {
        font-size: 1.1rem;
    }

    .category-desc {
        font-size: 0.85rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================
   CURSOR HOVER GLOW EFFECT
   ============================================ */

a,
button,
.category-card,
.testimonial-card,
.feature-item {
    cursor: pointer;
    position: relative;
}


/* ============================================
   LAZY LOADING
   ============================================ */

img {
    opacity: 0;
    transition: opacity 0.3s;
}

img.loaded {
    opacity: 1;
}


/* ============================================
   FOOTER RESPONSIVENESS FIX
   ============================================ */

@media (max-width: 360px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-container {
        padding: 0 0.75rem 2rem;
    }

    .hero {
        height: 30vh;
    }

    .hero-slide {
        object-fit: cover;
        object-position: center top;
        position: relative;
        top: 38px;
    }

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

    .Momo-Signature-word {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .feature-icon {
        font-size: 3rem;
    }

    .feature-icon i {
        font-size: 3rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .floating-whatsapp {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        bottom: 15px;
        right: 15px;
    }

    .floating-whatsapp i {
        font-size: 1.3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-section:nth-child(2),
    .footer-section:nth-child(3) {
        text-align: center;
        padding-left: 0;
    }

    .footer-section h3 {
        text-align: center;
        font-size: 1.3rem;
    }

    .last-image {
        width: calc(50% - 0.5rem);
        height: 180px;
    }

    .last-images-wrapper {
        gap: 0.5rem;
    }
}

/* Extra small devices (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero-container {
        padding: 0 0.5rem 2rem;
    }

    .hero {
        height: 28vh;
    }

    .hero-slide {
        object-fit: cover;
        object-position: center top;
        position: relative;
        top: 34px;
    }

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

    .Momo-Signature-word {
        font-size: 1.75rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .category-title {
        font-size: 1rem;
    }

    .category-desc {
        font-size: 0.8rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

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

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .last-image {
        width: calc(50% - 0.4rem);
        height: 160px;
    }

    .last-images-wrapper {
        gap: 0.4rem;
    }
}

/* Ultra small devices (280px) */
@media (max-width: 280px) {
    .container {
        padding: 0 0.4rem;
    }

    .hero-container {
        padding: 0 0.4rem 2rem;
    }

    .hero {
        height: 26vh;
    }

    .hero-slide {
        object-fit: cover;
        object-position: center top;
        position: relative;
        top: 38px;
    }

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

    .Momo-Signature-word {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.7rem 0.9rem;
        font-size: 0.8rem;
    }

    .last-image {
        width: 100%;
        height: 150px;
    }

    .last-images-wrapper {
        gap: 0.3rem;
    }
}