/**
 * SpaToGo - patch.css
 * Bridges HTML class names → style.css rules
 * Fixes for all pages
 */

/* ============================================
   HEADER - Always solid background
   ============================================ */

.header {
    background: var(--dark) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.18) !important;
}

/* ============================================
   HEADER FIXES
   ============================================ */

/* Dropdown hover */
.has-dropdown:hover > .dropdown-menu,
.has-dropdown.dropdown-open > .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.dropdown-menu li a:hover {
    background: var(--primary-light);
    color: var(--primary) !important;
}

/* Logo sub-text color when scrolled */
.header.scrolled .logo-sub {
    color: var(--text-light) !important;
}

.header.scrolled .logo-highlight {
    color: var(--primary);
}

.logo-highlight {
    color: var(--secondary);
}

/* Mobile close button */
#mobile-close-btn span {
    background: var(--white) !important;
}

/* ============================================
   HERO SECTION
   ============================================ */

/* .hero-section maps to .hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        rgba(26, 35, 50, 0.92) 0%,
        rgba(74, 124, 89, 0.75) 50%,
        rgba(26, 35, 50, 0.88) 100%
    ),
    url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1600&q=80') center/cover no-repeat;
}

.hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 35, 50, 0.6) 0%,
        rgba(74, 124, 89, 0.4) 100%
    );
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-section .hero-content {
    text-align: center;
    padding: 120px 20px 80px;
    max-width: 800px;
    margin-inline: auto;
    width: 100%;
}

.hero-section .hero-title {
    font-size: clamp(2.4rem, 6vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-section .hero-subtitle-text {
    display: block;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--secondary);
    margin-top: 8px;
}

/* .hero-description maps to .hero-subtitle */
.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    max-width: 650px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

/* .hero-cta already in style.css */
.hero-section .hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Trust indicators → like hero-stats */
.hero-trust-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-item i {
    font-size: 1.2rem;
    color: var(--secondary);
}

/* ============================================
   SECTION TITLES
   ============================================ */

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to left, var(--primary), var(--secondary));
    border-radius: 3px;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 20px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

/* .steps-grid maps to .steps-container */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 15%;
    left: 15%;
    height: 2px;
    background: linear-gradient(to left, var(--primary-light), var(--secondary-light));
    z-index: 0;
}

/* .step-card maps to .step-item */
.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px;
}

/* .step-number already in style.css */
.step-card .step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(74, 124, 89, 0.3);
}

/* .step-icon already in style.css */
.step-card .step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.step-card:hover .step-icon {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--primary);
    color: var(--white);
}

.step-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.step-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 250px;
    margin: 0 auto;
}

/* ============================================
   MASSAGE TYPE CARDS GRID
   ============================================ */

/* .massage-grid: same as .services-grid */
.massage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

/* .massage-card already partially in style.css - enhance it */
.massage-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.massage-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to left, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.massage-card:hover::before {
    opacity: 1;
}

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

.massage-card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.massage-card:hover .massage-card-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.massage-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.massage-card-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
}

.massage-card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 4px 0;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.price-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.massage-card-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* ============================================
   WHY SPATOGO (BENEFITS)
   ============================================ */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--primary);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--primary);
    color: var(--white);
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.benefit-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ============================================
   PRICING TABLE
   ============================================ */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: var(--primary);
    color: var(--white);
}

.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-price,
.pricing-card.featured .pricing-duration {
    color: var(--white);
}

.pricing-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-duration {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

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

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 5rem;
    color: var(--primary-light);
    line-height: 1;
    font-family: Georgia, serif;
}

.review-stars {
    color: #f59e0b;
    margin-bottom: 12px;
    font-size: 1rem;
}

