  .tbts-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .tbts-wrapper {
    --primary: #FF3D7C;
    --primary-dark: #E01F42;
    --secondary: #004149;
    --text-dark: #1a1a2e;
    --text-light: #5a6a7a;
    --bg-light: #FDF5F7;
    --bg-secondary: #EAF2F3;
    --white: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Navigation */
  .tbts-nav-container {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
  }

  .tbts-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .tbts-nav-logo {
    max-width: 124px;
  }

  .tbts-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .tbts-nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
  }

  .tbts-nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }

  .tbts-nav-links a:hover {
    color: var(--primary);
  }

  /* Hamburger button — hidden on desktop */
  .tbts-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    z-index: 10002;
  }

  .tbts-hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }

  .tbts-hamburger.tbts-active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

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

  .tbts-hamburger.tbts-active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* Mobile menu overlay */
  .tbts-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .tbts-mobile-menu.tbts-open {
    opacity: 1;
    pointer-events: auto;
  }

  .tbts-mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    max-width: 85vw;
    height: 100%;
    background: var(--white);
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .tbts-mobile-menu.tbts-open .tbts-mobile-menu-panel {
    transform: translateX(0);
  }

  .tbts-mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .tbts-mobile-menu-links li {
    margin-bottom: 0;
  }

  .tbts-mobile-menu-links a {
    display: block;
    padding: 1rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    border-bottom: 1px solid #F0F0F0;
    transition: color 0.2s;
  }

  .tbts-mobile-menu-links a:hover {
    color: var(--primary);
  }

  .tbts-mobile-menu-links .tbts-mobile-book-link {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.875rem 2rem;
    background: var(--primary);
    color: var(--white) !important;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    border-bottom: none;
  }

  .tbts-mobile-menu-links .tbts-mobile-book-link:hover {
    background: var(--primary-dark);
    color: var(--white) !important;
  }

  /* Nav right: hidden on desktop, visible on tablet/mobile */
  .tbts-nav-right {
    display: none;
  }

  /* Spacer to prevent content from hiding behind fixed nav */
  .tbts-nav-spacer {
    height: 72px;
  }

  .tbts-btn-primary {
    background: var(--primary);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-block;
  }

  .tbts-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 63, 93, 0.3);
    color: var(--white) !important;
  }

  .tbts-btn-secondary {
    background: transparent;
    color: var(--secondary) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary);
    display: inline-block;
  }

  .tbts-btn-secondary:hover {
    background: var(--primary);
    color: var(--white) !important;
  }

  /* Hero Section */
  .tbts-hero {
    background: linear-gradient(135deg, rgba(229, 63, 93, 0.05) 0%, rgba(20, 69, 74, 0.05) 100%);
    padding: 4rem 2rem;
    text-align: center;
  }

  .tbts-hero-content {
    max-width: 900px;
    margin: 0 auto;
  }

  .tbts-hero h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .tbts-highlight {
    color: var(--primary);
  }

  .tbts-hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
  }

  .tbts-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Hero Social Icons */
  .tbts-hero-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
  }

  .tbts-hero-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }

