/* EXACT Strip Design for KIWEST SPA */

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

html, body {
    overflow-x: clip;
    max-width: 100vw;
    width: 100%;
    position: relative;
}

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

.cookie-modal h2 {
    margin: 0 0 8px;
    color: #111;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: 0;
}

.cookie-modal p,
.cookie-fine-print {
    margin: 0 0 10px;
    color: #333;
    font-size: 15px;
    line-height: 1.55;
}

.cookie-modal a {
    color: #087a87;
    font-weight: 700;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-btn,
.legal-inline-button {
    min-height: 44px;
    padding: 11px 18px;
    border: 1px solid #0a8794;
    border-radius: 6px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cookie-btn-primary,
.legal-inline-button {
    background: #0a8794;
    color: #fff;
}

.cookie-btn-secondary {
    background: #f4f8f9;
    color: #111;
    border-color: #c9dadd;
}

.cookie-btn-outline {
    background: #fff;
    color: #0a8794;
}

.cookie-btn:hover,
.legal-inline-button:hover {
    background: #076c76;
    border-color: #076c76;
    color: #fff;
}

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 5100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, 0.45);
}

.cookie-modal-panel {
    position: relative;
    width: min(620px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 28px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.cookie-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #eef6f7;
    color: #111;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.cookie-toggle-list {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.cookie-toggle-row {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border: 1px solid #dbe7e9;
    border-radius: 8px;
    cursor: pointer;
}

.cookie-toggle-row strong,
.cookie-toggle-row small {
    display: block;
}

.cookie-toggle-row strong {
    color: #111;
    font-size: 16px;
}

.cookie-toggle-row small {
    margin-top: 4px;
    color: #555;
    font-size: 14px;
    line-height: 1.4;
}

.cookie-toggle-row input {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    accent-color: #0a8794;
}

.legal-page {
    background: #fff;
}

.legal-hero {
    padding: 76px 20px;
    background: #5CCCDA;
    color: #111;
    text-align: center;
}

.legal-kicker {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.legal-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 400;
    letter-spacing: 0;
}

.legal-hero p {
    margin: 0;
    font-size: 17px;
}

.legal-content {
    max-width: 880px;
    margin: 0 auto;
    padding: 64px 20px 90px;
}

.legal-content h2 {
    margin: 42px 0 14px;
    color: #087a87;
    font-size: 27px;
    font-weight: 500;
    letter-spacing: 0;
}

.legal-content p,
.legal-content li {
    color: #2f2f2f;
    font-size: 17px;
    line-height: 1.75;
}

.legal-content p {
    margin: 0 0 18px;
}

.legal-content ul {
    margin: 0 0 22px 20px;
    padding: 0;
}

.legal-content li {
    margin-bottom: 12px;
    padding-left: 4px;
}

.legal-content a {
    color: #087a87;
    font-weight: 700;
}

@media (max-width: 760px) {
    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
    }

    .cookie-modal {
        align-items: flex-end;
        padding: 12px;
    }

    .cookie-modal-panel {
        max-height: calc(100vh - 24px);
        padding: 24px 18px;
    }

    .legal-content {
        padding: 42px 20px 72px;
    }
}

/* Prevent any element from extending past viewport on mobile */
@media (max-width: 768px) {
    html, body {
        overscroll-behavior-x: none;
        touch-action: pan-y;
    }
    img, video, iframe, svg {
        max-width: 100%;
        height: auto;
    }
    table {
        max-width: 100%;
        display: block;
        overflow-x: auto;
    }
    pre, code {
        max-width: 100%;
        overflow-x: auto;
        word-wrap: break-word;
    }
    /* Prevent iOS Safari from auto-zooming when input is focused.
       iOS zooms when font-size < 16px. Force 16px on all form inputs. */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    input[type="password"],
    input[type="search"],
    input[type="url"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* 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: 12px;
    transition: opacity 0.3s ease;
}

.social-icons a {
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    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: #1a1612;  /* WCAG AA: ink-on-teal 9.6:1 (white was 1.89:1) */
    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;
    color: #1a1612;
    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;
}

@supports (height: 100svh) {
    @media (max-width: 768px) {
        .hero-section {
            min-height: 100svh;
        }

        .hero-video-container {
            height: 100svh;
        }
    }
}

.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;
    font-weight: 400;
    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: #1a1612;  /* WCAG AA: ink-on-teal 9.6:1 */
    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);
    }
}