.review-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.review-name {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.review-location {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   FAQ FIXES
   ============================================ */

/* .faq-item.open → .faq-item.active */
.faq-item.open .faq-answer {
    max-height: 400px;
}

.faq-item.open .faq-toggle {
    transform: rotate(180deg);
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-banner h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-banner p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

/* ============================================
   FOOTER  (both .footer and .site-footer)
   ============================================ */

.site-footer,
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    display: block;
}

.footer-logo-highlight {
    color: var(--secondary);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-right: 6px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact-item i {
    color: var(--secondary);
    width: 18px;
    flex-shrink: 0;
}

.footer-col {
    min-width: 0;
}

.footer-about {}

.logo-tagline {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    line-height: 1;
    margin-top: 2px;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}

/* .social-link → same as .footer-social a */
.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer contact list (4th column) */
.footer-contact {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-contact li i {
    color: var(--secondary);
    width: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact li a:hover {
    color: var(--secondary);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    text-align: center;
}

.footer-legal-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    font-size: 0.8rem;
}

.footer-legal-nav a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-nav a:hover {
    color: var(--secondary);
}

.footer-legal-sep {
    color: rgba(255, 255, 255, 0.25);
    user-select: none;
}

.copyright,
.credit {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
    margin: 0;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   LEGAL PAGES (תקנון, פרטיות, נגישות)
   ============================================ */

.legal-document {
    padding-top: 120px;
    padding-bottom: 72px;
    background: var(--bg);
}

.legal-document-inner {
    max-width: 760px;
    margin: 0 auto;
}

.legal-document-title {
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 8px;
    line-height: 1.25;
}

.legal-document-updated {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0 0 32px;
}

.legal-document-body {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px 40px;
    box-shadow: var(--shadow);
    color: var(--text);
    line-height: 1.85;
    font-size: 0.97rem;
}

.legal-document-body h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin: 32px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.legal-document-body h2:first-of-type {
    margin-top: 0;
}

.legal-document-body p {
    margin: 0 0 14px;
}

.legal-document-body ul {
    margin: 0 0 16px;
    padding-right: 22px;
}

.legal-document-body li {
    margin-bottom: 8px;
}

.legal-document-body a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-document-body a:hover {
    color: var(--primary-dark);
}

.legal-intro {
    font-size: 1.02rem;
    color: var(--text);
}

.legal-note {
    background: var(--primary-light);
    border-radius: var(--radius);
    padding: 14px 18px;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 8px !important;
}

/* ============================================
   COOKIE CONSENT
   ============================================ */

.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 940;
    padding: 16px;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
    pointer-events: none;
}

.cookie-consent-inner {
    pointer-events: auto;
    max-width: 640px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(26, 35, 50, 0.97) 0%, rgba(45, 58, 74, 0.96) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 18px 20px 16px;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.2), 0 4px 24px rgba(74, 124, 89, 0.15);
    backdrop-filter: blur(12px);
}

.cookie-consent-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.cookie-consent-title i {
    color: var(--secondary);
    opacity: 0.95;
}

.cookie-consent-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    margin: 0 0 16px;
}

.cookie-consent-policy-link {
    color: var(--secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 500;
    white-space: nowrap;
}

.cookie-consent-policy-link:hover {
    color: #e8d5a3;
}

.cookie-consent-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.cookie-consent-accept {
    width: 100%;
    max-width: 280px;
    margin-inline-start: auto;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(74, 124, 89, 0.35);
}

.cookie-consent-secondary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 8px 14px;
    padding-bottom: 8px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cookie-consent-quiet {
    background: transparent;
    border: none;
    padding: 4px 8px;
    font-family: inherit;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

.cookie-consent-quiet:hover {
    color: rgba(255, 255, 255, 0.75);
}

body.cookie-consent-visible .whatsapp-float {
    bottom: calc(120px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 575px) {
    body.cookie-consent-visible .whatsapp-float {
        bottom: calc(200px + env(safe-area-inset-bottom, 0px));
    }
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 900;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
    position: absolute;
    left: calc(100% + 10px);
    background: var(--dark);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ============================================
   RESPONSIVE FIXES
   ============================================ */

@media (max-width: 992px) {
    .header-nav { display: none; }
    .header-cta { display: none; }
    .hamburger { display: flex; }

    .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
    .hero-section .hero-content {
        padding: 100px 16px 60px;
    }

    .hero-trust-indicators {
        gap: 20px;
    }

    .massage-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    .cta-banner {
        padding: 40px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .massage-grid,
    .benefits-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-section .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-trust-indicators {
        flex-direction: column;
        gap: 14px;
    }
}

/* ============================================
   BOOKING PAGE v2 — matches booking.js IDs
   ============================================ */

/* Page wrapper */
.booking-page {
    background: var(--bg);
    min-height: 100vh;
    padding-bottom: 80px;
}

/* Page header banner */
.booking-page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 60%, var(--primary) 100%);
    padding: 100px 0 40px;
    text-align: center;
    margin-bottom: 40px;
}
.booking-page-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}
.booking-page-sub {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
}

/* ── Progress bar ── */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 560px;
    margin: 0 auto 40px;
}
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
}
.progress-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}
.progress-num { display: block; }
.progress-check { display: none; width: 20px; height: 20px; }
.progress-step.active .progress-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(74,124,89,0.4);
}
.progress-step.completed .progress-circle {
    background: var(--primary);
    border-color: var(--primary);
}
.progress-step.completed .progress-num { display: none; }
.progress-step.completed .progress-check { display: block; color: var(--white); }
.progress-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
}
.progress-step.active .progress-label { color: var(--primary); font-weight: 700; }
.progress-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    min-width: 40px;
    max-width: 90px;
    margin-bottom: 22px;
    transition: background 0.3s;
}

