/* Japanese Wellness & Tea House Inspired Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Crimson+Pro:wght@300;400;500;600&family=Noto+Sans+JP:wght@300;400;500;600&display=swap');

/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  color: #2d3436;
  background-color: #fdfcf8;
  overflow-x: hidden;
  letter-spacing: 0.3px;
}

/* Updated Color Palette */
:root {
  --primary-green: #4d9797;
  --matcha: #6bb3b3;
  --deep-green: #3a7373;
  --accent-orange: #f09e38;
  --warm-beige: #f4f1eb;
  --cream: #fdfcf8;
  --charcoal: #2d3436;
  --soft-white: #ffffff;
  --earth-brown: #8b7355;
  --mist-gray: #e8e6e0;
  --sage: #b8c5a6;
  --text-color: #2d3436;
  --light-text: #636e72;
  --divider: #e8e6e0;
  --shadow-light: 0 4px 20px rgba(77, 151, 151, 0.08);
  --shadow-medium: 0 8px 40px rgba(77, 151, 151, 0.12);
  --border-radius: 2px;
  --container-max-width: 1200px;
  --section-padding: 120px 0;
  --mobile-section-padding: 80px 0;
}

/* Container and Layout Utilities */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-padding);
}

.section-mobile {
  padding: var(--mobile-section-padding);
}

/* Japanese-Inspired Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Pro', 'Noto Sans JP', serif;
  font-weight: 400;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 2rem;
  letter-spacing: 0.5px;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  font-weight: 300;
}

strong {
  color: var(--accent-orange);
  font-weight: 500;
}

/* Zen Header and Hero Section */
.hero-section {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  position: relative;
  color: var(--charcoal);
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  filter: sepia(20%) saturate(80%) brightness(1.1);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(253, 252, 248, 0.3);
  z-index: 1;
}

.header {
  padding: 30px 0 20px 0;
  position: relative;
  z-index: 10;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-content.with-actions {
  justify-content: space-between;
}

.header-actions {
  margin-left: auto;
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 20px 40px;
  text-align: center;
}

.logo {
  height: 120px;
  width: auto;
}

.brand-name {
  font-family: 'Crimson Pro', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--deep-green);
  margin: 0;
  margin-top: -10px;
  letter-spacing: 1px;
}

.hero-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  color: var(--charcoal);
  margin-bottom: 3rem;
  font-family: 'Crimson Pro', serif;
  font-weight: 300;
  letter-spacing: 2px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-top: 60px;
}

/* Minimalist Zen Buttons */
.btn {
  display: inline-block;
  padding: 18px 40px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid var(--primary-green);
  text-align: center;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--soft-white);
  border: 1px solid var(--primary-green);
}

.btn-primary:hover {
  background: var(--deep-green);
  border-color: var(--deep-green);
  transform: translateY(-1px);
  box-shadow: var(--shadow-light);
}

.btn-outline {
  background: transparent;
  color: var(--soft-white);
  border: 2px solid var(--soft-white);
  font-weight: 400;
}

.btn-outline:hover {
  background: var(--soft-white);
  color: var(--deep-green);
  transform: translateY(-1px);
  box-shadow: var(--shadow-light);
  border-color: var(--soft-white);
}

.btn-large {
  padding: 22px 50px;
  font-size: 1.1rem;
}

/* Zen CTA Sections */
.cta-section {
  background: var(--deep-green);
  color: var(--soft-white);
  text-align: center;
  padding: 100px 0;
}

.cta-content h2 {
  color: var(--soft-white) !important;
  margin-bottom: 2rem;
  font-weight: 400;
}

.cta-subtitle {
  font-style: italic;
  margin-bottom: 3rem;
  opacity: 1;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

/* Minimalist Content Sections */
.content-section {
  padding: 80px 0;
  background: var(--cream);
}

.content-section:nth-child(even) {
  background: var(--warm-beige);
}

.therapy-section {
  background: var(--soft-white) !important;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  margin-bottom: 2rem;
  font-weight: 300;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--light-text);
  font-weight: 300;
  line-height: 1.8;
}

