/* ===================================
   CSS Variables - Brand Colors
   =================================== */
:root {
  --primary-teal: #025e73;
  --deep-navy: #011f26;
  --muted-sage: #a5a692;
  --light-neutral: #bfb78f;
  --accent-orange: #f2a71b;
  --white: #ffffff;
  --light-gray: #f8f8f8;
  --text-dark: #2c2c2c;
  --text-light: #666666;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* ===================================
   Container
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===================================
   Buttons
   =================================== */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: var(--white);
  border-color: var(--accent-orange);
}

.btn-primary:hover {
  background-color: #d99416;
  border-color: #d99416;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(242, 167, 27, 0.3);
}

.btn-secondary {
  background-color: var(--primary-teal);
  color: var(--white);
  border-color: var(--primary-teal);
}

.btn-secondary:hover {
  background-color: #014a5c;
  border-color: #014a5c;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-teal);
  border-color: var(--primary-teal);
}

.btn-outline:hover {
  background-color: var(--primary-teal);
  color: var(--white);
}

.btn-large {
  padding: 1.125rem 2.5rem;
  font-size: 1.125rem;
}

.btn i {
  margin-right: 0.5rem;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand h3 {
  color: var(--deep-navy);
  font-size: 1.5rem;
  margin-bottom: 0;
}

.nav-subtitle {
  color: var(--primary-teal);
  font-size: 0.875rem;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-teal);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--deep-navy);
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-nav {
  padding: 0.625rem 1.5rem;
  font-size: 0.9rem;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--primary-teal) 0%,
    var(--deep-navy) 100%
  );
  background-image:
    linear-gradient(
      135deg,
      rgba(2, 94, 115, 0.95) 0%,
      rgba(1, 31, 38, 0.9) 100%
    ),
    url("https://sspark.genspark.ai/cfimages?u1=Oa%2F6MN2R3litKN5%2FMdks6M3k33X0%2BxOHzTqc4WgNNIz5f4WybJP3KZQ1rAOJ8GanApY6vDaj6odm5H8WLWGZAXCTcBop7U8OjuJpwgapwMnHRZh3BnU%2FHgTpmlyfVBZT%2Fc9lOwCVvk6PwZ%2BOHZoJ5t%2F218jyK87I&u2=m87cuIIZQIZyuv1N&width=2560");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 4rem 0;
}


.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-text {
  max-width: 700px;
}

.hero-title {
  color: var(--white);
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  color: var(--light-neutral);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===================================
   Sections
   =================================== */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-light);
}

/* ===================================
   Intro Section
   =================================== */
.intro-section {
  background-color: var(--white);
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.intro-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ===================================
   Services Preview
   =================================== */

.services-preview {
  background-color: var(--light-gray);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-teal);
}

.service-card.featured {
  border-color: var(--accent-orange);
  background: linear-gradient(135deg, #fff9f0 0%, var(--white) 100%);
}

.best-value-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--accent-orange);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-teal), var(--deep-navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

.service-card p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 1.5rem;
}

.cta-center {
  text-align: center;
  margin-top: 2rem;
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
  background: linear-gradient(135deg, var(--muted-sage), var(--light-neutral));
  padding: 80px 20px;
}


.testimonials-carousel {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.testimonial-card {
  background-color: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 12px 35px rgba(1, 31, 38, 0.12);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    visibility 0.6s ease;
  pointer-events: none;
}

.testimonial-card.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}


.testimonial-stars {
  color: var(--accent-orange);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  display: flex;
  gap: 6px;
}

.testimonial-text {
  font-size: 1.08rem;
  line-height: 1.9;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
}

.testimonial-author {
  text-align: right;
  padding-top: 1rem;
  border-top: 1px solid rgba(2, 94, 115, 0.15);
}

.testimonial-author strong {
  color: var(--deep-navy);
  font-size: 1.05rem;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.92rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(1, 31, 38, 0.2);
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary-teal);
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(2, 94, 115, 0.12);
}

/* ===================================
   CTA Strip
   =================================== */
.cta-strip {
  background: linear-gradient(135deg, var(--primary-teal), var(--deep-navy));
  padding: 4rem 0;
  margin: 100px auto;
  border-radius: 25px;
  width: calc(100% - 40px);
  max-width: 1200px;
}

.cta-strip-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cta-strip-text h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.cta-strip-text p {
  color: var(--light-neutral);
  font-size: 1.125rem;
  margin: 0;
}

/* ===================================
   Footer
   =================================== */
.footer {
  background-color: var(--deep-navy);
  color: var(--light-neutral);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-about h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-subtitle {
  color: var(--primary-teal);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-about p {
  color: var(--light-neutral);
  line-height: 1.8;
}

.footer h4 {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent-orange);
}

.footer-contact p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact i {
  color: var(--primary-teal);
  font-size: 1.125rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--muted-sage);
  font-size: 0.9rem;
  margin: 0;
}