/* ── Booking card (white panel) ── */
.booking-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    max-width: 880px;
    margin: 0 auto;
    overflow: hidden;
}
.booking-card-header {
    padding: 36px 40px 28px;
    border-bottom: 1px solid var(--border-light);
}
.step-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.booking-card-title {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 6px;
}
.booking-card-sub {
    color: var(--text-light);
    font-size: 0.97rem;
}
.booking-card-footer {
    padding: 24px 40px;
    background: var(--bg);
    border-top: 1px solid var(--border-light);
}
.booking-card-footer.two-actions {
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

/* ── Booking step visibility ── */
.booking-step { display: none; animation: bkFadeIn 0.3s ease; }
.booking-step.active { display: block; }
@keyframes bkFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* ── Massage type grid ── */
.massage-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 14px;
    padding: 28px 40px;
}
.massage-type-card {
    background: var(--bg);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}
.massage-type-card:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74,124,89,0.12);
}
.massage-type-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(74,124,89,0.18);
}
.type-card-icon {
    color: var(--primary);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.massage-type-card.selected .type-card-icon,
.massage-type-card:hover .type-card-icon { color: var(--primary-dark); }
.booking-svg-icon circle:first-child { transition: fill-opacity 0.25s ease; }
.massage-type-card.selected .booking-svg-icon circle:first-child,
.massage-type-card:hover .booking-svg-icon circle:first-child { fill-opacity: 0.2; }
.type-card-body {}
.type-card-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 4px;
    line-height: 1.3;
}
.type-card-price {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}
.type-card-price strong { color: var(--primary); }
.type-card-check {
    position: absolute;
    top: 8px;
    left: 8px;
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.2s;
}
.massage-type-card.selected .type-card-check { opacity: 1; }

/* ── Duration selector ── */
.duration-selector {
    display: none;
    padding: 0 40px 28px;
    animation: bkFadeIn 0.25s ease;
}
.duration-selector.visible { display: block; }
.duration-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}
.duration-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.duration-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 24px;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    min-width: 110px;
    font-family: 'Heebo', sans-serif;
}
.duration-pill:hover:not(.disabled) {
    border-color: var(--primary);
    background: var(--primary-light);
}
.duration-pill.selected {
    border-color: var(--primary) !important;
    background: var(--primary) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 16px rgba(74,124,89,0.3);
}
.duration-pill.disabled { opacity: 0.4; cursor: not-allowed; }
.pill-duration { font-size: 0.95rem; font-weight: 700; }
.pill-price { font-size: 0.88rem; color: var(--primary); font-weight: 600; }
.duration-pill.selected .pill-price { color: rgba(255,255,255,0.9); }
.pill-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    white-space: nowrap;
}
.duration-pill.selected .pill-badge { background: rgba(255,255,255,0.25); color: var(--white); }

/* ── Price display ── */
.booking-price-display {
    display: none;
    align-items: center;
    gap: 12px;
    margin: 0 40px 28px;
    padding: 16px 24px;
    background: var(--primary-light);
    border: 1px solid rgba(74,124,89,0.2);
    border-radius: var(--radius);
}
.booking-price-display.visible { display: flex; }
.price-display-label { color: var(--text); font-size: 0.95rem; }
.price-display-amount { font-size: 1.5rem; font-weight: 800; color: var(--primary); }