/* Clean Layout System */
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.column {
  display: flex;
  flex-direction: column;
}

/* Simplified Checkmarks */
.checkmarks-list {
  list-style: none;
  margin-top: 30px;
}

.checkmarks-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 300;
}

.checkmarks-list li::before {
  content: '•';
  margin-right: 20px;
  font-size: 1.5rem;
  color: var(--accent-orange);
}

/* Three Column Layout (Zen Style) */
.three-column-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.cta-sidebar {
  background: var(--soft-white);
  color: var(--charcoal);
  padding: 60px 40px;
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--divider);
}

.cta-sidebar .cta-content h2 {
  color: var(--charcoal) !important;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 300;
}

.cta-sidebar .cta-subtitle {
  color: var(--light-text);
  font-style: italic;
  margin-bottom: 3rem;
  font-size: 1rem;
  font-weight: 300;
}

.cta-sidebar .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.treatment-content {
  flex: 1;
}

.sidebar-checklist {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--divider);
}

/* Mission Layout */
.mission-cta-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}

.mission-content {
  flex: 1;
}

.cta-sidebar-alt {
  background: var(--soft-white);
  color: var(--charcoal);
  padding: 60px 40px;
  border-radius: var(--border-radius);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--divider);
}

.cta-sidebar-alt .cta-content h2 {
  color: var(--charcoal) !important;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 300;
}

.cta-sidebar-alt .cta-subtitle {
  color: var(--light-text);
  font-style: italic;
  margin-bottom: 3rem;
  font-size: 1rem;
  font-weight: 300;
}

.cta-sidebar-alt .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Fix outline buttons on white CTA backgrounds */
.cta-sidebar .btn-outline,
.cta-sidebar-alt .btn-outline {
  color: var(--deep-green);
  border-color: var(--deep-green);
}

.cta-sidebar .btn-outline:hover,
.cta-sidebar-alt .btn-outline:hover {
  background: var(--deep-green);
  color: var(--soft-white);
  border-color: var(--deep-green);
}

.sidebar-checklist .checkmarks-list {
  text-align: left;
  margin-top: 0;
}

.sidebar-checklist .checkmarks-list li {
  color: var(--text-color);
  font-size: 1rem;
  margin-bottom: 15px;
}

.sidebar-checklist .checkmarks-list li::before {
  content: '•';
  margin-right: 15px;
  font-size: 1.2rem;
  color: var(--accent-orange);
}

/* Clinical Specialties */
.specialties-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}

.doctor-image {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  filter: sepia(10%) saturate(90%);
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.specialty-item {
  background: var(--soft-white);
  color: var(--primary-green);
  padding: 20px 25px;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 400;
  font-size: 0.95rem;
  border: 1px solid var(--divider);
  letter-spacing: 0.5px;
}

/* Treatment Types Grid */
.treatment-types {
  background: var(--deep-green);
  padding: 100px 0;
  color: var(--soft-white);
}

.treatment-types .section-header h2 {
  color: var(--soft-white) !important;
  font-weight: 400;
}

.treatment-types .section-header p {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.treatment-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 25px;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: 300;
  font-size: 1rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
}

/* Zen Therapy Programs Toggle */
.therapy-programs {
  max-width: 1000px;
  margin: 0 auto;
}

.toggle-item {
  border-bottom: 1px solid var(--divider);
  margin-bottom: 20px;
}

.toggle-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-header:hover {
  background-color: var(--warm-beige);
  padding-left: 20px;
  padding-right: 20px;
  border-radius: var(--border-radius);
}

.toggle-icon {
  font-size: 1rem;
  color: var(--accent-orange);
  transition: transform 0.3s ease;
  width: 20px;
  text-align: center;
}

.toggle-header.active .toggle-icon {
  transform: rotate(90deg);
}

.toggle-title {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0;
  font-family: 'Crimson Pro', serif;
}

.toggle-content {
  display: none;
  padding: 0 60px 40px 60px;
  background: var(--warm-beige);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.toggle-content.active {
  display: block;
}

.toggle-content p {
  color: var(--text-color);
  font-weight: 300;
  line-height: 1.8;
}

/* Gallery */
.gallery {
  height: 500px;
  overflow: hidden;
  border-radius: var(--border-radius);
  position: relative;
  box-shadow: var(--shadow-light);
}

.gallery-track {
  display: flex;
  height: 100%;
  animation: scroll 80s linear infinite;
}

.gallery img {
  height: 100%;
  width: 350px;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: transform 0.3s ease;
  filter: sepia(10%) saturate(90%);
}

.gallery img:hover {
  transform: scale(1.02);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Gallery Grid Option */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  filter: sepia(10%) saturate(90%);
}

.gallery-grid img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.gallery-grid.collapsed {
  max-height: 540px;
  overflow: hidden;
  position: relative;
}

.gallery-grid.collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(transparent, var(--cream));
  pointer-events: none;
}

.gallery-grid.expanded {
  max-height: none;
  overflow: visible;
}

.gallery-toggle {
  text-align: center;
  margin-top: 40px;
}

.gallery-toggle .btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 40px;
  font-size: 1rem;
  background: var(--matcha);
  border: 1px solid var(--matcha);
  color: var(--soft-white);
  font-weight: 300;
  letter-spacing: 0.5px;
}