/* ===================================
   Modal
   =================================== */
.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(1, 31, 38, 0.75);
  backdrop-filter: blur(6px);
  z-index: 9999;
  padding: 30px 15px;
  overflow-y: auto;
}

.booking-modal-content {
  max-width: 750px;
  margin: auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.booking-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #f0f0f0;
  font-size: 26px;
  cursor: pointer;
}

.booking-close:hover {
  background: #025e73;
  color: white;
}

.booking-header {
  text-align: center;
  margin-bottom: 30px;
}

.booking-badge {
  display: inline-block;
  background: #f2a71b20;
  color: #f2a71b;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.booking-header h2 {
  font-size: 32px;
  color: #011f26;
  margin-bottom: 10px;
}

.booking-header p {
  color: #666;
}

.calendar-box {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/*
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(1, 31, 38, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 3% auto;
    padding: 3rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}
*/

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close {
  color: var(--text-light);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: var(--accent-orange);
}

.modal-content h2 {
  color: var(--deep-navy);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* ===================================
   Forms
   =================================== */
.booking-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 500;
  color: var(--deep-navy);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem;
  border: 2px solid var(--light-neutral);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px rgba(2, 94, 115, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ===================================
   Confirmation Message
   =================================== */
.confirmation-message {
  text-align: center;
  padding: 2rem;
}

.confirmation-icon {
  font-size: 4rem;
  color: var(--primary-teal);
  margin-bottom: 1.5rem;
}

.confirmation-message h3 {
  font-size: 1.75rem;
  color: var(--deep-navy);
  margin-bottom: 1rem;
}

.confirmation-message p {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* ===================================
   Page Header
   =================================== */
.page-header {
  background: linear-gradient(135deg, var(--primary-teal), var(--deep-navy));
  padding: 6rem 0 6rem;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--light-neutral);
  margin: 0;
}

/* ===================================
   About Page Styles
   =================================== */
.about-content {
  padding: 5rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--deep-navy);
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

/* Credentials Section */
.credentials-section {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem;
}

.credential-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.credential-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.credential-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-teal), var(--deep-navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.credential-icon i {
  font-size: 1.75rem;
  color: var(--white);
}

.credential-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

.credential-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

/* Philosophy Section */
.philosophy-section {
  padding: 5rem 0;
}

.philosophy-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.philosophy-point {
  display: flex;
  gap: 1.5rem;
}

.point-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-orange), #d99416);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.point-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--deep-navy);
}

.point-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.philosophy-image img {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Who I Help Section */
.who-i-help-section {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.help-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.help-card i {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

.help-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--deep-navy);
}

.help-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0;
}

/* ===================================
   Services Page Styles
   =================================== */
.services-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.services-intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

.services-intro p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-light);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  padding: 2.5rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-detail:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-detail-image img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

.service-detail-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

.service-detail-content ul {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.service-detail-content ul li {
  padding: 0.5rem 0;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
}

.service-detail-content ul li:before {
  content: "✓";
  color: var(--primary-teal);
  font-weight: 700;
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

/* ===================================
   Recovery Package Page Styles
   =================================== */
.package-hero {
  /*background: linear-gradient(135deg, var(--muted-sage), var(--light-neutral));*/
  background: linear-gradient(135deg, var(--primary-teal), var(--deep-navy));
  padding: 5rem 0;
  text-align: center;
}

.package-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.package-badge {
  display: inline-block;
  background-color: var(--accent-orange);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.package-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--white);
}
.package-hero p {
  color: var(--light-neutral);
}

.package-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin: 2rem 0;
}

.package-price span {
  font-size: 1.5rem;
  color: var(--light-neutral);
}

.package-details {
  padding: 5rem 0;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.package-feature {
  background-color: var(--light-gray);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
}

.package-feature i {
  font-size: 3rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

.package-feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

.package-includes {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
}

.package-includes h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--deep-navy);
}

.package-includes ul {
  list-style: none;
  padding: 0;
}

.package-includes ul li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-neutral);
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  color: var(--text-dark);
}

.package-includes ul li:last-child {
  border-bottom: none;
}

.package-includes ul li i {
  color: var(--primary-teal);
  margin-right: 1rem;
  font-size: 1.25rem;
}

/* Package CTA Section on Services Page */
.package-cta-section {
  background: linear-gradient(135deg, var(--muted-sage), var(--light-neutral));
  padding: 5rem 0;
}

.package-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.package-cta-badge {
  display: inline-block;
  background-color: var(--accent-orange);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.package-cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

.package-cta-content > p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.package-cta-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 2rem;
}