/* ── Form sections inside booking card ── */
.form-section {
    padding: 24px 40px;
    border-bottom: 1px solid var(--border-light);
}
.form-section:last-of-type { border-bottom: none; }
.form-section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}
.form-section-title svg { color: var(--primary); flex-shrink: 0; }
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 16px 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group-wide { grid-column: 1 / -1; }
.form-label { font-size: 0.88rem; font-weight: 600; color: var(--dark); }
.req { color: #e53e3e; }
.form-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: 'Heebo', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}
.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74,124,89,0.12);
}
.form-input.field-error { border-color: #e53e3e; }
.form-textarea { resize: vertical; min-height: 88px; }
.error-message { font-size: 0.8rem; color: #e53e3e; margin-top: 4px; }

/* ── Time slots grid ── */
.time-slots-section { margin-top: 20px; }
.time-slots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}
.time-chip {
    padding: 7px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    font-size: 0.88rem;
    font-family: 'Heebo', sans-serif;
    color: var(--text);
    cursor: pointer;
    transition: all 0.18s ease;
}
.time-chip:hover:not(.unavailable) {
    border-color: var(--primary);
    background: var(--primary-light);
    color: var(--primary);
}
.time-chip.selected {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
}
.time-chip.unavailable {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* ── City autocomplete dropdown ── */
.city-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    left: 0;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 100;
    max-height: 220px;
    overflow-y: auto;
}
.city-dropdown.visible { display: block; }
.city-option {
    padding: 10px 14px;
    font-size: 0.92rem;
    color: var(--text);
    cursor: pointer;
    transition: background 0.15s;
}
.city-option:hover { background: var(--primary-light); color: var(--primary); }

/* ── Gender toggle ── */
.gender-toggle { display: flex; gap: 10px; flex-wrap: wrap; }
.gender-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    font-size: 0.9rem;
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}
.gender-btn:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.gender-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* ── Step 3 summary (built by JS) ── */
.summary-card { padding: 0 40px; }
.summary-section {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}
.summary-section:last-child { border-bottom: none; }
.summary-section-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 0.9rem;
}
.summary-label { color: var(--text-light); }
.summary-value { color: var(--dark); font-weight: 600; }
.summary-price { background: var(--primary-light); margin: 0 -40px; padding: 20px 40px; border-radius: 0; }
.summary-total .summary-label,
.summary-total .summary-value { font-weight: 700; font-size: 1rem; }
.price-total { color: var(--primary) !important; font-size: 1.2rem !important; }

/* ── Terms row ── */
.terms-row {
    padding: 20px 40px 0;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}
.checkbox-label input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.checkbox-box {
    width: 20px; height: 20px; min-width: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    margin-top: 1px;
}
.checkbox-label input:checked + .checkbox-box {
    background: var(--primary); border-color: var(--primary);
}
.checkbox-label input:checked + .checkbox-box::after {
    content: '✓'; color: white; font-size: 13px; font-weight: 700; line-height: 1;
}
.checkbox-label a { color: var(--primary); text-decoration: underline; }