/* 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;
}

.whatsapp-btn svg {
    width: 35px;
    height: 35px;
    margin-left: 0;
}

/* 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 {
    color: #5CCCDA;
    font-size: 14px;
    font-weight: 600;
    margin-top: 15px;
    letter-spacing: 0.5px;
}

/* 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;
    }

    .top-bar {
        position: sticky;
        top: 0;
        z-index: 100004;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
    }

    /* KiWest Fanatic promo banner stays above the slide-in drawer */
    .promo-banner {
        position: relative;
        z-index: 100005;
    }

    .hamburger {
        display: flex;
        position: absolute;
        left: 16px;
        top: 0;
        bottom: 0;
        margin: auto 0;
        transform: none;
    }

    .hamburger.active span:nth-child(1) {
        background: #000;
    }
    .hamburger.active span:nth-child(3) {
        background: #000;
    }

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

    .social-icons {
        display: flex;
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }

    /* Mobile logo sizing - use the sharper white horizontal lockup */
    .logo-image {
        content: url("../assets/images/kiwest-logo-white-mobile.webp");
        width: min(44vw, 164px);
        height: auto;
        max-height: 78px;
        object-fit: contain;
        margin: -8px auto;
        transform: translateX(-20px);
    }

    /* Hide the white nav bar on mobile */
    .main-nav {
        padding: 0;
        border: none;
        height: 0;
        overflow: hidden;
        position: static;
        z-index: auto;
        background: transparent;
        pointer-events: none;
    }

    /* Slide-in side panel menu */
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 78%;
        max-width: 320px;
        background: white;
        padding: 90px 20px 40px;
        gap: 4px;
        z-index: 100002;
        overflow-y: auto;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
        transform: translateX(-105%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        visibility: visible;
        opacity: 1;
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateX(0);
        pointer-events: auto;
    }

    /* Dark overlay behind the menu */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 100001;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hamburger {
        z-index: 100003 !important;
        position: relative;
    }

    .nav-menu li {
        text-align: left;
        width: 100%;
        list-style: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
        margin-top: 12px;
    }

    .nav-menu a {
        display: block;
        padding: 14px 16px;
        border-radius: 8px;
        font-size: 15px;
        font-weight: 500;
        color: #000;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .nav-menu a:hover,
    .nav-menu a:active {
        background: rgba(92, 204, 218, 0.1);
        color: #5CCCDA !important;
        padding-left: 22px;
    }

    .nav-menu .nav-book-btn {
        background: #5CCCDA;
        color: #1a1612 !important;  /* WCAG AA */
        text-align: center;
        font-weight: 600;
    }
    .nav-menu .nav-book-btn:hover {
        background: #4AB8C9;
        color: #1a1612 !important;
        padding-left: 16px;
    }

    .nav-menu li {
        text-align: center;
        width: 100%;
        list-style: none;
    }

    .nav-menu a {
        display: block;
        padding: 14px 20px;
        border-radius: 8px;
        background: transparent;
        transition: all 0.2s ease;
        font-size: 15px;
        font-weight: 500;
        color: #000;
        text-decoration: none;
    }

    .nav-menu a:hover,
    .nav-menu a:active {
        background: #5CCCDA;
        color: white !important;
    }

    .nav-menu .nav-book-btn {
        background: #5CCCDA;
        color: #1a1612 !important;  /* WCAG AA */
        margin-top: 6px;
    }

    .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;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .reviews-container::-webkit-scrollbar {
        display: none;
    }

    .reviews-grid {
        gap: 14px;
        padding: 0 20px;
        transform: none !important;
        transition: none !important;
    }

    .review-box {
        min-width: 85%;
        flex: 0 0 85%;
        padding: 28px 22px;
        min-height: 240px;
        scroll-snap-align: center;
    }

    .reviews-dots {
        display: none;
    }

    .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;
    }
}