.tbts-social-icon {
    display: block;
    width: 50px;;
    height: 50px;;
    max-width: 50px;;
    max-height: 50px;
    object-fit: contain;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .tbts-hero-social a:hover .tbts-social-icon {
    opacity: 0.75;
    transform: translateY(-2px);
  }

  /* Sections */
  .tbts-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .tbts-section-header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .tbts-section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
  }

  .tbts-section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
  }

  /* How It Works */
  .tbts-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }

  .tbts-step {
    text-align: center;
    padding: 2rem;
  }

  .tbts-step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
  }

  .tbts-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
  }

  .tbts-step p {
    color: var(--text-light);
  }

  /* Services */
  .tbts-bg-light {
    background: var(--bg-light);
  }

  /* Wrapper for full-bleed bg sections — ensures inner content has safe padding */
  .tbts-bg-light .tbts-section,
  .tbts-bg-secondary .tbts-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .tbts-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .tbts-service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
  }

  .tbts-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  }

  .tbts-service-card h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
  }

  .tbts-price-from {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .tbts-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0.5rem 0;
  }

  .tbts-price-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
  }

  .tbts-service-card ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
  }

  .tbts-service-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: start;
    gap: 0.5rem;
  }

  .tbts-service-card li:before {
    content: "\2713";
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
  }

  .tbts-service-time {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
  }

  .tbts-special-price-card {
    background: var(--white);
    text-align: center;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s;
  }

  .tbts-special-price-card span {
    color: var(--primary);
  }
  /* Gallery */
  .tbts-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .tbts-gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary) 70%, var(--secondary) 30%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    padding: 1rem;
  }

  .tbts-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    display: block;
  }

  /* About */
  .tbts-about-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    margin-bottom: 2rem;
    border: 1px solid rgba(229, 63, 93, 0.08);
  }

  .tbts-about-card:last-child {
    margin-bottom: 0;
  }

  .tbts-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .tbts-about-reverse {
    direction: rtl;
  }

  .tbts-about-reverse > * {
    direction: ltr;
  }

  .tbts-about-image {
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 70%, var(--secondary) 30%);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.25rem;
    text-align: center;
    padding: 1rem;
    overflow: hidden;
  }

  .tbts-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    display: block;
  }

  .tbts-about-text h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
  }

  .tbts-about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
  }

  /* Testimonials */
  .tbts-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .tbts-testimonial {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .tbts-stars {
    color: #FFC107;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .tbts-testimonial p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-style: italic;
  }

  .tbts-testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
  }

  /* FAQ */
  .tbts-faq-list {
    max-width: 800px;
    margin: 0 auto;
  }

  .tbts-faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .tbts-faq-item h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
  }

  .tbts-faq-item p {
    color: var(--text-light);
  }

  /* Service Area */
  .tbts-service-area {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
  }

  .tbts-service-area h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
  }

  .tbts-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
  }

  .tbts-location-tag {
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--text-dark);
    font-weight: 500;
    display: inline-block;
  }

  /* CTA Section */
  .tbts-cta-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }

  /* Footer */
  .tbts-footer {
    background: var(--secondary);
    color: var(--white);
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
  }

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

  .tbts-footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary);
  }

  .tbts-footer-section p,
  .tbts-footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
  }

  .tbts-footer-section a:hover {
    color: var(--white);
  }

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

  .tbts-pricing-section {
    padding: 4rem 0;
  }

  .tbts-pricing-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .tbts-pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .tbts-price-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
  }

  .tbts-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(229, 63, 93, 0.15);
    border-color: var(--primary);
  }

  .tbts-price-card.tbts-card-featured {
    border-color: var(--primary);
  }

  .tbts-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.9rem;
    border-radius: 12px;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .tbts-price-card h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 0.25rem;
  }

  .tbts-card-price-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
  }

  .tbts-card-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    line-height: 1.1;
  }

  .tbts-price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
  }

  .tbts-price-card li {
    padding: 0.35rem 0;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
  }

  .tbts-price-card li::before {
    content: "\2713";
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .tbts-card-time {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
  }

  .tbts-card-book-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    background: var(--primary);
    color: var(--white) !important;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s;
    font-size: 0.95rem;
  }

  .tbts-card-book-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(229, 63, 93, 0.3);
  }

  .tbts-pricing-disclaimer {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }

  /* Responsive — Tablet & Mobile */
  @media (max-width: 768px) {
    .tbts-nav-links {
      display: none;
    }
    .tbts-nav-right {
      display: flex;
    }
    .tbts-hamburger {
      display: flex;
    }
    .tbts-mobile-menu {
      display: block;
    }
    .tbts-hero h1 {
      font-size: 2rem;
    }
    .tbts-hero p {
      font-size: 1rem;
    }
    .tbts-section-header h2 {
      font-size: 2rem;
    }
    .tbts-about-content {
      grid-template-columns: 1fr;
    }
    .tbts-about-reverse {
      direction: ltr;
    }
    .tbts-about-card {
      padding: 1.5rem;
    }
    .tbts-nav-spacer {
      height: 66px;
    }
    .tbts-services-grid {
      grid-template-columns: 1fr;
    }
    .tbts-pricing-cards {
      grid-template-columns: 1fr;
    }
  }

  /* Small phones */
  @media (max-width: 480px) {
    .tbts-logo {
      font-size: 1.2rem;
    }
    .tbts-nav {
      padding: 0.75rem 1rem;
    }
    .tbts-nav-book-btn {
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
    }
    .tbts-nav-spacer {
      height: 58px;
    }
    .tbts-card-price {
      font-size: 1.9rem;
    }
    .tbts-section {
      padding-left: 1rem;
      padding-right: 1rem;
    }
    .tbts-pricing-inner {
      padding-left: 1rem;
      padding-right: 1rem;
    }
    .tbts-hero {
      padding-left: 1rem;
      padding-right: 1rem;
    }
  }