/* ── Confirm button spinner ── */
.btn-confirm { position: relative; gap: 8px; }
.btn-spinner {
    display: none;
    width: 18px; height: 18px;
    border: 2.5px solid rgba(255,255,255,0.35);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    flex-shrink: 0;
}
.btn-confirm.loading .btn-spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Step 4 — Success ── */
.booking-success-card { text-align: center; padding: 60px 40px; }
.success-anim { margin-bottom: 28px; }
.success-circle {
    width: 90px; height: 90px;
    margin: 0 auto;
}
.success-svg { width: 90px; height: 90px; }
.success-circle-bg {
    stroke: var(--primary);
    stroke-width: 2;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: dashCircle 0.6s ease-out 0.2s forwards;
}
.success-check-path {
    stroke: var(--primary);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: dashCheck 0.4s ease-out 0.8s forwards;
}
@keyframes dashCircle { to { stroke-dashoffset: 0; } }
@keyframes dashCheck  { to { stroke-dashoffset: 0; } }
.success-heading { font-size: clamp(1.6rem,4vw,2.2rem); font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.success-sub { color: var(--text-light); margin-bottom: 32px; }
.success-number-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-light);
    border: 1px solid rgba(74,124,89,0.2);
    border-radius: var(--radius);
    padding: 14px 28px;
    margin-bottom: 32px;
}
.snb-label { font-size: 0.9rem; color: var(--text-light); }
.snb-value { font-size: 1.25rem; font-weight: 800; color: var(--primary); font-family: monospace; letter-spacing: 1px; }
.success-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 36px;
    text-align: right;
}
.success-detail-row {
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border-radius: var(--radius);
    padding: 14px 16px;
    gap: 4px;
}
.detail-label { font-size: 0.78rem; color: var(--text-light); }
.detail-value { font-size: 0.95rem; font-weight: 700; color: var(--dark); }
.price-total.detail-value { color: var(--primary); font-size: 1.1rem; }
.success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Confetti ── */
.confetti-container {
    position: fixed; inset: 0; pointer-events: none; z-index: 9999; overflow: hidden;
}
.confetti-piece {
    position: absolute;
    width: 10px; height: 10px;
    top: -20px;
    border-radius: 2px;
    animation: confettiFall linear forwards;
}
@keyframes confettiFall {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ── SVG icon general size in booking ── */
.booking-svg-icon { display: block; }

/* ── WhatsApp btn ── */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white !important;
    padding: 11px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(37,211,102,0.4); }

/* ── Responsive ── */
@media (max-width: 768px) {
    .booking-page-header { padding: 80px 0 32px; }
    .booking-card-header, .booking-card-footer, .form-section, .summary-card, .terms-row { padding-right: 20px; padding-left: 20px; }
    .massage-type-grid { grid-template-columns: repeat(2, 1fr); padding: 20px; gap: 10px; }
    .duration-selector { padding: 0 20px 20px; }
    .booking-price-display { margin: 0 20px 20px; }
    .duration-pills { gap: 8px; }
    .duration-pill { min-width: 90px; padding: 12px 16px; }
    .booking-card-footer.two-actions { flex-direction: column-reverse; }
    .booking-card-footer.two-actions .btn { width: 100%; justify-content: center; }
    .booking-success-card { padding: 40px 20px; }
    .success-actions { flex-direction: column; align-items: stretch; }
    .success-detail-row { text-align: right; }
    .summary-price { margin: 0 -20px; padding: 20px; }
}
@media (max-width: 480px) {
    .massage-type-grid { grid-template-columns: 1fr; }
    .progress-label { font-size: 0.68rem; }
}

/* ── keep old .booking-section compat ── */
.booking-section {
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: 100vh;
    background: var(--bg);
}
.booking-header { text-align: center; margin-bottom: 48px; }
.booking-title { font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.booking-subtitle { color: var(--text-light); font-size: 1.05rem; }

/* ============================================
   BOOKING PAGE - legacy aliases (old booking.php)
   ============================================ */
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: 100vh;
    background: var(--bg);
}

.booking-header {
    text-align: center;
    margin-bottom: 48px;
}

.booking-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.booking-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ── Step Indicator ── */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.step-indicator-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

/* .step-circle → same as .step-indicator-circle */
.step-circle,
.step-indicator-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.step-indicator-item.active .step-circle,
.step-indicator-item.active .step-indicator-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(74,124,89,0.35);
}

.step-indicator-item.completed .step-circle,
.step-indicator-item.completed .step-indicator-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* .step-label → same as .step-indicator-label */
.step-label,
.step-indicator-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
}

.step-indicator-item.active .step-label,
.step-indicator-item.active .step-indicator-label {
    color: var(--primary);
    font-weight: 700;
}

/* .step-connector → same as .step-indicator-line */
.step-connector,
.step-indicator-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    min-width: 48px;
    max-width: 100px;
    margin-bottom: 22px; /* aligns with circle center */
}