/* 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: #1a1612;  /* WCAG AA: ink-on-teal 9.6:1 */
    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;
    color: #1a1612;
    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: 4px;
    }
    
    .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;
    }
}

/* ===== Visually hidden (a11y + SEO H1 without visual change) ===== */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* ===== SERVICE PAGE HERO IMAGE (under .page-header) ===== */
.svc-page-hero {
    max-width: 1024px;
    margin: -40px auto 0;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.svc-page-hero img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(15, 23, 36, 0.18);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: #E8F6F8;
}

.svc-page-hero-credit {
    position: absolute;
    bottom: 14px;
    right: 76px;
    color: rgba(255, 255, 255, 0.92);
    font-family: 'Avenir LT STD', Avenir, sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

@media (max-width: 768px) {
    .svc-page-hero {
        margin: -24px auto 0;
        padding: 0 16px;
    }
    .svc-page-hero img {
        border-radius: 10px;
    }
    .svc-page-hero-credit {
        bottom: 10px;
        right: 28px;
        font-size: 10px;
    }
}

/* ===== 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 (2 columns, banner-compact - get users to reviews fast) */
@media (max-width: 768px) {
    .services-section {
        padding: 28px 12px;
    }

    .services-header {
        margin-bottom: 18px;
    }

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

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

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

    .service-photo-card {
        aspect-ratio: 2 / 1;
    }

    .service-photo-card h3 {
        font-size: 17px;
        line-height: 1.15;
    }
}

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

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

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

/* 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 (PEEK SHEET) ===== */
.mobile-bottom-nav {
    display: none; /* Hidden by default, shown on mobile */
}

@media (max-width: 768px) {
    :root {
        --kw-mobile-nav-gap: max(14px, env(safe-area-inset-bottom, 0px));
        --kw-visual-bottom-offset: 0px;
    }

    .mobile-bottom-nav {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1.25fr;
        gap: 4px;
        position: fixed;
        bottom: calc(var(--kw-mobile-nav-gap) + var(--kw-visual-bottom-offset));
        left: 12px;
        right: 12px;
        height: 65px;
        min-height: 65px;
        padding: 6px;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid rgba(232, 227, 220, 0.9);
        border-radius: 21px;
        box-shadow: 0 -14px 30px rgba(26, 22, 18, 0.095);
        z-index: 1000;
        align-items: center;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        backface-visibility: hidden;
        contain: layout paint;
        will-change: transform;
        backdrop-filter: blur(18px);
    }

    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-width: 0;
        height: 53px;
        text-decoration: none;
        color: #666;
        transition: all 0.3s ease;
        position: relative;
        gap: 3px;
        padding: 0 4px;
        border-radius: 14px;
        font-weight: 700;
    }

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

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

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

    .mobile-bottom-nav .nav-item.active {
        color: #1a1612;
        background: #faf8f4;
    }

    .mobile-bottom-nav .nav-item.active .nav-icon {
        stroke: currentColor;
    }

    .mobile-bottom-nav .nav-item.active .nav-label {
        color: currentColor;
    }

    .mobile-bottom-nav .nav-item-book {
        color: #1a1612;
        background: #5CCCDA;
        box-shadow: 0 7px 16px rgba(92, 204, 218, 0.21);
        text-transform: uppercase;
        letter-spacing: 0.7px;
    }

    .mobile-bottom-nav .nav-item-book .nav-icon {
        stroke: currentColor;
    }

    .mobile-bottom-nav .nav-item-book .nav-label {
        color: currentColor;
        font-weight: 700;
    }

    body {
        padding-bottom: calc(100px + var(--kw-mobile-nav-gap) + var(--kw-visual-bottom-offset));
    }

    .whatsapp-btn {
        bottom: calc(88px + var(--kw-mobile-nav-gap) + var(--kw-visual-bottom-offset));
        left: 20px;
        transition: transform 0.3s, box-shadow 0.3s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-btn {
        animation: none;
    }
}

/* 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;
    }
}

/* ============================================================
   CATEGORY LANDING PAGES
   Shared editorial system for main service category hubs.
   Matches waxing-barbados.html and facials-barbados.html.
   ============================================================ */
:root {
    --kw-teal: #5CCCDA;
    --kw-teal-dark: #4AB8C9;
    --kw-ink: #1a1612;
    --kw-body: #333;
    --kw-muted: #666;
    --kw-sub: #999;
    --kw-line: #e8e3dc;
    --kw-soft: #faf8f4;
    --kw-soft-2: #f0ece5;
}

html {
    scroll-padding-top: 72px;
    scroll-behavior: smooth;
}

.category-hero {
    background: var(--kw-soft);
    padding: 80px 60px 0;
    position: relative;
    overflow: hidden;
}

.category-hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}