.gallery-toggle .btn:hover {
  background: var(--primary-green);
  border-color: var(--primary-green);
}

.gallery-toggle .toggle-icon {
  font-size: 14px;
  color: var(--soft-white);
  transition: transform 0.3s ease;
}

.gallery-grid.expanded + .gallery-toggle .toggle-icon {
  transform: rotate(180deg);
}

/* Lightbox - Zen Style */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 52, 54, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox-overlay.active {
  display: flex;
  opacity: 1;
}

.lightbox-container {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.lightbox-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: none;
  border: none;
  color: var(--soft-white);
  font-size: 30px;
  cursor: pointer;
  z-index: 10001;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.lightbox-close:hover {
  opacity: 0.7;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: var(--charcoal);
  font-size: 24px;
  cursor: pointer;
  width: 50px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
  border-radius: var(--border-radius);
}

.lightbox-nav:hover {
  background: var(--soft-white);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-counter {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--soft-white);
  font-size: 16px;
  background: rgba(45, 52, 54, 0.8);
  padding: 10px 20px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 300;
}

/* Reviews Section */
.reviews-section {
  background: var(--warm-beige);
  text-align: center;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

.google-logo {
  max-width: 280px;
  margin-bottom: 30px;
  filter: sepia(20%) saturate(80%);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.review-card {
  background: var(--soft-white);
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--divider);
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
}

.review-profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--mist-gray);
  flex-shrink: 0;
}

.review-google-icon {
  width: 60px;
  height: 60px;
  background: #4285f4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 24px;
  flex-shrink: 0;
}

.review-author {
  flex: 1;
  text-align: left;
  padding-top: 2px;
}

.review-author-name {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 1.1rem;
  margin-bottom: 0;
  text-align: left;
}

.review-count {
  color: var(--light-text);
  font-size: 0.9rem;
  text-align: left;
}

.review-rating-date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-rating {
  display: flex;
  gap: 2px;
}

.review-star {
  color: #fbbf24;
  font-size: 1.2rem;
}

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

.review-text {
  color: var(--text-color);
  line-height: 1.6;
  font-size: 1rem;
  text-align: left;
}

/* Zen Popup Styles */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 52, 54, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.popup-content {
  background: var(--soft-white);
  padding: 60px 50px;
  border-radius: var(--border-radius);
  max-width: 600px;
  width: 90%;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  color: var(--text-color);
  text-align: left;
  box-shadow: var(--shadow-medium);
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--accent-orange);
  font-weight: 300;
}

.popup-content h3 {
  color: var(--charcoal);
  margin-bottom: 30px;
  text-align: center;
  font-weight: 400;
}