/* ── Booking Wizard ── */
.booking-wizard {
    max-width: 860px;
    margin: 0 auto;
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
    animation: fadeInUp 0.35s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.step-content {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.step-content > .step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.step-content > .step-description {
    color: var(--text-light);
    margin-bottom: 32px;
}

/* ── Massage Type Selection Grid ── */
.massage-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.massage-type-card {
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.massage-type-card:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-3px);
}

.massage-type-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(74,124,89,0.15);
}

.type-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.massage-type-card.selected .type-card-icon,
.massage-type-card:hover .type-card-icon {
    background: var(--primary);
    color: var(--white);
}

.type-card-name {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    line-height: 1.3;
}

.type-card-price {
    font-size: 0.82rem;
    color: var(--text-light);
}

.type-card-check {
    position: absolute;
    top: 8px;
    left: 8px;
    font-size: 1.1rem;
    color: var(--primary);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.massage-type-card.selected .type-card-check {
    opacity: 1;
}

/* ── Duration Selector ── */
.duration-selector {
    margin-bottom: 24px;
}

.duration-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.duration-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* .duration-pill.selected mirrors .duration-pill.active from booking.css */
.duration-pill.selected {
    background: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
}

/* ── Step Summary (small summary inside step 1) ── */
.step-summary {
    background: var(--primary-light);
    border: 1px solid rgba(74,124,89,0.2);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.95rem;
    color: var(--text);
}

.summary-row.total {
    border-top: 1px solid rgba(74,124,89,0.2);
    margin-top: 8px;
    padding-top: 12px;
    font-size: 1.05rem;
}

.summary-row.total strong {
    color: var(--primary);
    font-size: 1.15rem;
}

/* ── Step Actions ── */
.step-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: flex-end;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* ── Booking Form ── */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-section {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-light);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-section-title i {
    color: var(--primary);
    width: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-wide {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: 'Heebo', sans-serif;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(74,124,89,0.12);
}

.form-input.is-invalid {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229,62,62,0.1);
}

.form-input.is-valid {
    border-color: var(--primary);
}

.form-textarea {
    resize: vertical;
    min-height: 90px;
}

.form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 14px center;
}

.form-error {
    font-size: 0.8rem;
    color: #e53e3e;
    min-height: 18px;
    display: block;
}

/* ── Gender Toggle ── */
.gender-toggle {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* .gender-btn mirrors .gender-toggle-option from booking.css */
.gender-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--text);
    font-size: 0.9rem;
    font-family: 'Heebo', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gender-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.gender-btn.selected,
.gender-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ── Summary Sections (step 3) ── */
.booking-summary {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.summary-section {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-light);
}

.summary-section:last-of-type {
    border-bottom: none;
}

.summary-pricing {
    background: var(--primary-light);
    margin: 0 -8px;
    padding: 20px 28px;
    border-radius: var(--radius);
    border: none;
}

.summary-section-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-section-title i {
    color: var(--primary);
    width: 18px;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.summary-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text);
    gap: 16px;
}

.summary-detail-row span:first-child {
    color: var(--text-light);
    flex-shrink: 0;
}

.summary-notes {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    background: var(--bg);
    padding: 12px 16px;
    border-radius: var(--radius);
}

/* ── Price Breakdown ── */
.price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-breakdown-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text);
}

.price-breakdown-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid rgba(74,124,89,0.3);
    margin-top: 8px;
    padding-top: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.price-breakdown-total strong {
    color: var(--primary);
    font-size: 1.4rem;
}

/* ── Terms & Checkbox ── */
.terms-section {
    padding: 16px 0 0;
    margin-top: 8px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 1px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
}

/* ── Booking Success Screen ── */
.booking-success {
    text-align: center;
    padding: 20px 0;
}

.success-animation {
    margin-bottom: 24px;
}

.success-checkmark {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(74,124,89,0.35);
    animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.success-checkmark i {
    font-size: 2.6rem;
    color: var(--white);
}

.success-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.success-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 28px;
}

.success-booking-number {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-light);
    border: 1px solid rgba(74,124,89,0.2);
    border-radius: var(--radius);
    padding: 14px 28px;
    margin-bottom: 32px;
    font-size: 0.95rem;
    color: var(--text);
}

.success-booking-number strong {
    font-size: 1.2rem;
    color: var(--primary);
    font-family: monospace;
    letter-spacing: 1px;
}