.category-hero-text {
    padding: 24px 0 80px;
}

.category-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--kw-teal);
    margin-bottom: 22px;
    border-bottom: 1px solid var(--kw-teal);
    padding-bottom: 8px;
}

.category-hero h1 {
    font-family: 'Avenir LT STD', Avenir, sans-serif;
    font-size: 64px;
    font-weight: 300;
    letter-spacing: -0.5px;
    line-height: 1.05;
    color: var(--kw-ink);
    margin: 0 0 24px;
}

.category-hero h1 em {
    font-style: italic;
    color: var(--kw-teal);
    font-weight: 300;
}

.category-lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--kw-muted);
    margin: 0 0 36px;
    max-width: 520px;
}

.category-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.category-btn-primary,
.category-btn-ghost,
.category-service-book,
.category-service-learn {
    display: inline-block;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-btn-primary,
.category-btn-ghost {
    padding: 16px 36px;
}

.category-btn-primary,
.category-service-book {
    background: var(--kw-teal);
    color: var(--kw-ink);
    box-shadow: 0 4px 15px rgba(92, 204, 218, 0.28);
}

.category-btn-primary:hover,
.category-service-book:hover {
    background: var(--kw-teal-dark);
    color: var(--kw-ink);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 204, 218, 0.4);
}

.category-btn-ghost,
.category-service-learn {
    background: transparent;
    color: var(--kw-ink);
    border: 1.5px solid var(--kw-ink);
}

.category-btn-ghost:hover,
.category-service-learn:hover {
    background: var(--kw-ink);
    color: white;
}

.category-hero-image {
    position: relative;
    align-self: stretch;
    background: var(--kw-soft-2);
    border-radius: 4px;
    min-height: 520px;
    max-height: 640px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.category-hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(92,204,218,0.04) 0%, rgba(240,236,229,0) 60%);
    z-index: 1;
}

.category-hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.category-hero-credit {
    position: absolute;
    bottom: 18px;
    left: 18px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--kw-ink);
    text-transform: uppercase;
    z-index: 2;
}

.category-nav-strip {
    background: white;
    border-bottom: 1px solid var(--kw-line);
    position: sticky;
    top: 0;
    z-index: 40;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.category-nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    gap: 4px;
    padding: 14px 60px;
    white-space: nowrap;
}

.category-nav-strip a {
    display: inline-block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--kw-muted);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.category-nav-strip a:hover {
    background: var(--kw-soft);
    color: var(--kw-teal);
}