.popup-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-color);
  font-weight: 300;
}

.popup-content a {
  color: var(--accent-orange);
  text-decoration: underline;
}

/* Info Button - Zen Style */
.info-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--deep-green);
  padding: 15px 25px;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.info-btn:hover {
  background: var(--soft-white);
  color: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: var(--shadow-light);
  border-color: var(--divider);
}

.info-icon {
  width: 16px;
  height: 16px;
}

/* Footer - Minimalist */
.footer {
  background: var(--charcoal);
  color: #f1f2f6;
  text-align: center;
  padding: 80px 0 60px 0;
}

.footer p {
  margin-bottom: 15px;
  font-size: 0.75rem;
  line-height: 1.6;
  font-weight: 400;
  color: #ddd6d0;
}

.footer a {
  color: var(--accent-orange);
  text-decoration: underline;
  font-weight: 500;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
  }

  .container {
    padding: 0 20px;
  }

  .header {
    padding: 20px 0 10px 0;
  }

  .hero-section {
    min-height: 50vh;
  }

  .hero-main {
    padding: 20px 0;
  }

  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .header-content.with-actions {
    justify-content: center;
  }

  .header-actions {
    margin-left: 0;
    margin-top: 10px;
  }

  .hero-actions {
    display: none;
  }

  .logo-section {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px 30px;
  }

  .logo {
    height: 80px;
  }

  .brand-name {
    font-size: 1.8rem;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .two-column {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .three-column-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .cta-sidebar {
    order: -1;
    margin-bottom: 20px;
    padding: 40px 30px;
  }

  .mission-cta-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .cta-sidebar-alt {
    order: -1;
    margin-bottom: 20px;
    padding: 40px 30px;
  }

  .specialties-section {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .doctor-image {
    max-width: 300px;
    margin: 0 auto;
  }

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

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

  .toggle-content {
    padding: 0 30px 30px 30px;
  }

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

  .review-card {
    padding: 20px;
  }

  .review-header {
    gap: 12px;
  }

  .review-profile-image {
    width: 50px;
    height: 50px;
  }

  .review-google-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .review-rating-date {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .gallery {
    height: 300px;
  }

  .gallery img {
    width: 250px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .gallery-grid img {
    height: 180px;
  }

  .gallery-grid.collapsed {
    max-height: 380px;
  }

  .popup-content {
    padding: 40px 30px;
    margin: 20px;
  }

  /* Lightbox Mobile */
  .lightbox-close {
    top: -50px;
    font-size: 24px;
    width: 40px;
    height: 40px;
  }

  .lightbox-nav {
    font-size: 20px;
    width: 40px;
    height: 60px;
  }

  .lightbox-prev {
    left: -50px;
  }

  .lightbox-next {
    right: -50px;
  }

  .lightbox-counter {
    font-size: 14px;
    padding: 8px 16px;
  }

  .content-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 40vh;
  }

  .hero-main {
    padding: 15px 0;
  }

  .container {
    padding: 0 15px;
  }

  .btn {
    padding: 15px 25px;
    font-size: 0.95rem;
  }

  .btn-large {
    padding: 18px 30px;
    font-size: 1rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .gallery {
    height: 250px;
  }

  .gallery img {
    width: 200px;
  }

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

  .gallery-grid img {
    height: 150px;
  }

  .gallery-grid.collapsed {
    max-height: 320px;
  }

  /* Lightbox Small Mobile */
  .lightbox-container {
    max-width: 95%;
    max-height: 95%;
  }

  .lightbox-close {
    top: -40px;
    right: -10px;
    font-size: 20px;
    width: 35px;
    height: 35px;
  }

  .lightbox-nav {
    font-size: 18px;
    width: 35px;
    height: 50px;
  }

  .lightbox-prev {
    left: -40px;
  }

  .lightbox-next {
    right: -40px;
  }

  .lightbox-counter {
    bottom: -35px;
    font-size: 12px;
    padding: 6px 12px;
  }

  .content-section {
    padding: 40px 0;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none; }
.visible { display: block; }

/* Focus and Accessibility */
.btn:focus,
.toggle-header:focus,
.info-btn:focus {
  outline: 2px solid var(--accent-orange);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .hero-section,
  .cta-section,
  .footer {
    background: var(--soft-white) !important;
    color: var(--charcoal) !important;
  }
  
  .btn {
    border: 1px solid var(--charcoal) !important;
    background: var(--soft-white) !important;
    color: var(--charcoal) !important;
  }
}

/* Gallery Grid Option - Alternative to carousel */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Gallery Show More/Less Functionality */
.gallery-grid.collapsed {
  max-height: 440px; /* Shows approximately 2 rows */
  overflow: hidden;
  position: relative;
}

.gallery-grid.collapsed::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--light-bg));
  pointer-events: none;
}

.gallery-grid.expanded {
  max-height: none;
  overflow: visible;
}

.gallery-toggle {
  text-align: center;
  margin-top: 30px;
}

.gallery-toggle .btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  background: var(--matcha);
  border: none;
  color: white;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: none;
}

.gallery-toggle .btn:hover {
  background: var(--primary-green);
  color: white;
  transform: none;
  box-shadow: none;
  border: none;
  opacity: 1;
}

.gallery-toggle .btn:focus {
  outline: none;
  box-shadow: none;
  border: none;
}

.gallery-toggle .btn:active {
  background: var(--primary-color);
  transform: none;
  box-shadow: none;
  outline: none;
  border: none;
}

.gallery-toggle .toggle-icon {
  font-size: 16px;
  color: white;
  transition: transform 0.3s ease;
}

.gallery-grid.expanded + .gallery-toggle .toggle-icon {
  transform: rotate(180deg);
}

/* Masonry Grid Option */
.gallery-masonry {
  columns: 3;
  column-gap: 20px;
  margin-top: 40px;
}

.gallery-masonry img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: transform 0.3s ease;
  break-inside: avoid;
}