.package-cta-price span {
  font-size: 1.25rem;
  color: var(--text-light);
}

/* Benefits Section */
.benefits-section {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-teal), var(--deep-navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.benefit-icon i {
  font-size: 1.75rem;
  color: var(--white);
}

.benefit-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--deep-navy);
}

.benefit-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

/* Program Structure Section */
.program-structure {
  padding: 5rem 0;
}

.week-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.week-item {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary-teal);
}

.week-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
  border-top-color: var(--accent-orange);
}

.week-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 1rem;
}

.week-item h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--deep-navy);
}

.week-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

/* Who Is This For Section */
.who-for-section {
  background-color: var(--light-gray);
  padding: 5rem 0;
}

.who-for-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.who-for-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--deep-navy);
}

.who-for-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.who-for-text ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.who-for-text ul li {
  padding: 0.75rem 0;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  font-size: 1.125rem;
}

.who-for-text ul li:before {
  content: "✓";
  color: var(--primary-teal);
  font-weight: 700;
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.who-for-image img {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Map Section */
.map-section {
  padding: 100px 0;
  background:
    radial-gradient(
      circle at top left,
      rgba(2, 94, 115, 0.08),
      transparent 35%
    ),
    linear-gradient(180deg, #f9fcfc 0%, #ffffff 100%);
}

.map-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 55px;
}

.section-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(2, 94, 115, 0.08);
  color: var(--primary-teal);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.map-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--deep-navy);
  margin-bottom: 50px;
  line-height: 1.15;
  text-align: center;
}

.map-subtitle {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

.maps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}

.map-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(2, 94, 115, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 15px rgba(1, 31, 38, 0.08);
  backdrop-filter: blur(8px);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.map-iframe {
  position: relative;
  overflow: hidden;
}

.map-iframe iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
  filter: grayscale(8%) contrast(1.02);
}

.map-info {
  padding: 28px 26px 30px;
}

.map-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(242, 167, 27, 0.12);
  color: var(--accent-orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.map-info h3 {
  font-size: 1.45rem;
  color: var(--deep-navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.map-info p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 22px;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-teal), #037d96);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 25px rgba(2, 94, 115, 0.18);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(2, 94, 115, 0.22);
  background: linear-gradient(135deg, #014b5c, var(--deep-navy));
}

@media (max-width: 992px) {
  .maps-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .package-grid {
    grid-template-columns: 1fr;
  }

  .map-section {
    padding: 75px 0;
  }

  .map-header {
    margin-bottom: 35px;
  }

  .map-card {
    border-radius: 22px;
  }

  .map-iframe iframe {
    height: 260px;
  }

  .map-info {
    padding: 22px 18px 24px;
  }

  .map-info h3 {
    font-size: 1.25rem;
  }

  .map-info p {
    font-size: 0.94rem;
  }

  .map-btn {
    width: 100%;
  }
}
/* ===================================
   Testimonials Page Styles
   =================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-full-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-full-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

/* ===================================
   Contact Page Styles
   =================================== */
.contact-section {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  background-color: var(--light-gray);
  padding: 3rem;
  border-radius: 12px;
}

.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--deep-navy);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-teal), var(--deep-navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.25rem;
  color: var(--white);
}

.contact-details h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--deep-navy);
}

.contact-details p,
.contact-details a {
  font-size: 1rem;
  color: var(--text-light);
  margin: 0;
}

.contact-details a:hover {
  color: var(--primary-teal);
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--deep-navy);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
  .cta-strip {
    width: calc(100% - 30px);
    margin: 60px auto;
  }



  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--white);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .intro-content,
  .about-grid,
  .philosophy-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intro-image {
    order: -1;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  
  .cta-strip-content {
    flex-direction: column;
    text-align: center;
    
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .philosophy-image {
    order: -1;
  }

  .credentials-grid,
  .help-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  section {
    padding: 3rem 0;
  }

  .hero {
    min-height: 500px;
    padding: 3rem 0;
    background-attachment: scroll;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .services-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 2rem 1.5rem;
    border-radius: 18px;
  }

  .testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
  }

  .testimonials-section {
    padding: 60px 16px;
  }

  .testimonials-carousel {
    min-height: 460px;
  }

  .map-section {
    padding: 75px 0;
  }

  .map-header {
    margin-bottom: 35px;
  }

  .map-card {
    border-radius: 22px;
  }

  .map-iframe iframe {
    height: 260px;
  }

  .map-info {
    padding: 22px 18px 24px;
  }

  .map-info h3 {
    font-size: 1.25rem;
  }

  .map-info p {
    font-size: 0.94rem;
  }

  .map-btn {
    width: 100%;
  }
}