.category-section {
    max-width: 1240px;
    margin: 0 auto;
    padding: 70px 60px;
}

.category-section-head {
    text-align: center;
    margin-bottom: 42px;
}

.category-section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--kw-teal);
    margin-bottom: 16px;
}

.category-section h2,
.category-section-title {
    font-family: 'Avenir LT STD', Avenir, sans-serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--kw-ink);
    margin: 0 0 16px;
    letter-spacing: -0.3px;
    line-height: 1.1;
}

.category-section h2 em,
.category-section-title em {
    font-style: italic;
    color: var(--kw-teal);
}

.category-section-lead {
    font-size: 17px;
    line-height: 1.7;
    color: var(--kw-muted);
    max-width: 720px;
    margin: 0 auto;
}

.category-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.category-service-card {
    background: white;
    border: 1px solid var(--kw-line);
    border-radius: 8px;
    padding: 28px;
    transition: all 0.25s ease;
}

.category-service-card:hover {
    border-color: var(--kw-teal);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(92,204,218,0.12);
}

.category-service-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.category-service-card h3 {
    font-family: 'Avenir LT STD', Avenir, sans-serif;
    font-size: 22px;
    font-weight: 300;
    color: var(--kw-ink);
    line-height: 1.18;
    margin: 0;
}

.category-service-price {
    color: var(--kw-teal);
    font-size: 22px;
    font-weight: 700;
    white-space: nowrap;
}

.category-service-meta {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--kw-sub);
    margin-bottom: 14px;
}

.category-service-card p {
    color: var(--kw-muted);
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 18px;
}

.category-service-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-service-book,
.category-service-learn {
    padding: 12px 22px;
    font-size: 11px;
    letter-spacing: 1.2px;
}

.category-highlight-band {
    background: var(--kw-soft);
}

.category-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.category-proof-card {
    background: white;
    border: 1px solid var(--kw-line);
    border-radius: 8px;
    padding: 26px;
}

.category-proof-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--kw-ink);
    margin: 0 0 10px;
}

.category-proof-card p {
    color: var(--kw-muted);
    line-height: 1.65;
    margin: 0;
}

.category-page .page-header,
.category-page .svc-page-hero {
    display: none;
}

.category-page .page-content,
.category-page .page-content .container {
    max-width: 1120px !important;
    margin: 0 auto !important;
    padding: 54px 60px 80px !important;
    background: white !important;
}

.category-page .page-content .container {
    padding: 0 !important;
}

.category-page .content-section {
    max-width: 1120px !important;
    margin: 0 auto 70px !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
}

.category-page .content-section[style*="background"] {
    background: var(--kw-soft) !important;
    padding: 58px !important;
    border: 1px solid var(--kw-line) !important;
    border-radius: 8px !important;
}

.category-page .page-content h2,
.category-page .content-section h2,
.category-page .section-title {
    font-family: 'Avenir LT STD', Avenir, sans-serif !important;
    color: var(--kw-ink) !important;
    font-size: 36px !important;
    font-weight: 300 !important;
    letter-spacing: -0.2px !important;
    line-height: 1.12 !important;
    text-transform: none !important;
    margin: 58px 0 20px !important;
    padding: 0 0 16px !important;
    border-bottom: 1px solid var(--kw-line) !important;
    text-align: left !important;
}

.category-page .page-content h2:first-child,
.category-page .content-section:first-child h2:first-child {
    margin-top: 0 !important;
}

.category-page .page-content h3,
.category-page .content-section h3 {
    font-family: 'Avenir LT STD', Avenir, sans-serif !important;
    color: var(--kw-ink) !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    line-height: 1.25 !important;
    text-transform: none !important;
    margin: 28px 0 12px !important;
}

.category-page .page-content p,
.category-page .content-section p,
.category-page .page-content li,
.category-page .content-section li {
    color: var(--kw-muted) !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
}

