html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Quicksand', sans-serif;
  line-height: 1.7;
  color: #2e2e2e;
  background: #fbf8f4; /* soft ivory */
  font-weight: 500;
  position: relative;
  overflow-x: hidden;
}

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

/* Mobile menu toggle button - Spiral */
.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  border-radius: 50%;
}

.mobile-menu-toggle::before {
  content: '☀';
  font-size: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.6s ease;
  color: #2b2006;
  text-shadow: 0 0 0 #2b2006, 1px 1px 0 #2b2006, -1px -1px 0 #2b2006, 1px -1px 0 #2b2006, -1px 1px 0 #2b2006;
}

.mobile-menu-toggle.active::before {
  transform: translate(-50%, -50%) rotate(540deg);
}

.mobile-menu-toggle span {
  display: none;
}



@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
  25% { transform: translateY(-20px) rotate(90deg); opacity: 0.6; }
  50% { transform: translateY(-40px) rotate(180deg); opacity: 0.3; }
  75% { transform: translateY(-20px) rotate(270deg); opacity: 0.5; }
}

h1,h2,h3 { font-family: 'Playfair Display', serif; letter-spacing: 0.4px; }

/* Header / Nav Bar */
header {
  /* softer, angelic gold gradient */
  background: linear-gradient(180deg, #fff6de 0%, #f5e2a8 60%, #e9cf75 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 6px 18px rgba(12, 12, 10, 0.06);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 1px, transparent 2px),
              radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 1px, transparent 2px),
              radial-gradient(circle at 60% 80%, rgba(255,255,255,0.06) 1px, transparent 2px);
  background-size: 200px 200px, 150px 150px, 180px 180px;
  animation: sparkleMove 20s linear infinite;
  pointer-events: none;
}

@keyframes sparkleMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-50px, -50px); }
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  color: #2b2408; /* subtle dark tone */
}

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

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #2b2408;
  position: relative;
}

.logo::before {
  /* subtle halo glow behind the logo */
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 140%; height: 140%;
  background: radial-gradient(circle, rgba(255,241,204,0.65) 0%, rgba(255,241,204,0.12) 40%, transparent 60%);
  border-radius: 50%;
  z-index: -1;
}

.tagline {
  font-size: 0.85rem;
  margin: 0;
  color: rgba(43,36,8,0.85);
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links a {
  color: #3a2f0d; /* warm brown */
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.7px;
  transition: color 0.18s ease, transform 0.18s ease;
}

.nav-links a:hover {
  color: #5a4320;
  transform: translateY(-2px);
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
}

.book-btn {
  background: linear-gradient(180deg, #fff6de 0%, #f7e1a0 100%);
  color: #2b2006;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(43,36,8,0.12);
  box-shadow: 0 6px 18px rgba(233,207,117,0.12);
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}

.book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(233,207,117,0.16);
}

/* Small screens: reduce nav gap and hide tagline */
@media (max-width: 720px) {
  .nav-container { padding: 0.6rem 1rem; }
  .tagline { display: none; }
  .nav-links a { font-size: 0.85rem; }
}


.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 120%;
  min-height: 120%;
  width: auto;
  height: auto;
  z-index: -2;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Clean Modern Mobile Design */
@media (max-width: 768px) {
  /* Reset and Base */
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
  }
  
  body {
    font-size: 14px;
    line-height: 1.4;
  }
  
  * {
    max-width: 100%;
    box-sizing: border-box;
  }
  
  /* Hero */
  .hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
  }
  
  .hero-text {
    position: absolute;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    width: 100%;
  }
  
  .hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .hero p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
  }
  
  .hero .button {
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: 30px;
  }
  
  /* Navigation */
  .nav-container {
    padding: 15px 20px;
  }
  
  .brand .logo {
    font-size: 1.1rem;
  }
  
  .tagline {
    font-size: 0.7rem;
  }
  
  /* Sections */
  .block {
    padding: 40px 20px;
  }
  
  .block h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
  }
  
  .block p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero {
    height: 70vh;
  }
}
.hero::after {
  content: '';
  position: absolute; 
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2));
  z-index: -1;
}
.hero-text { position: relative; z-index: 1; max-width: 700px; }
.hero h1 { font-size: 3rem; margin-bottom: 1rem; }
.hero p { font-size: 1.2rem; }