.gallery-masonry img:hover {
  transform: scale(1.02);
}

/* Controlled Carousel with Navigation */
.gallery-controlled {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.gallery-controlled .gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
  /* Remove auto-animation */
  animation: none;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: var(--matcha);
  z-index: 10;
  transition: background 0.3s ease;
}

.gallery-nav:hover {
  background: #fffcf9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gallery-nav.prev {
  left: 20px;
}

.gallery-nav.next {
  right: 20px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gallery-dot.active {
  background: var(--primary-color);
}

/* Slideshow Style */
.gallery-slideshow {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.gallery-slideshow .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.gallery-slideshow .slide.active {
  opacity: 1;
}

.gallery-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Thumbnail Gallery */
.gallery-thumbnail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gallery-main-image {
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbnails {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px 0;
}

.gallery-thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.gallery-thumbnails img:hover,
.gallery-thumbnails img.active {
  opacity: 1;
  transform: scale(1.1);
}

/* Styles for Privacy Policy and Terms of Service pages */
/* Clean titles with primary green color and no effects */
.content-section h1,
.content-section h2, 
.content-section h3 {
  color: var(--primary-color) !important;
  text-shadow: none !important;
  filter: none !important;
  transform: none !important;
  background: none !important;
}

/* Hero section titles for Privacy Policy and Terms of Service pages */
.hero-content h1.privacy-title,
.hero-content h1.terms-title {
  color: var(--primary-color) !important;
  text-shadow: none !important;
  filter: none !important;
  transform: none !important;
  background: none !important;
}

/* Back to home button matching call button green for privacy and terms pages */
.btn-outline.back-to-home {
  background: transparent !important;
  color: var(--primary-green) !important;
  border: 2px solid var(--primary-green) !important;
  padding: 12px 24px !important;
  font-size: 1rem !important;
  text-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

.btn-outline.back-to-home:hover {
  background: var(--primary-green) !important;
  color: white !important;
  border: 2px solid var(--primary-green) !important;
  text-shadow: none !important;
  transform: translateY(-1px) !important;
}