.category-page .page-content p,
.category-page .content-section p {
    margin: 0 0 18px !important;
}

.category-page .page-content ul,
.category-page .page-content ol,
.category-page .content-section ul,
.category-page .content-section ol {
    margin: 0 0 24px 22px !important;
    padding: 0 !important;
}

.category-page .page-content strong,
.category-page .content-section strong {
    color: var(--kw-ink) !important;
    font-weight: 700 !important;
}

.category-page .page-content a:not(.btn):not(.category-service-book):not(.category-service-learn),
.category-page .content-section a:not(.btn):not(.category-service-book):not(.category-service-learn) {
    color: var(--kw-ink) !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border-bottom: 1px solid var(--kw-teal) !important;
}

.category-page .page-content > p:first-child,
.category-page .content-section:first-child > p:first-child,
.category-page .page-content .container > p:first-child {
    color: var(--kw-ink) !important;
    font-size: 20px !important;
    line-height: 1.7 !important;
    font-weight: 300 !important;
    text-align: center !important;
    max-width: 760px !important;
    margin: 0 auto 42px !important;
}

.category-page .pricing-table,
.category-page .services-table,
.category-page table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    background: white !important;
    border: 1px solid var(--kw-line) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    box-shadow: none !important;
    margin: 24px 0 34px !important;
}

.category-page .pricing-table thead,
.category-page .services-table thead,
.category-page table thead {
    background: var(--kw-soft) !important;
    color: var(--kw-ink) !important;
}

.category-page .pricing-table th,
.category-page .services-table th,
.category-page table th {
    color: var(--kw-ink) !important;
    background: var(--kw-soft) !important;
    padding: 16px 18px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid var(--kw-line) !important;
    text-align: left !important;
}

.category-page .pricing-table td,
.category-page .services-table td,
.category-page table td {
    padding: 18px !important;
    border-bottom: 1px solid var(--kw-line) !important;
    color: var(--kw-muted) !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    background: white !important;
}

.category-page .pricing-table tr:last-child td,
.category-page .services-table tr:last-child td,
.category-page table tr:last-child td {
    border-bottom: 0 !important;
}

.category-page .service-name {
    color: var(--kw-ink) !important;
    font-weight: 700 !important;
}

.category-page .service-price {
    color: var(--kw-teal) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
}

.category-page .service-time,
.category-page .service-duration {
    color: var(--kw-sub) !important;
    font-size: 14px !important;
}

.category-page .benefit-box,
.category-page .package-card,
.category-page .info-box,
.category-page .cta-box,
.category-page .page-content [style*="border-left"] {
    background: white !important;
    border: 1px solid var(--kw-line) !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    padding: 26px !important;
    margin: 20px 0 !important;
}

.category-page .benefit-box {
    border-left: 4px solid var(--kw-teal) !important;
}

.category-page .package-grid,
.category-page .info-boxes {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
    margin: 26px 0 38px !important;
}

.category-page .package-card,
.category-page .info-box {
    margin: 0 !important;
}

.category-page .package-card h3,
.category-page .benefit-box h3,
.category-page .info-box h3,
.category-page .cta-box h3 {
    color: var(--kw-ink) !important;
    font-size: 20px !important;
    margin-top: 0 !important;
}

.category-page .faq-dropdown {
    border-bottom: 1px solid var(--kw-line) !important;
}

.category-page .faq-dropdown summary {
    color: var(--kw-ink) !important;
    padding: 20px 0 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
}

.category-page .faq-dropdown summary:hover {
    color: var(--kw-teal) !important;
}

.category-page .faq-dropdown summary::after {
    color: var(--kw-teal) !important;
}

.category-page .faq-dropdown p {
    color: var(--kw-muted) !important;
    padding: 0 0 20px !important;
    margin: 0 !important;
}

.category-page .cta-box,
.category-page .cta-section {
    background: var(--kw-ink) !important;
    color: white !important;
    text-align: center !important;
}