/* gentle glow for hero headings to add angelic vibe */
.hero h1 { text-shadow: 0 6px 18px rgba(248,239,214,0.22); }

/* Hero Button Styling */
.hero .button {
  display: inline-block;
  background: linear-gradient(135deg, #fff6de 0%, #f7e1a0 50%, #e9cf75 100%);
  color: #2b2006;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 12px 40px rgba(233,207,117,0.3), 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 1.5rem;
}

.hero .button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  animation: shimmer 3s infinite;
}

.hero .button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 60px rgba(233,207,117,0.4), 0 8px 24px rgba(0,0,0,0.15);
  border-color: rgba(255,255,255,0.6);
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
  100% { transform: translateX(200%) translateY(200%) rotate(45deg); }
}

/* Block Sections */
section.block {
  padding: 2.4rem 1.75rem;
  max-width: 1000px;
  margin: 2.5rem auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
section.block:nth-of-type(odd) { background: #ffffff; }
section.block:nth-of-type(even) { background: #f9f3e7; }

/* Services - Completely redesigned */
.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(233,207,117,0.2);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 450px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: rgba(233,207,117,0.4);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e9cf75, #d4b25a, #f7e1a0);
}

.card-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fff6de 0%, #f4e0a0 50%, #e9cf75 100%);
  color: #2b2006;
  font-weight: 800;
  font-size: 1.4rem;
  border-radius: 50%;
  margin: 1.5rem auto 1rem;
  box-shadow: 0 8px 24px rgba(233,207,117,0.15);
  border: 3px solid rgba(255,255,255,0.8);
}

.card h3 {
  margin: 0 0 0.8rem 0;
  padding: 0 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2b2006;
  text-align: center;
  line-height: 1.3;
}

.card-sub {
  color: #5a4c3a;
  margin-bottom: 1.2rem;
  padding: 0 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
}

.card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  color: #5a4c3a;
  flex-grow: 1;
}