.success-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 32px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.success-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg);
    border-radius: var(--radius);
    padding: 14px 18px;
    text-align: right;
    font-size: 0.9rem;
    color: var(--text);
}

.success-detail i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 18px;
    flex-shrink: 0;
}

.success-message {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.success-contact {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

/* ── WhatsApp Button ── */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: white !important;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    color: white !important;
}

.btn-whatsapp.btn-block {
    width: 100%;
    justify-content: center;
}

/* ── btn-block helper ── */
.btn-block {
    width: 100%;
    justify-content: center;
    display: flex;
}

/* ── SVG icon sizing per context ── */
.massage-svg-icon { display: block; }
.massage-card-icon .massage-svg-icon { /* 40x40 already set via function */ }
.pricing-svg-icon { display: block; flex-shrink: 0; }
.hero-svg-icon { display: block; color: white; }
.pricing-type .pricing-svg-icon circle:first-child { fill-opacity: 0.15; }

/* Legacy emoji fallback */
.icon-emoji {
    font-size: 1.8rem;
    line-height: 1;
    display: inline-block;
}
.pricing-type .icon-emoji { font-size: 1.1rem; }
.page-hero-icon .icon-emoji { font-size: 2.2rem; }
.type-card-icon .icon-emoji { font-size: 1.4rem; }

/* Booking responsive */
@media (max-width: 768px) {
    .booking-section { padding-top: 80px; }
    .step-content { padding: 28px 20px; }
    .massage-type-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
    .step-actions { justify-content: stretch; }
    .step-actions .btn { flex: 1; }
    .success-details { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .step-connector, .step-indicator-line { min-width: 28px; }
}

@media (max-width: 480px) {
    .massage-type-grid { grid-template-columns: repeat(2, 1fr); }
    .duration-pills { flex-direction: column; }
    .gender-toggle { flex-direction: column; }
    .success-booking-number { flex-direction: column; }
}

/* ============================================
   PAGE.PHP - Massage Type Detail Page
   ============================================ */

/* ── Breadcrumbs ── */
.breadcrumbs {
    background: var(--bg);
    border-bottom: 1px solid var(--border-light);
    padding: 14px 0;
    margin-top: 72px; /* header height */
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 0.88rem;
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--text);
    font-weight: 500;
}

.breadcrumb-separator {
    font-size: 0.7rem;
    color: var(--border);
    list-style: none;
    padding: 0 4px;
}

/* ── Page Hero ── */
.page-hero-section {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(26,35,50,0.92) 0%,
        rgba(74,124,89,0.78) 60%,
        rgba(26,35,50,0.88) 100%
    ),
    url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=1400&q=75') center/cover no-repeat;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,35,50,0.35);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 64px 24px 56px;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin: 0 auto 24px;
}
.page-hero-icon svg,
.page-hero-icon .hero-svg-icon {
    color: white;
    stroke-opacity: 0.9;
}
.page-hero-icon .hero-svg-icon circle:first-child {
    fill-opacity: 0.25;
    stroke: rgba(255,255,255,0.4);
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.page-hero-description {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
}

.page-hero-price {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 30px;
    padding: 10px 28px;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 28px;
}

.page-hero-price strong {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
}

/* ── Detail Layout ── */
.massage-detail-section {
    padding: 64px 0;
    background: var(--bg);
}

.massage-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: flex-start;
}

.massage-main-content {
    min-width: 0;
}

.massage-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ── Content Blocks ── */
.content-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.content-block h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primary-light);
}

.massage-content-text {
    color: var(--text);
    font-size: 0.97rem;
    line-height: 1.85;
}

.massage-content-text p { margin-bottom: 14px; }
.massage-content-text ul { padding-right: 20px; margin-bottom: 14px; }
.massage-content-text li { margin-bottom: 6px; }

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
}

.benefits-list li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── Expect Steps ── */
.expect-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expect-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.expect-step-number {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(74,124,89,0.25);
}

.expect-step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.expect-step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* ── Sidebar Cards ── */
.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-lg);
}

.sidebar-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primary-light);
}

.sidebar-card-title i {
    color: var(--primary);
}

/* ── Price Options ── */
.price-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