.category-page .cta-section {
    padding: 70px 60px !important;
    margin: 0 !important;
}

.category-page .cta-box h3,
.category-page .cta-section h2,
.category-page .cta-title {
    color: white !important;
    border: 0 !important;
    margin: 0 0 14px !important;
    padding: 0 !important;
    text-align: center !important;
}

.category-page .cta-box p,
.category-page .cta-section p,
.category-page .cta-text {
    color: rgba(255,255,255,0.78) !important;
    text-align: center !important;
    max-width: 680px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.category-page .btn,
.category-page .cta-btn,
.category-page .modal-book-btn {
    display: inline-block !important;
    background: var(--kw-teal) !important;
    color: var(--kw-ink) !important;
    padding: 14px 30px !important;
    border-radius: 50px !important;
    border: 0 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 1.4px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(92,204,218,0.28) !important;
    transition: all 0.25s ease !important;
}

.category-page .btn:hover,
.category-page .cta-btn:hover,
.category-page .modal-book-btn:hover {
    background: var(--kw-teal-dark) !important;
    color: var(--kw-ink) !important;
    transform: translateY(-2px) !important;
}

@media (max-width: 1024px) {
    .category-hero {
        padding: 60px 30px 0;
    }

    .category-hero-inner {
        gap: 40px;
    }

    .category-hero h1 {
        font-size: 52px;
    }

    .category-nav-inner,
    .category-section {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 60px;
    }

    .category-hero {
        padding: 24px 18px 0;
        text-align: left;
    }

    .category-hero-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-hero-text {
        padding: 8px 0 24px;
        order: 2;
    }

    .category-hero-image {
        order: 1;
        min-height: 280px;
        max-height: 360px;
    }

    .massage-category-page .category-hero-text {
        order: 1;
    }

    .massage-category-page .category-hero-image {
        order: 2;
        min-height: clamp(420px, 118vw, 520px);
        max-height: none;
    }

    .massage-category-page .category-hero-image img[src*="massage-portrait"] {
        object-position: center 14%;
    }

    .category-eyebrow {
        font-size: 11px;
        letter-spacing: 2.5px;
        margin-bottom: 14px;
        padding-bottom: 6px;
    }

    .category-hero h1 {
        font-size: 34px;
        line-height: 1.08;
        margin-bottom: 14px;
    }

    .category-lead {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 22px;
    }

    .category-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .category-btn-primary,
    .category-btn-ghost {
        text-align: center;
        padding: 14px 24px;
        font-size: 12px;
    }

    .category-hero-credit {
        font-size: 10px;
        padding: 6px 10px;
        bottom: 12px;
        left: 12px;
    }

    .category-nav-inner {
        padding: 10px 18px;
        gap: 2px;
    }

    .category-nav-strip a {
        padding: 6px 14px;
        font-size: 12px;
    }

    .category-section {
        padding: 36px 18px;
    }

    .category-section-head {
        margin-bottom: 24px;
    }

    .category-section-label {
        font-size: 10px;
        letter-spacing: 2.5px;
        margin-bottom: 10px;
    }

    .category-section h2,
    .category-section-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .category-section-lead {
        font-size: 14px;
        line-height: 1.6;
    }

    .category-service-grid,
    .category-proof-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .category-service-card,
    .category-proof-card {
        padding: 22px 20px 20px;
    }

    .category-service-top {
        gap: 12px;
    }

    .category-service-card h3 {
        font-size: 19px;
    }

    .category-service-price {
        font-size: 20px;
    }
}

@media (max-width: 380px) {
    .category-hero {
        padding: 20px 16px 0;
    }

    .category-hero h1 {
        font-size: 30px;
    }

    .category-lead {
        font-size: 14px;
    }

    .category-section {
        padding: 30px 16px;
    }

    .category-service-card,
    .category-proof-card {
        padding: 20px 18px 18px;
    }
}