.card-features li {
  padding: 0.4rem 1.5rem;
  position: relative;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.card-features li::before {
  content: '✓';
  position: absolute;
  left: 1.5rem;
  color: #e9cf75;
  font-weight: 700;
  font-size: 1rem;
}

.card-features li {
  padding-left: 2.5rem;
}

.card-cta {
  display: block;
  background: linear-gradient(135deg, #e9cf75 0%, #d4b25a 100%);
  color: #2b2006;
  padding: 1rem 2rem;
  margin: 0;
  border: none;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-cta:hover {
  background: linear-gradient(135deg, #f4e0a0 0%, #e9cf75 100%);
  transform: none;
  box-shadow: none;
}

.price {
  font-size: 1.3rem;
  color: #88b497;
  font-weight: bold;
}

/* Responsive design for cards */
@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .testimonials-section {
    padding: 3rem 1rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .testimonials-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
}

/* Contact CTA used in Sessions and Contact sections */
.contact-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(255,246,222,0.6), rgba(244,224,160,0.4));
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(43,36,8,0.07);
  box-shadow: 0 6px 20px rgba(234,205,100,0.06);
  margin: 1rem 0 0.5rem 0;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.messaging-note {
  background: rgba(255,246,222,0.3);
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .contact-cta {
    padding: 20px;
    text-align: center;
    border-radius: 10px;
  }
  
  .contact-info {
    margin-bottom: 15px;
  }
  
  .contact-info strong {
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
  }
  
  .contact-info span {
    font-size: 0.8rem;
  }
  
  .contact-actions {
    display: flex;
    gap: 10px;
  }
  
  .btn {
    flex: 1;
    padding: 12px;
    font-size: 0.9rem;
    border-radius: 8px;
    text-align: center;
  }
  
  .messaging-note {
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    font-size: 0.8rem;
    text-align: center;
  }
}
.contact-info strong { display: block; font-weight: 700; color: #2b2006; font-size: 1.05rem; }
.contact-info span { display: block; color: #4b4130; font-size: 0.95rem; }
.contact-actions { display: flex; gap: 0.6rem; }
.btn { display: inline-block; padding: 0.55rem 1rem; border-radius: 10px; text-decoration: none; font-weight: 700; }
.btn-call { background: #fff; color: #2b2006; border: 1px solid rgba(43,36,8,0.12); box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,0.08); }
.btn-call:focus { outline: 3px solid rgba(43,36,8,0.12); outline-offset: 3px; }
.btn-whatsapp { background: #25D366; color: white; border: none; }
.btn-whatsapp:hover { filter: brightness(0.95); transform: translateY(-2px); }
.btn-whatsapp:focus { outline: 3px solid rgba(37,211,102,0.18); outline-offset: 3px; }

@media (max-width: 720px) {
  .contact-cta { flex-direction: column; align-items: stretch; }
  .contact-actions { justify-content: stretch; }
  .btn { width: 100%; text-align: center; }
}

/* Testimonials - Redesigned */
.testimonials-section {
  background: linear-gradient(135deg, #faf7f0 0%, #f8f1e4 100%);
  padding: 4rem 2rem;
}

.testimonials-section h2 {
  text-align: center;
  margin-bottom: 3rem;
  color: #2b2006;
  font-size: 2.2rem;
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonial-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }
  
  .testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .testimonial-card cite {
    font-size: 0.9rem;
    margin-top: 1rem;
  }
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 2px 8px rgba(233,207,117,0.12);
  border: 1px solid rgba(233,207,117,0.2);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12), 0 4px 16px rgba(233,207,117,0.2);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: #e9cf75;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-content {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a4032;
  font-style: italic;
  margin: 0;
  padding-top: 0.5rem;
}

.testimonial-author {
  border-top: 1px solid rgba(233,207,117,0.2);
  padding-top: 1rem;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.author-name {
  font-weight: 600;
  color: #2b2006;
  font-size: 1rem;
}

.session-type {
  font-size: 0.9rem;
  color: #88b497;
  font-weight: 500;
}

blockquote {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  font-style: italic;
  border-left: 5px solid #88b497;
}

/* Contact Banner */
.contact-banner {
  text-align: center;
}
.contact-banner a { color: #2f3e34; font-weight: bold; text-decoration: none; }

/* Footer */
footer {
  background: #2f3e34;
  color: white;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}
footer a { color: #f2dcd9; text-decoration: none; }


/* About section: portrait + copy grid */
.about-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2rem;
  align-items: start;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(16,12,8,0.08);
  display: block;
}
.about-copy {
  position: relative;
}

.about-copy p { 
  margin-bottom: 1rem;
  text-align: justify;
}

@media (max-width: 768px) {
  .about-grid {
    display: block;
  }
  
  .about-portrait {
    width: 150px;
    height: 200px;
    margin: 0 auto 25px auto;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .about-copy {
    text-align: center;
  }
  
  .about-closing {
    margin-top: 30px;
    text-align: center;
  }
  
  .about-closing-text {
    margin-bottom: 20px;
  }
  
  .about-secondary {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden;
  }
  
  .about-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Holistic approach section styling */
.approach h3 { margin-top: 1.25rem; color: #2b2006; font-size: 1.05rem; }
.approach ul { list-style: none; padding-left: 0; margin: 0.5rem 0 1rem 0; }
.approach li { position: relative; padding-left: 1.4rem; margin-bottom: 0.6rem; line-height: 1.5; color: #4b4130; }
.approach li::before { content: ''; position: absolute; left: 0.1rem; top: 0.55rem; width: 10px; height: 10px; background: radial-gradient(circle at 30% 30%, #fff6de, #d4b25a); border-radius: 50%; box-shadow: 0 2px 6px rgba(212,178,90,0.12); }
.approach p { margin-bottom: 1rem; color: #4b4130; }

/* Accessibility message styling */
.accessibility-message {
  background: linear-gradient(135deg, rgba(255,246,222,0.9), rgba(244,224,160,0.7));
  padding: 1.2rem 1.4rem;
  border-radius: 16px;
  border-left: 4px solid #e9cf75;
  margin: 1.5rem auto;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(233,207,117,0.12), 0 2px 8px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}




.accessibility-message p {
  margin: 0;
  color: #2b2006;
  font-size: 1.05rem;
  line-height: 1.6;
}
.accessibility-message strong {
  color: #2b2006;
}

/* Mobile Touch Improvements */
@media (max-width: 768px) {
  * {
    -webkit-tap-highlight-color: transparent;
  }
  
  body {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .book-btn {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    min-height: 44px;
    display: inline-block;
  }
  
  .card-cta {
    padding: 0.75rem 1.5rem !important;
    min-height: 44px;
    font-size: 1rem !important;
  }
  
  .hero .button {
    padding: 0.75rem 2rem !important;
    font-size: 1rem !important;
    min-height: 44px;
  }
}

/* Navigation Logo */
.brand {
  text-align: center;
}

.nav-logo {
  height: 70px;
  width: auto;
  max-width: 300px;
  display: block;
  margin: 0 auto;
}

.tagline {
  margin: 0.5rem 0 0 0;
  text-align: center;
}

@media (max-width: 768px) {
  .nav-logo {
    height: 50px;
    max-width: 220px;
  }
  
  .tagline {
    font-size: 0.8rem;
  }
}

/* Hero Quote Section */
.hero-quote {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, rgba(255,246,222,0.3), rgba(244,224,160,0.2));
}

.hero-quote p {
  font-size: 1.2rem;
  font-style: italic;
  color: #2b2006;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-quote {
    padding: 1.5rem 1rem;
  }
  
  .hero-quote p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* Enhanced collage layout for approach section */
.approach-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin: 0;
}

.approach-text-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.approach-video-column {
  position: sticky;
  top: 2rem;
}

.approach-video {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(233,207,117,0.3);
  object-fit: cover;
}
.approach-text-column .approach-card {
  background: linear-gradient(145deg, #ffffff 0%, #fff8eb 50%, #f7efd6 100%);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(233,207,117,0.2);
  border: 1px solid rgba(233,207,117,0.3);
  transform: rotate(0deg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.approach-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e9cf75, #d4b25a, #f7e1a0);
  opacity: 0.7;
}




.approach-text-column .approach-card:hover { 
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(233,207,117,0.3);
  border-color: rgba(233,207,117,0.5);
}

@media (max-width: 768px) {
  .approach-two-column {
    display: block;
  }
  
  .approach-video {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 25px;
  }
  
  .approach-card {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  }
  
  .approach-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .approach-card p,
  .approach-card li {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}
.approach-small:nth-child(even) { 
  transform: rotate(0deg);
}
.approach-card h3 { 
  margin: 0 0 0.8rem 0; 
  color: #2b2006; 
  font-size: 1.15rem; 
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.approach-card p, .approach-card ul { 
  margin: 0 0 0.6rem 0; 
  line-height: 1.6;
  color: #4a4032;
}
.approach-card ul li {
  margin-bottom: 0.7rem;
  padding-left: 1.2rem;
}
.approach-card ul li strong {
  color: #2b2006;
  font-weight: 600;
}

@media (max-width: 900px) {
  .approach-collage { 
    grid-template-columns: 1fr; 
    gap: 1rem;
    margin: 1.5rem 0;
  }
  .approach-large, .approach-tall, .approach-small { 
    grid-column: auto; 
    grid-row: auto; 
    transform: none;
  }
  .approach-card { 
    padding: 1.1rem 1.3rem;
    border-radius: 14px;
  }
  .approach-card:hover {
    transform: translateY(-4px) scale(1.01);
  }
}

@media (max-width: 768px) {
  /* Cards */
  .cards {
    display: block;
  }
  
  .card {
    margin-bottom: 20px;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
  }
  
  .card-price {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
  
  .card-sub {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }
  
  .card-features {
    text-align: left;
    margin-bottom: 20px;
  }
  
  .card-features li {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }
  
  .card-cta {
    padding: 12px 24px;
    font-size: 0.9rem;
    border-radius: 25px;
    display: block;
    width: 100%;
  }
  
  /* Testimonials */
  .testimonials-grid {
    display: block;
  }
  
  .testimonial-card {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 10px;
  }
  
  .testimonial-card blockquote {
    font-size: 0.9rem;
  }
  
  .testimonial-card cite {
    font-size: 0.8rem;
  }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
  .nav-container { 
    justify-content: space-between;
    align-items: center;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #fff6de 0%, #f4e0a0 100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    font-size: 1.2rem;
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links.active a {
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .brand .logo {
    font-size: 1.3rem !important;
    line-height: 1.2;
  }
  
  .tagline {
    font-size: 0.8rem !important;
    margin-top: 0.2rem;
  }
  
  .nav-links.active a {
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .brand .logo {
    font-size: 1.3rem !important;
    line-height: 1.2;
  }
  
  .tagline {
    font-size: 0.8rem !important;
    margin-top: 0.2rem;
  }
  
  .nav-links a {
    color: #2b2006;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    width: 80%;
    text-align: center;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
  }
  
  .nav-links .book-btn { 
    background: linear-gradient(135deg, #e9cf75 0%, #d4b25a 100%) !important;
    color: #2b2006 !important;
    padding: 1rem 2rem !important; 
    font-size: 1.1rem !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 12px rgba(233,207,117,0.3);
  }
  
  /* Animated burger menu */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Mobile Touch Improvements */
@media (max-width: 768px) {
  * {
    -webkit-tap-highlight-color: transparent;
  }
  
  body {
    font-size: 16px;
    line-height: 1.5;
  }
  
  .mobile-menu-toggle {
    padding: 0.5rem;
    margin: 0.25rem;
  }
  
  .nav-links.active {
    padding: 1rem 0;
  }
  
  .nav-links.active a {
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
  }
  
  .book-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    min-height: 44px;
  }
  
  .card-cta {
    padding: 0.75rem 1.5rem;
    min-height: 44px;
    font-size: 1rem;
  }
}

/* New Photo Implementations */
.approach-with-image {
  position: relative;
  overflow: hidden;
}

.approach-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  opacity: 0.15;
  z-index: 1;
}

.approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.approach-with-image h3,
.approach-with-image p {
  position: relative;
  z-index: 2;
}

.approach-with-nature {
  position: relative;
  overflow: hidden;
}

.nature-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.nature-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.approach-overlay {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
  padding: 1rem;
  border-radius: 8px;
  backdrop-filter: blur(2px);
}

.about-closing {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 2rem !important;
  margin-top: 2rem;
  width: 100% !important;
}

.about-closing-text {
  flex: 1 !important;
  max-width: 60% !important;
}

.about-secondary {
  display: block;
  margin: 0;
  width: 300px;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(233,207,117,0.3);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.about-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.about-secondary:hover {
  transform: rotate(0deg) scale(1.02);
}

.about-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-with-bg {
  position: relative;
  overflow: hidden;
}

.testimonial-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.8;
  z-index: 1;
  border: 3px solid #e9cf75;
}

.testimonial-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-with-bg .testimonial-content,
.testimonial-with-bg .testimonial-author {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .approach-image {
    width: 50%;
    opacity: 0.1;
  }
  
  .about-closing {
    flex-direction: column;
    text-align: center;
  }
  
  .about-secondary {
    width: 250px;
    height: 167px;
  }
  
  .testimonial-bg {
    width: 40px;
    height: 40px;
    top: 10px;
    right: 10px;
  }
}