.price-option:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.price-option-duration {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text);
}

.price-option-duration i {
    color: var(--primary);
    font-size: 0.85rem;
}

.price-option-amount {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
}

.price-note {
    font-size: 0.78rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ── Trust Badges List ── */
.trust-badges-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-badges-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text);
}

.trust-badges-list li i {
    color: var(--primary);
    width: 18px;
    flex-shrink: 0;
}

/* ── CTA Banner Section ── */
.cta-banner-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #5a8f69 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.cta-banner-section::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 250px; height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
}

/* When .cta-banner is inside .cta-banner-section, reset duplicate bg */
.cta-banner-section .cta-banner {
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.3;
}

.cta-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.8;
    margin-bottom: 36px;
}

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

/* Stats row under CTA buttons (דירוג, עיסויים, מעסים) */
.cta-banner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.cta-banner .cta-stats {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    position: relative;
    z-index: 2;
}

.cta-banner .cta-stats .stat-item {
    flex: 1 1 160px;
    max-width: 220px;
    min-width: 140px;
    text-align: center;
    padding: 22px 18px 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta-banner .cta-stats .stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.cta-banner .cta-stats .stat-number {
    display: block;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 900;
    color: var(--secondary);
    line-height: 1.15;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.cta-banner .cta-stats .stat-label {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.4;
}

.cta-banner .cta-stats .stat-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 10px;
    font-size: 0.9rem;
    color: #f5c518;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
    .cta-banner .cta-stats {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 32px;
        padding-top: 28px;
    }

    .cta-banner .cta-stats .stat-item {
        width: 100%;
        max-width: 320px;
    }
}

/* ── Page.php responsive ── */
@media (max-width: 992px) {
    .massage-detail-grid {
        grid-template-columns: 1fr;
    }
    .massage-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-hero-content { padding: 50px 16px 44px; }
    .content-block { padding: 24px 20px; }
    .sidebar-card { padding: 22px 18px; }
    .cta-buttons { flex-direction: column; align-items: stretch; }
    .breadcrumbs { margin-top: 66px; }
}

/* ============================================
   INDEX.PHP - Pricing Table & Testimonials
   ============================================ */

/* ── Pricing Table ── */
.pricing-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 32px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.95rem;
    min-width: 540px;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}

.pricing-table thead th {
    padding: 16px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.pricing-table thead th:first-child {
    text-align: right;
    padding-right: 24px;
}

.pricing-table tbody tr {
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s ease;
}

.pricing-table tbody tr:last-child {
    border-bottom: none;
}

.pricing-table tbody tr:hover {
    background: var(--primary-light);
}

.pricing-table tbody td {
    padding: 14px 20px;
    text-align: center;
    color: var(--text);
}

.pricing-table tbody td:first-child {
    text-align: right;
    padding-right: 24px;
}

.pricing-table tbody td strong {
    font-size: 1rem;
    color: var(--dark);
}

.pricing-type {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-type i,
.pricing-type svg {
    color: var(--primary);
    flex-shrink: 0;
}

.pricing-type span {
    font-weight: 600;
    color: var(--dark);
}

/* ── Mobile Pricing Cards (hidden on desktop, shown on mobile) ── */
.pricing-cards-mobile {
    display: none;
}

/* ── Testimonials ── */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -8px;
    right: 20px;
    font-size: 5rem;
    color: var(--primary-light);
    line-height: 1;
    font-family: Georgia, serif;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    display: flex;
    gap: 3px;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
    font-style: italic;
    flex: 1;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
}

.author-info strong {
    display: block;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.9rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ── Pricing + Testimonials responsive ── */
@media (max-width: 768px) {
    .pricing-table-wrapper { display: none; }
    .pricing-cards-mobile { display: flex; flex-direction: column; gap: 16px; }
}

.pricing-card-mobile {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    box-shadow: var(--shadow);
}

.pricing-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primary-light);
}

.pricing-card-header i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.pricing-card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}

.pricing-card-prices {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    padding: 8px 12px;
    background: var(--bg);
    border-radius: var(--radius-sm, 6px);
}

.price-row span {
    color: var(--text-light);
}

.price-row strong {
    font-weight: 700;
    color: var(--dark);
}
