/* EXACT Strip Design for KIWEST SPA */

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

body {
    font-family: 'Avenir LT STD', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #000;
    background: #fff;
}

/* Top Teal Header Bar */
.top-bar {
    background: #5CCCDA;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
}

.logo-section {
    text-align: center;
    flex: 1;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo-image {
    height: 135px;
    width: auto;
    display: block;
    margin: -20px auto;
    transition: opacity 0.3s;
}

.logo-link:hover .logo-image {
    opacity: 0.85;
}

.social-icons {
    display: flex;
    gap: 20px;
    transition: opacity 0.3s ease;
}

.social-icons a {
    color: white;
    font-size: 22px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.7;
}

/* Social icons when scrolled into nav bar */
.social-icons-scrolled {
    display: none;
    gap: 20px;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.social-icons-scrolled a {
    color: #000;
    font-size: 20px;
    text-decoration: none;
    transition: opacity 0.3s;
}

.social-icons-scrolled a:hover {
    opacity: 0.7;
}

/* White Navigation Bar */
.main-nav {
    background: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 40px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    gap: 6px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hamburger span:nth-child(2) {
    width: 20px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #5CCCDA;
}

.nav-book-btn {
    background: #5CCCDA;
    color: white;
    padding: 12px 32px;
    border-radius: 30px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(92, 204, 218, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
}

.nav-book-btn:hover {
    background: #4AB8C9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 204, 218, 0.6);
}

/* Announcement Strip */
.announcement-strip {
    background: #5CCCDA;
    text-align: center;
    padding: 15px;
    color: white;
    font-size: 14px;
    letter-spacing: 1px;
}

.announcement-strip a {
    color: white;
    text-decoration: underline;
    margin-left: 10px;
}

/* Hero Section */
/* ================================
   HERO SECTION - RESPONSIVE VIDEO
   ================================ */

/* Mobile-first: Full-width vertical video */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #000;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: transparent;
}

/* Video Loading Fallback Overlay */
video:not([poster=""]) {
    background: none;
}

/* Accessibility: Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        animation: none;
        opacity: 0.5;
    }
}

.hero-content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 90%;
    max-width: 500px;
    text-align: center;
    padding: 20px;
    background: rgba(0, 141, 149, 0.15);
    backdrop-filter: blur(5px);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text {
    font-family: 'Avenir LT STD', Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 64px;
    color: white;
    text-align: center;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    line-height: 1.2;
    margin-bottom: 25px;
}

/* Hero Info Box */
.hero-info-box {
    background: white;
    padding: clamp(20px, 5vw, 30px);
    border-radius: 0;
    margin: 0 auto 20px auto;
    max-width: min(520px, 90vw);
    width: 100%;
    overflow: visible;
    box-sizing: border-box;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 25px 0;
    text-align: center;
}

.hero-reviews {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(10px, 3vw, 15px);
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

.review-stat {
    text-align: center;
    padding: clamp(10px, 3vw, 15px) clamp(8px, 2vw, 10px);
    background: #f8f8f8;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: clamp(4px, 1.5vw, 8px);
    min-height: 0;
    box-sizing: border-box;
    overflow: visible;
    word-wrap: break-word;
}

.review-stat:hover {
    background: #5CCCDA;
    border-color: #5CCCDA;
    transform: translateY(-3px);
}

.review-stat .review-stars {
    color: #5CCCDA;
    font-size: clamp(14px, 3.5vw, 18px);
    letter-spacing: clamp(1px, 0.4vw, 2px);
}

.review-stat:hover .review-stars {
    color: white;
}

/* Partial star fill */
.partial-star {
    position: relative;
    display: inline-block;
}

.partial-star[data-fill="90"] {
    background: linear-gradient(90deg, #5CCCDA 90%, transparent 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partial-star[data-fill="70"] {
    background: linear-gradient(90deg, #5CCCDA 70%, transparent 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-stat:hover .partial-star[data-fill="90"] {
    background: linear-gradient(90deg, white 90%, transparent 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-stat:hover .partial-star[data-fill="70"] {
    background: linear-gradient(90deg, white 70%, transparent 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-stat .review-count {
    font-size: clamp(14px, 3.5vw, 18px);
    font-weight: 700;
    color: #000;
    margin-bottom: clamp(3px, 1vw, 5px);
}

.review-stat:hover .review-count {
    color: white;
}

.review-stat .review-platform {
    font-size: clamp(11px, 2.8vw, 13px);
    color: #666;
    font-weight: 500;
}

.review-stat:hover .review-platform {
    color: white;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.hero-btn {
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    width: 100%;
    max-width: 320px;
    text-align: center;
    display: inline-block;
}

.hero-btn-primary {
    background: #5CCCDA;
    color: white;
    border-color: #5CCCDA;
}

.hero-btn-primary:hover {
    background: white;
    color: #5CCCDA;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(92, 204, 218, 0.4);
}

.hero-btn-secondary {
    background: white;
    color: #5CCCDA;
    border-color: white;
}

.hero-btn-secondary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* ================================
   TABLET BREAKPOINT (768px+)
   ================================ */
@media (min-width: 768px) {
    .hero-content {
        top: 50%;
        max-width: 600px;
        padding: 30px;
    }

    .hero-text {
        font-size: 56px;
    }

    .hero-info-box {
        padding: 30px;
        margin-bottom: 25px;
    }

    .hero-description {
        font-size: 17px;
    }

    /* Tablet-optimized buttons: 60px touch targets */
    .hero-buttons {
        gap: 18px;
        flex-direction: column;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .hero-btn {
        width: 100%;
        max-width: 100%;
        min-height: 60px;
        padding: 18px 30px;
        font-size: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ================================
   DESKTOP BREAKPOINT (1025px+)
   Left-side video, right-side content
   ================================ */
@media (min-width: 1025px) {
    .hero-section {
        flex-direction: row;
        min-height: 85vh;
        height: 85vh;
    }

    /* Video on LEFT side - 45% width */
    .hero-video-container {
        width: 45%;
        height: 100%;
        flex-shrink: 0;
    }

    .hero-video {
        object-position: center;
    }

    /* Content on RIGHT side - 55% width */
    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 55%;
        max-width: none;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px;
        background: linear-gradient(135deg, #5CCCDA 0%, #4AB8C9 100%);
    }

    .hero-text {
        font-size: 72px;
        margin-bottom: 40px;
    }

    /* Desktop buttons - horizontal layout */
    .hero-buttons {
        flex-direction: row;
        gap: 25px;
        width: auto;
        max-width: none;
    }

    .hero-btn {
        width: auto;
        min-height: auto;
        padding: 20px 50px;
        font-size: 18px;
    }
}

/* ================================
   LARGE DESKTOP (1366px+)
   ================================ */
@media (min-width: 1366px) {
    .hero-content {
        padding: 80px;
    }

    .hero-text {
        font-size: 80px;
    }

    .hero-btn {
        padding: 22px 60px;
        font-size: 20px;
    }
}

/* Floating Button Animations */
@keyframes bookBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Mobile-centered bounce animation */
@keyframes bookBounceMobile {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.8);
    }
}

/* Floating Book Button */
.floating-book-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: #5CCCDA;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 141, 149, 0.4);
    transition: all 0.3s;
    animation: bookBounce 2s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-book-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 141, 149, 0.6);
    animation: none;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s;
    animation: whatsappPulse 2.5s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    animation: none;
}

/* Promo Badge */
.promo-badge {
    position: fixed;
    bottom: 140px;
    left: 40px;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: #5CCCDA;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(0, 141, 149, 0.3);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* Publication Logos */
.publications-section {
    background: white;
    padding: 50px 0;
    border-top: 1px solid #e0e0e0;
}

.publications-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.publication-logo {
    font-family: 'Avenir LT STD', Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 32px;
    color: #333;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Content Sections */
.content-section {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Avenir LT STD', Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    color: #5CCCDA;
    font-weight: 400;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.service-box {
    background: linear-gradient(135deg, #5CCCDA 0%, #4AB8C9 100%);
    border-radius: 15px;
    transition: all 0.4s ease;
    text-align: center;
    padding: 50px 35px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(92, 204, 218, 0.3);
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s;
}

.service-box:hover::before {
    left: 100%;
}

.service-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(92, 204, 218, 0.5);
}

.service-icon {
    font-size: 64px;
    margin-bottom: 25px;
    display: block;
    transition: transform 0.4s ease;
}

.service-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: block;
    transition: transform 0.4s ease;
}

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

.service-box:hover .service-image {
    transform: scale(1.05);
}

.service-title {
    font-family: 'Avenir LT STD', Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.service-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid white;
    padding: 12px 28px;
    border-radius: 30px;
    display: inline-block;
    transition: all 0.3s;
    background: transparent;
}

.service-link:hover {
    background: white;
    color: #5CCCDA;
    transform: scale(1.05);
}

/* Info Boxes */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.info-box {
    background: #f8f8f8;
    padding: 40px 30px;
    text-align: center;
}

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-title {
    font-size: 20px;
    color: #5CCCDA;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Reviews */
.reviews-container {
    max-width: 1200px;
    margin: 40px auto 0;
    overflow: hidden;
    position: relative;
}

.reviews-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.review-box {
    background: white;
    padding: 40px;
    border-radius: 0;
    box-shadow: none;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 360px;
    flex: 0 0 360px;
}

.review-stars {
    color: #5CCCDA;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.review-text {
    color: #5CCCDA;
    font-size: 16px;
    line-height: 1.8;
    font-style: normal;
    margin: 0;
    font-weight: 400;
}

.review-author {
    display: none;
}

/* Reviews Pagination Dots */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.reviews-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-dots .dot.active {
    background: #5CCCDA;
    transform: scale(1.2);
}

/* Carousel Navigation Buttons - Hidden (using pagination dots instead) */
.carousel-btn,
.carousel-prev,
.carousel-next {
    display: none;
}

/* CTA Section */
.cta-section {
    background: #5CCCDA;
    color: white;
    padding: 100px 40px;
    text-align: center;
}

.cta-title {
    font-family: 'Avenir LT STD', Avenir, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 2px;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    background: white;
    color: #5CCCDA;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 3px;
    border: 2px solid white;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: transparent;
    color: white;
}

/* Footer */
footer {
    background: #000;
    color: white;
    padding: 60px 40px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.footer-section h4 {
    color: #5CCCDA;
    margin-bottom: 25px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.footer-section li {
    margin-bottom: 15px;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #5CCCDA;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 13px;
}

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

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

    .reviews-grid {
        gap: 20px;
    }

    .review-box {
        min-width: 300px;
        flex: 0 0 300px;
        padding: 35px;
        min-height: 260px;
    }
}

/* Tablet and Desktop: Show social icons and properly sized logo */
@media (min-width: 769px) {
    .logo-image {
        height: 110px;
        margin: -15px auto;
    }

    .social-icons {
        display: flex;
    }
}

/* Desktop: Larger logo */
@media (min-width: 1025px) {
    .logo-image {
        height: 135px;
        margin: -20px auto;
    }
}

@media (max-width: 768px) {
    .hero-info-box {
        padding: 20px;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero-reviews {
        gap: 12px;
        justify-content: center;
        margin: 0 auto;
    }

    .review-stat {
        padding: 12px 8px;
        text-align: center;
    }

    .review-stat .review-stars {
        font-size: 16px;
        margin-bottom: 6px;
        text-align: center;
        justify-content: center;
    }

    .review-stat .review-count {
        font-size: 16px;
        text-align: center;
    }

    .review-stat .review-platform {
        font-size: 12px;
        text-align: center;
        justify-content: center;
        margin: 0 auto;
    }

    .top-bar {
        padding: 15px 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: sticky;
        top: 0;
        z-index: 999;
        min-height: 70px;
    }

    .hamburger {
        display: flex;
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

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

    .social-icons {
        display: none;
    }

    /* Mobile logo sizing - ensure it's visible */
    .logo-image {
        height: 140px;
        margin: -35px auto -35px auto;
    }

    /* Hide the white nav bar on mobile */
    .main-nav {
        padding: 0;
        border: none;
        height: 0;
        overflow: visible;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid #e0e0e0;
        padding: 20px;
        gap: 15px;
        z-index: 100;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .nav-menu.active {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu li {
        text-align: center;
        opacity: 0;
        transform: translateX(-30px);
        transition: all 0.4s ease;
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.4s; }

    .nav-menu a {
        display: block;
        padding: 12px 20px;
        border-radius: 8px;
        background: linear-gradient(135deg, transparent 0%, transparent 100%);
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: linear-gradient(135deg, #5CCCDA 0%, #4AB8C9 100%);
        color: white !important;
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(92, 204, 218, 0.3);
    }

    .logo-main {
        font-size: 28px;
    }

    .logo-tagline {
        font-size: 9px;
    }

    .hero-text {
        font-size: 36px;
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-btn {
        width: 100%;
        padding: 16px 35px;
        font-size: 16px;
    }

    .services-grid,
    .info-boxes,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .reviews-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .reviews-grid {
        gap: 20px;
    }

    .review-box {
        min-width: 100%;
        flex: 0 0 100%;
        padding: 30px 25px;
        min-height: 240px;
    }

    .review-stars {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .review-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .reviews-dots {
        margin-top: 30px;
    }

    .reviews-dots .dot {
        width: 10px;
        height: 10px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }

    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }

    .promo-badge {
        bottom: 100px;
        left: 20px;
    }

    .section-title {
        font-size: 36px;
    }
}

/* Small mobile screens - bottom nav is active, floating button hidden */
@media (max-width: 600px) {
    /* Floating book button hidden on mobile - using bottom nav instead */
    .floating-book-btn {
        display: none;
    }
}


/* Sticky sidebar navigation */
.services-sidebar {
    width: 280px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
    background: #f8f8f8;
    border-radius: 0;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 24px;
    font-weight: 700;
    color: #5CCCDA;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Table of contents list */
.table-of-contents {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.toc-list li {
    margin-bottom: 8px;
}

.toc-list a {
    display: block;
    padding: 12px 18px;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.toc-list a:hover {
    background: #5CCCDA;
    color: white;
    transform: translateX(5px);
    border-left-color: #4AB8C9;
}

.toc-list a.active {
    background: #5CCCDA;
    color: white;
    border-left-color: #4AB8C9;
}

/* Main content area */
.services-content {
    flex: 1;
    min-width: 0;
}

/* Category sections */
.service-category-section {
    margin-bottom: 100px;
    scroll-margin-top: 120px;
}

.service-category-section:last-child {
    margin-bottom: 0;
}

.category-header {
    text-align: center;
    margin-bottom: 60px;
}

.category-title {
    font-size: 42px;
    font-weight: 700;
    color: #5CCCDA;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.category-description {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Service cards grid */
.services-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Individual service card */
.service-card {
    background: white;
    border: none;
    border-radius: 0;
    padding: 30px;
    box-shadow: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: none;
    box-shadow: none;
}

.service-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #5CCCDA;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

.service-duration {
    display: inline-block;
    background: #f0f0f0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.service-card-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.service-card-btn {
    display: inline-block;
    background: #5CCCDA;
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #5CCCDA;
    align-self: flex-start;
}

.service-card-btn:hover {
    background: #4AB8C9;
    border-color: #4AB8C9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(92, 204, 218, 0.3);
}

/* Responsive layouts */
@media (max-width: 1200px) {
    .services-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .services-layout {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .services-sidebar {
        width: 100%;
        position: static;
        padding: 25px;
    }

    .sidebar-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .toc-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .toc-list li {
        margin-bottom: 0;
    }

    .toc-list a {
        padding: 10px 20px;
        border-left: none;
        border-bottom: 3px solid transparent;
    }

    .toc-list a:hover,
    .toc-list a.active {
        transform: translateX(0);
        border-left: none;
        border-bottom-color: #4AB8C9;
    }

    .category-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .services-layout {
        padding: 40px 20px;
    }

    .services-category-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-category-section {
        margin-bottom: 70px;
    }

    .category-header {
        margin-bottom: 40px;
    }

    .category-title {
        font-size: 32px;
    }

    .category-description {
        font-size: 16px;
    }

    .service-card {
        padding: 25px;
    }

    .service-card-title {
        font-size: 22px;
    }

    .service-price {
        font-size: 24px;
    }

    .service-card-btn {
        width: 100%;
    }
}

/* ========================================
   SERVICES MENU - CLEAN TRADITIONAL STYLE
   ======================================== */

/* Category Navigation Tabs */
.menu-category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 30px 20px;
    position: sticky;
    top: 70px;
    background: white;
    z-index: 100;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 40px;
}

.tab-btn {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #666;
    padding: 8px 0;
    border-radius: 0;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.tab-btn:hover {
    background: transparent;
    color: #5CCCDA;
    border-bottom-color: #5CCCDA;
    transform: none;
}

.tab-btn.active {
    background: transparent;
    color: #5CCCDA;
    border-bottom-color: #5CCCDA;
    font-weight: 600;
}

/* Services Menu Container */
.services-menu {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Category Sections */
.menu-category {
    margin-bottom: 80px;
}

.menu-category.hidden {
    display: none;
}

.menu-category-title {
    font-size: 36px;
    font-weight: 700;
    color: #5CCCDA;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Individual Services */
.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.menu-service {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 30px;
}

.menu-service:last-child {
    border-bottom: none;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    gap: 20px;
}

.service-name {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin: 0;
    flex: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #5CCCDA;
    white-space: nowrap;
}

.service-info {
    font-size: 14px;
    color: #999;
    margin: 0 0 12px 0;
    font-style: italic;
}

.service-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 15px 0;
}

.book-btn {
    display: inline-block;
    background: #5CCCDA;
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #5CCCDA;
}

.book-btn:hover {
    background: #4AB8C9;
    border-color: #4AB8C9;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-category-tabs {
        gap: 8px;
        padding: 15px 10px;
        top: 60px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .menu-category-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .service-name {
        font-size: 20px;
    }
    
    .service-price {
        font-size: 22px;
    }
    
    .service-desc {
        font-size: 15px;
    }
    
    .book-btn {
        width: 100%;
        text-align: center;
    }
}

/* ==================== CONTACT PAGE ==================== */

/* Contact Info Section */
.contact-info-section {
    padding: 80px 40px;
    background: #fff;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.contact-intro h2 {
    font-size: 42px;
    font-weight: 700;
    color: #5CCCDA;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.contact-intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

/* Contact Details Grid */
.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-detail-box {
    background: #fff;
    border: 2px solid #5CCCDA;
    border-radius: 0;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-detail-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(92, 204, 218, 0.2);
    border-color: #4AB8C9;
}

.contact-icon {
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(92, 204, 218, 0.1);
    border-radius: 50%;
}

.contact-detail-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #5CCCDA;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-detail-box p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-detail-box p a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-box p a:hover {
    color: #5CCCDA;
}

.contact-detail-box .hours-list {
    text-align: left;
    max-width: 250px;
    margin: 0 auto 20px;
}

.contact-detail-box .hours-list strong {
    color: #5CCCDA;
    font-weight: 600;
}

.contact-link {
    display: inline-block;
    color: #5CCCDA;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-link:hover {
    border-bottom-color: #5CCCDA;
}

/* Map Section */
.map-section {
    padding: 0;
    background: #f8f8f8;
}

.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Mobile responsive for map */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 250px;
    }
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-details-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 60px 20px;
    }

    .contact-intro h2 {
        font-size: 32px;
    }

    .contact-intro p {
        font-size: 16px;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-detail-box {
        padding: 35px 25px;
    }

    .contact-detail-box h3 {
        font-size: 20px;
    }

    .map-container {
        height: 350px;
    }
}

/* ===== MODERN SERVICES SECTION ===== */
.services-section {
    padding: 100px 60px;
    background: #f8f8f8;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-family: 'Avenir LT STD', Avenir, sans-serif;
    font-size: 48px;
    color: #5CCCDA;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    text-transform: lowercase;
}

.services-header p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.service-card-image {
    width: 100%;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-icon-large {
    font-size: 64px;
    margin-bottom: 15px;
    filter: brightness(1.2);
}

.service-overlay-text {
    font-family: 'Avenir LT STD', Avenir, sans-serif;
    font-size: 24px;
    color: white;
    font-weight: 600;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.service-card-content {
    padding: 30px 25px;
}

.service-card-content h3 {
    font-family: 'Avenir LT STD', Avenir, sans-serif;
    font-size: 22px;
    color: #333;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.service-card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0 0 25px 0;
    min-height: 75px;
}

.service-card-buttons {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.btn-service-primary,
.btn-service-secondary {
    display: block;
    text-align: center;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-service-primary {
    background: #5CCCDA;
    color: white;
}

.btn-service-primary:hover {
    background: #4AB8C9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(92,204,218,0.3);
}

.btn-service-secondary {
    background: white;
    color: #5CCCDA;
    border: 2px solid #5CCCDA;
}

.btn-service-secondary:hover {
    background: #5CCCDA;
    color: white;
}

/* Tablet (2 columns) */
@media (max-width: 1024px) {
    .services-section {
        padding: 80px 40px;
    }

    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-card-content p {
        min-height: auto;
    }
}

/* Mobile (1 column) */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 20px;
    }

    .services-header h2 {
        font-size: 36px;
    }

    .services-header p {
        font-size: 16px;
    }

    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card-image {
        height: 220px;
    }

    .service-icon-large {
        font-size: 52px;
    }

    .service-overlay-text {
        font-size: 20px;
    }

    .service-card-content {
        padding: 25px 20px;
    }

    .service-card-content h3 {
        font-size: 20px;
    }

    .service-card-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 50px 15px;
    }

    .services-header h2 {
        font-size: 32px;
    }

    .service-card-image {
        height: 200px;
    }
}

/* ===== LOCATION/MAP SECTION ===== */
.location-section {
    max-width: 1000px;
    margin: 0 auto;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.location-info {
    text-align: left;
    padding: 20px;
}

.location-info h3 {
    font-family: 'Avenir LT STD', Avenir, sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #5CCCDA;
}

.location-info p {
    font-size: 16px;
    line-height: 1.8;
    margin: 12px 0;
}

.location-info p strong {
    color: #333;
}

.location-info a {
    color: #5CCCDA;
    text-decoration: none;
    transition: color 0.3s;
}

.location-info a:hover {
    color: #4AB8C9;
    text-decoration: underline;
}

.map-wrapper {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.map-wrapper iframe {
    width: 100%;
    height: 350px;
    border: 0;
    display: block;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .location-info {
        padding: 10px;
        text-align: center;
    }

    .location-info h3 {
        font-size: 24px;
    }

    .location-info p {
        font-size: 15px;
    }

    .map-wrapper iframe {
        height: 300px;
    }
}

/* ===== PAGE HEADER (UNIVERSAL) ===== */
.page-header {
    background: linear-gradient(135deg, #5CCCDA 0%, #4AB8C9 100%);
    color: white;
    padding: 80px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 60px 80px;
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 30px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .page-header p {
        font-size: 18px;
    }

    .page-content {
        padding: 40px 20px 60px;
    }
}

/* ===== SIMPLE PHOTO GRID SERVICES ===== */
.services-section {
    padding: 80px 40px;
    background: white;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-family: 'Avenir LT STD', Avenir, sans-serif;
    font-size: 48px;
    color: #5CCCDA;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0 0 15px 0;
    text-transform: lowercase;
}

.services-header p {
    font-size: 18px;
    color: #666;
    margin: 0;
}

.services-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-photo-card {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    border-radius: 0;
    transition: all 0.3s ease;
    background-size: cover !important;
    background-position: center !important;
}

.service-photo-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.service-photo-card h3 {
    font-family: 'Avenir LT STD', Avenir, sans-serif;
    font-size: 32px;
    color: white;
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: 0.5px;
    text-align: center;
    margin: 0;
    z-index: 2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Tablet (2 columns) */
@media (max-width: 1024px) {
    .services-section {
        padding: 60px 30px;
    }

    .services-photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .service-photo-card h3 {
        font-size: 28px;
    }
}

/* Mobile (1 column) */
@media (max-width: 768px) {
    .services-section {
        padding: 50px 20px;
    }

    .services-header h2 {
        font-size: 36px;
    }

    .services-header p {
        font-size: 16px;
    }

    .services-photo-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-photo-card {
        aspect-ratio: 4 / 3;
    }

    .service-photo-card h3 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 15px;
    }

    .services-header h2 {
        font-size: 32px;
    }

    .service-photo-card h3 {
        font-size: 28px;
    }
}

/* Extra responsive handling for high zoom / very small screens */
@media (max-width: 400px) {
    .hero-reviews {
        grid-template-columns: 1fr;
        gap: 10px;
        justify-content: center;
        margin: 0 auto;
    }

    .review-stat {
        padding: 12px 8px;
        text-align: center;
    }

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

    /* Mobile bottom nav adjustments for very small screens */
    .mobile-bottom-nav {
        height: 60px;
    }

    .mobile-bottom-nav .nav-icon {
        width: 22px;
        height: 22px;
    }

    .mobile-bottom-nav .nav-label {
        font-size: 10px;
    }

    /* WhatsApp button smaller on tiny screens */
    .whatsapp-btn {
        width: 45px;
        height: 45px;
        bottom: 75px;
    }

    .whatsapp-btn svg {
        width: 24px;
        height: 24px;
    }

    body {
        padding-bottom: 70px;
    }
}

/* ===== MOBILE BOTTOM NAVIGATION (APP-STYLE) ===== */
.mobile-bottom-nav {
    display: none; /* Hidden by default, shown on mobile */
}

@media (max-width: 768px) {
    /* Show mobile bottom navigation */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        height: 65px;
        padding: 0;
        justify-content: space-around;
        align-items: center;
        border-top: 1px solid #e0e0e0;
    }

    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex: 1;
        height: 100%;
        text-decoration: none;
        color: #999;
        transition: all 0.3s ease;
        position: relative;
        gap: 4px;
        padding: 8px 0;
    }

    .mobile-bottom-nav .nav-item:active {
        background: rgba(92, 204, 218, 0.05);
    }

    .mobile-bottom-nav .nav-icon {
        width: 24px;
        height: 24px;
        stroke: currentColor;
        transition: all 0.3s ease;
    }

    .mobile-bottom-nav .nav-label {
        font-size: 11px;
        font-weight: 500;
        letter-spacing: 0.3px;
        transition: all 0.3s ease;
    }

    /* Active state */
    .mobile-bottom-nav .nav-item.active {
        color: #5CCCDA;
    }

    .mobile-bottom-nav .nav-item.active .nav-icon {
        stroke: #5CCCDA;
        transform: scale(1.1);
    }

    .mobile-bottom-nav .nav-item.active .nav-label {
        font-weight: 600;
        color: #5CCCDA;
    }

    /* Book button special styling */
    .mobile-bottom-nav .nav-item-book {
        color: #5CCCDA;
    }

    .mobile-bottom-nav .nav-item-book .nav-icon {
        stroke: #5CCCDA;
    }

    .mobile-bottom-nav .nav-item-book .nav-label {
        font-weight: 600;
        color: #5CCCDA;
    }

    /* Add bottom padding to body to prevent content being hidden behind nav */
    body {
        padding-bottom: 75px;
    }

    /* Hide the floating book button on mobile since we have bottom nav */
    .floating-book-btn {
        display: none;
    }

    /* Adjust WhatsApp button position to not conflict with bottom nav */
    .whatsapp-btn {
        bottom: 85px; /* Move above the bottom nav */
        left: 20px;
    }
}

/* Prevent layout breaks on zoom */
@media (min-width: 401px) and (max-width: 600px) {
    .hero-info-box {
        padding: 20px;
        margin: 0 auto 20px auto;
    }

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

    .hero-reviews {
        justify-content: center;
        margin: 0 auto;
    }

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

    .review-stat .review-stars {
        font-size: 16px;
        text-align: center;
        justify-content: center;
    }

    .review-stat .review-count {
        font-size: 16px;
        text-align: center;
    }

    .review-stat .review-platform {
        text-align: center;
        justify-content: center;
        margin: 0 auto;
    }
}
